[vlc-commits] [Git][videolan/vlc][master] ogg: don't send PCRs from open

Jean-Baptiste Kempf (@jbk) gitlab at videolan.org
Tue Jun 29 17:48:52 UTC 2021



Jean-Baptiste Kempf pushed to branch master at VideoLAN / VLC


Commits:
c29c2254 by Thomas Guillem at 2021-06-29T17:33:33+00:00
ogg: don't send PCRs from open

Or before the first es is created.

If fixes the assert( p_sys->b_active ) from es_out.c introduced in
800482fbd2a1.

- - - - -


1 changed file:

- modules/demux/ogg.c


Changes:

=====================================
modules/demux/ogg.c
=====================================
@@ -607,7 +607,7 @@ static int Demux( demux_t * p_demux )
         }
     }
 
-    if( p_sys->b_preparsing_done )
+    if( p_sys->b_preparsing_done && p_sys->b_es_created )
         Ogg_OutputQueues( p_demux, false );
 
     return VLC_DEMUXER_SUCCESS;



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/c29c22544aaa525fad5baf5fb2abd840ea92ecd1

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/c29c22544aaa525fad5baf5fb2abd840ea92ecd1
You're receiving this email because of your account on code.videolan.org.




More information about the vlc-commits mailing list