[FFmpeg-cvslog] r11856 - in trunk: libavformat/nutenc.c tests/libav.regression.ref

ods15 subversion
Mon Feb 4 11:48:42 CET 2008


Author: ods15
Date: Mon Feb  4 11:48:41 2008
New Revision: 11856

Log:
back_ptr calculation used wrong timebase when searching for back syncpoint


Modified:
   trunk/libavformat/nutenc.c
   trunk/tests/libav.regression.ref

Modified: trunk/libavformat/nutenc.c
==============================================================================
--- trunk/libavformat/nutenc.c	(original)
+++ trunk/libavformat/nutenc.c	Mon Feb  4 11:48:41 2008
@@ -476,7 +476,11 @@ static int write_packet(AVFormatContext 
         ff_nut_reset_ts(nut, *nus->time_base, pkt->dts);
         for(i=0; i<s->nb_streams; i++){
             AVStream *st= s->streams[i];
-            int index= av_index_search_timestamp(st, pkt->dts, AVSEEK_FLAG_BACKWARD);
+            int64_t dts_tb = av_rescale_rnd(pkt->dts,
+                nus->time_base->num * (int64_t)nut->stream[i].time_base->den,
+                nus->time_base->den * (int64_t)nut->stream[i].time_base->num,
+                AV_ROUND_DOWN);
+            int index= av_index_search_timestamp(st, dts_tb, AVSEEK_FLAG_BACKWARD);
             if(index>=0) dummy.pos= FFMIN(dummy.pos, st->index_entries[index].pos);
         }
         if(dummy.pos == INT64_MAX)

Modified: trunk/tests/libav.regression.ref
==============================================================================
--- trunk/tests/libav.regression.ref	(original)
+++ trunk/tests/libav.regression.ref	Mon Feb  4 11:48:41 2008
@@ -30,7 +30,7 @@ f8ad5bd78f4d012a8ce9570aa395ac54 *./test
 2ba41cf880aa5cb87e8a08fdb735398d *./tests/data/b-libav.gxf
 814640 ./tests/data/b-libav.gxf
 ./tests/data/b-libav.gxf CRC=0xa376c09e
-5489961f19ae94683d134d8108d646c8 *./tests/data/b-libav.nut
+868101eb2d9f8fe128f84399d450633e *./tests/data/b-libav.nut
 329785 ./tests/data/b-libav.nut
 ./tests/data/b-libav.nut CRC=0x400c29e9
 43238b15f1012aa27536c2be20bb2383 *./tests/data/b-libav.mkv




More information about the ffmpeg-cvslog mailing list