vlc/vlc-3.0 | branch: master | Steve Lhomme <[email protected]> | 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 <[email protected]> > 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; _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
