[vlc-commits] sout:record: fix invalid dts test

Steve Lhomme git at videolan.org
Mon Jul 30 15:31:42 CEST 2018


vlc/vlc-3.0 | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Mon Jul 30 07:31:07 2018 +0200| [d2c557acaaa1152bcb250ec3a3d1d46454c1319d] | committer: Jean-Baptiste Kempf

sout:record: fix invalid dts test

(cherry picked from commit 7afd8e917908df71b353896a214b87d26321c773)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=d2c557acaaa1152bcb250ec3a3d1d46454c1319d
---

 modules/stream_out/record.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/stream_out/record.c b/modules/stream_out/record.c
index 34c3d72e75..be10bb98c4 100644
--- a/modules/stream_out/record.c
+++ b/modules/stream_out/record.c
@@ -572,7 +572,7 @@ static void OutputStart( sout_stream_t *p_stream )
                     break;
             }
 
-            if( !id_dts == 0 )
+            if( id_dts == 0 )
             {
                 p_cand = id;
                 canddts = 0;



More information about the vlc-commits mailing list