diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-09-03 14:44:54 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-09-03 14:44:54 +0000 |
commit | a2636c0fd5356827cd53b89eadde9962fbf7f1db (patch) | |
tree | 205e1f4b17c056d5225836541bfdbe90d6f0f1ff /libavformat/utils.c | |
parent | a82630deb28823de6cd7fc0b7832766034681bf2 (diff) | |
download | ffmpeg-a2636c0fd5356827cd53b89eadde9962fbf7f1db.tar.gz |
Add AVPacket.convergence_duration.
Originally committed as revision 15179 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 5c268c79a3..87376485dd 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -251,6 +251,7 @@ void av_init_packet(AVPacket *pkt) pkt->dts = AV_NOPTS_VALUE; pkt->pos = -1; pkt->duration = 0; + pkt->convergence_duration = 0; pkt->flags = 0; pkt->stream_index = 0; pkt->destruct= av_destruct_packet_nofree; |