Commit c6c97d5c authored by lucabe's avatar lucabe

Test extradata_size instead of the CODEC_FLAG_GLOBAL_HEADER flag to check if

config info are available out of band (fix "-{a,v}codec copy" from .mov)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10471 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 08ea5310
......@@ -137,7 +137,7 @@ static char *sdp_media_attributes(char *buff, int size, AVCodecContext *c, int p
switch (c->codec_id) {
case CODEC_ID_MPEG4:
if (c->flags & CODEC_FLAG_GLOBAL_HEADER) {
if (c->extradata_size) {
config = extradata2config(c->extradata, c->extradata_size);
}
av_strlcatf(buff, size, "a=rtpmap:%d MP4V-ES/90000\r\n"
......@@ -146,7 +146,7 @@ static char *sdp_media_attributes(char *buff, int size, AVCodecContext *c, int p
payload_type, config ? config : "");
break;
case CODEC_ID_AAC:
if (c->flags & CODEC_FLAG_GLOBAL_HEADER) {
if (c->extradata_size) {
config = extradata2config(c->extradata, c->extradata_size);
} else {
/* FIXME: maybe we can forge config information based on the
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment