mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-18 13:35:13 +00:00
ffserver: add missing padding to extradata.
This commit is contained in:
parent
36e61e24e7
commit
9db5f82032
@ -3518,7 +3518,7 @@ static AVStream *add_av_stream1(FFStream *stream, AVCodecContext *codec, int cop
|
|||||||
fst->codec = avcodec_alloc_context3(NULL);
|
fst->codec = avcodec_alloc_context3(NULL);
|
||||||
memcpy(fst->codec, codec, sizeof(AVCodecContext));
|
memcpy(fst->codec, codec, sizeof(AVCodecContext));
|
||||||
if (codec->extradata_size) {
|
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,
|
memcpy(fst->codec->extradata, codec->extradata,
|
||||||
codec->extradata_size);
|
codec->extradata_size);
|
||||||
}
|
}
|
||||||
@ -3627,7 +3627,7 @@ static void extract_mpeg4_header(AVFormatContext *infile)
|
|||||||
p[2] == 0x01 && p[3] == 0xb6) {
|
p[2] == 0x01 && p[3] == 0xb6) {
|
||||||
size = p - pkt.data;
|
size = p - pkt.data;
|
||||||
// av_hex_dump_log(infile, AV_LOG_DEBUG, pkt.data, size);
|
// 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;
|
st->codec->extradata_size = size;
|
||||||
memcpy(st->codec->extradata, pkt.data, size);
|
memcpy(st->codec->extradata, pkt.data, size);
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user