mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
copy packet without omitting the padding
Originally committed as revision 2584 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
248a189a7d
commit
8a56ac7b89
@ -167,12 +167,14 @@ int av_dup_packet(AVPacket *pkt)
|
||||
{
|
||||
if (pkt->destruct != av_destruct_packet) {
|
||||
uint8_t *data;
|
||||
/* we duplicate the packet */
|
||||
data = av_malloc(pkt->size);
|
||||
/* we duplicate the packet and don't forget to put the padding
|
||||
again */
|
||||
data = av_malloc(pkt->size + FF_INPUT_BUFFER_PADDING_SIZE);
|
||||
if (!data) {
|
||||
return AVERROR_NOMEM;
|
||||
}
|
||||
memcpy(data, pkt->data, pkt->size);
|
||||
memset(data + pkt->size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
|
||||
pkt->data = data;
|
||||
pkt->destruct = av_destruct_packet;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user