[FFmpeg-cvslog] vqf: set packet parameters after av_new_packet()

Justin Ruggles git at videolan.org
Thu Mar 1 03:20:24 CET 2012


ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Thu Jan 19 15:48:11 2012 -0500| [4bf6775e9d4a499ca1c25a5e13ff3d055d9219f5] | committer: Justin Ruggles

vqf: set packet parameters after av_new_packet()

Otherwise the values are overwritten.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4bf6775e9d4a499ca1c25a5e13ff3d055d9219f5
---

 libavformat/vqf.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavformat/vqf.c b/libavformat/vqf.c
index 08ffa73..b9fa8be 100644
--- a/libavformat/vqf.c
+++ b/libavformat/vqf.c
@@ -220,12 +220,12 @@ static int vqf_read_packet(AVFormatContext *s, AVPacket *pkt)
     int ret;
     int size = (c->frame_bit_len - c->remaining_bits + 7)>>3;
 
-    pkt->pos          = avio_tell(s->pb);
-    pkt->stream_index = 0;
-
     if (av_new_packet(pkt, size+2) < 0)
         return AVERROR(EIO);
 
+    pkt->pos          = avio_tell(s->pb);
+    pkt->stream_index = 0;
+
     pkt->data[0] = 8 - c->remaining_bits; // Number of bits to skip
     pkt->data[1] = c->last_frame_bits;
     ret = avio_read(s->pb, pkt->data+2, size);



More information about the ffmpeg-cvslog mailing list