Maintain pointer to end of AVFormatContext.packet_buffer list
authorMåns Rullgård <mans@mansr.com>
Wed, 6 Aug 2008 22:17:38 +0000 (22:17 +0000)
committerMåns Rullgård <mans@mansr.com>
Wed, 6 Aug 2008 22:17:38 +0000 (22:17 +0000)
commit5c5b1731b77c6988debf975a5fd0a91936df013b
tree815be7b7833a50d3a0447d6b1f90fda897bd2be2
parentb888abe1be9f0b3c75273c28e9a7b58fe47d5ec4
Maintain pointer to end of AVFormatContext.packet_buffer list

This changes add_to_pktbuf() to maintain a pointer to the last entry
in the list, avoiding a linear walk-through on each call.  Before this
change, add_to_pktbuf() could take a significant amount of time (10%
of total decoding time), even with input files of several minutes.
After the change, the time spent in this function is barely measurable
with oprofile.

Originally committed as revision 14654 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavformat/avformat.h
libavformat/utils.c