Skip to content

Commit

Permalink
ffserver: add missing padding to extradata.
Browse files Browse the repository at this point in the history
  • Loading branch information
ubitux committed Dec 30, 2012
1 parent 36e61e2 commit 9db5f82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ffserver.c
Original file line number Diff line number Diff line change
Expand Up @@ -3518,7 +3518,7 @@ static AVStream *add_av_stream1(FFStream *stream, AVCodecContext *codec, int cop
fst->codec = avcodec_alloc_context3(NULL);
memcpy(fst->codec, codec, sizeof(AVCodecContext));
if (codec->extradata_size) {
fst->codec->extradata = av_malloc(codec->extradata_size);
fst->codec->extradata = av_mallocz(codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
memcpy(fst->codec->extradata, codec->extradata,
codec->extradata_size);
}
Expand Down Expand Up @@ -3627,7 +3627,7 @@ static void extract_mpeg4_header(AVFormatContext *infile)
p[2] == 0x01 && p[3] == 0xb6) {
size = p - pkt.data;
// av_hex_dump_log(infile, AV_LOG_DEBUG, pkt.data, size);
st->codec->extradata = av_malloc(size);
st->codec->extradata = av_mallocz(size + FF_INPUT_BUFFER_PADDING_SIZE);
st->codec->extradata_size = size;
memcpy(st->codec->extradata, pkt.data, size);
break;
Expand Down

0 comments on commit 9db5f82

Please sign in to comment.