diff options
author | Luca Abeni <lucabe72@email.it> | 2010-06-08 19:27:29 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2010-06-08 19:27:29 +0000 |
commit | b659c8b4b772a885e8fea2911199bd5d98854cd9 (patch) | |
tree | eed3382d5613c3eb44ffa7190f1f9525623e2281 | |
parent | 8764389d47ccc43e2d19e2e4457aceac663240fb (diff) | |
download | ffmpeg-b659c8b4b772a885e8fea2911199bd5d98854cd9.tar.gz |
In case of stream copy, copy the extradata from the input codec context to
the output codec context (instead of just copying a pointer to the extradata).
Originally committed as revision 23538 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | ffmpeg.c | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -2156,6 +2156,11 @@ static int av_transcode(AVFormatContext **output_files, codec->chroma_sample_location = icodec->chroma_sample_location; if (ost->st->stream_copy) { + uint64_t extra_size = (uint64_t)icodec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE; + + if (extra_size > INT_MAX) + goto fail; + /* if stream_copy is selected, no need to decode or encode */ codec->codec_id = icodec->codec_id; codec->codec_type = icodec->codec_type; @@ -2168,7 +2173,10 @@ static int av_transcode(AVFormatContext **output_files, } codec->bit_rate = icodec->bit_rate; - codec->extradata= icodec->extradata; + codec->extradata= av_mallocz(extra_size); + if (!codec->extradata) + goto fail; + memcpy(codec->extradata, icodec->extradata, icodec->extradata_size); codec->extradata_size= icodec->extradata_size; if(av_q2d(icodec->time_base)*icodec->ticks_per_frame > av_q2d(ist->st->time_base) && av_q2d(ist->st->time_base) < 1.0/1000){ codec->time_base = icodec->time_base; @@ -2682,6 +2690,8 @@ static int av_transcode(AVFormatContext **output_files, for(i=0;i<nb_ostreams;i++) { ost = ost_table[i]; if (ost) { + if (ost->st->stream_copy) + av_freep(&ost->st->codec->extradata); if (ost->logfile) { fclose(ost->logfile); ost->logfile = NULL; |