[FFmpeg-cvslog] r11855 - in trunk: libavformat/nutenc.c tests/libav.regression.ref
ods15
subversion
Mon Feb 4 11:45:33 CET 2008
Author: ods15
Date: Mon Feb 4 11:45:32 2008
New Revision: 11855
Log:
Fix intented algo in syncpoint writing before keyframes in NUT muxer
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:45:32 2008
@@ -462,7 +462,7 @@ static int write_packet(AVFormatContext
if(1LL<<(20+3*nut->header_count) <= url_ftell(bc))
write_headers(nut, bc);
- if(key_frame && !!(nus->last_flags & FLAG_KEY))
+ if(key_frame && !(nus->last_flags & FLAG_KEY))
store_sp= 1;
if(pkt->size + 30/*FIXME check*/ + url_ftell(bc) >= nut->last_syncpoint_pos + nut->max_distance)
Modified: trunk/tests/libav.regression.ref
==============================================================================
--- trunk/tests/libav.regression.ref (original)
+++ trunk/tests/libav.regression.ref Mon Feb 4 11:45:32 2008
@@ -30,8 +30,8 @@ f8ad5bd78f4d012a8ce9570aa395ac54 *./test
2ba41cf880aa5cb87e8a08fdb735398d *./tests/data/b-libav.gxf
814640 ./tests/data/b-libav.gxf
./tests/data/b-libav.gxf CRC=0xa376c09e
-5b6d03cfa8ccb701bec3c0f0e562e0da *./tests/data/b-libav.nut
-330100 ./tests/data/b-libav.nut
+5489961f19ae94683d134d8108d646c8 *./tests/data/b-libav.nut
+329785 ./tests/data/b-libav.nut
./tests/data/b-libav.nut CRC=0x400c29e9
43238b15f1012aa27536c2be20bb2383 *./tests/data/b-libav.mkv
329854 ./tests/data/b-libav.mkv
More information about the ffmpeg-cvslog
mailing list