mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
rtpdec_h264: Use av_realloc instead of av_malloc+mempcy
This is similar to what was done for rtpdec_hevc in ced7238cd0
.
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
8bdbf49c6f
commit
7650caf013
@ -115,18 +115,16 @@ static int parse_sprop_parameter_sets(AVFormatContext *s,
|
||||
packet_size = av_base64_decode(decoded_packet, base64packet,
|
||||
sizeof(decoded_packet));
|
||||
if (packet_size > 0) {
|
||||
uint8_t *dest = av_malloc(packet_size + sizeof(start_sequence) +
|
||||
codec->extradata_size +
|
||||
FF_INPUT_BUFFER_PADDING_SIZE);
|
||||
uint8_t *dest = av_realloc(codec->extradata,
|
||||
packet_size + sizeof(start_sequence) +
|
||||
codec->extradata_size +
|
||||
FF_INPUT_BUFFER_PADDING_SIZE);
|
||||
if (!dest) {
|
||||
av_log(s, AV_LOG_ERROR,
|
||||
"Unable to allocate memory for extradata!\n");
|
||||
return AVERROR(ENOMEM);
|
||||
}
|
||||
if (codec->extradata_size) {
|
||||
memcpy(dest, codec->extradata, codec->extradata_size);
|
||||
av_free(codec->extradata);
|
||||
}
|
||||
codec->extradata = dest;
|
||||
|
||||
memcpy(dest + codec->extradata_size, start_sequence,
|
||||
sizeof(start_sequence));
|
||||
@ -135,7 +133,6 @@ static int parse_sprop_parameter_sets(AVFormatContext *s,
|
||||
memset(dest + codec->extradata_size + sizeof(start_sequence) +
|
||||
packet_size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
|
||||
|
||||
codec->extradata = dest;
|
||||
codec->extradata_size += sizeof(start_sequence) + packet_size;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user