diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-03-18 06:04:17 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-03-24 00:07:36 +0100 |
commit | a4d036965dac42e7a7b50c6038c928d008655282 (patch) | |
tree | 2374b07de6d249660742fae7920675d5ed2ea8b5 /libavdevice/fbdev_dec.c | |
parent | adff25412a2929de67e44da1abaf67f9a267bdf4 (diff) | |
download | ffmpeg-a4d036965dac42e7a7b50c6038c928d008655282.tar.gz |
avformat/matroskadec: Reuse AVFormatInternal.parse_pkt
Before 8d78e90a6ba96646f7f25aff6ca3e12e71cec164 the Matroska demuxer
used stack packets to hold temporary packets; now it uses a temporary
packet allocated by the Matroska demuxer. Yet because it used stack
packets the code has always properly reset the packet on error, while
on success these temporary packets were put into a packet list via
avpriv_packet_list_put(), which already resets the source packet.
This means that this code is compatible with just reusing
AVFormatInternal.parse_pkt (which is unused while one is in the
demuxer's read_packet() function). Compared to before 8d78e90a6
this no longer wastes one initialization per AVPacket read
(the resetting of the stack packet performed by av_packet_move_ref()
in avpriv_packet_list_put() was for naught).
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavdevice/fbdev_dec.c')
0 files changed, 0 insertions, 0 deletions