[vlc-commits] [Git][videolan/vlc][master] demux: ogg: end detection on first bos

François Cartegnie (@fcartegnie) gitlab at videolan.org
Tue Sep 1 16:04:31 UTC 2026



François Cartegnie pushed to branch master at VideoLAN / VLC


Commits:
6dd3d2f1 by François Cartegnie at 2026-09-01T17:55:39+02:00
demux: ogg: end detection on first bos

- - - - -


1 changed file:

- modules/demux/ogg.c


Changes:

=====================================
modules/demux/ogg.c
=====================================
@@ -1685,7 +1685,7 @@ static int Ogg_FindLogicalStreams( demux_t *p_demux )
                     break;
                 }
             }
-            break;
+            return p_ogg->i_streams ? VLC_SUCCESS : VLC_EGENERIC;
         }
 
         /* Try to configure the new stream */
@@ -1699,7 +1699,7 @@ static int Ogg_FindLogicalStreams( demux_t *p_demux )
             p_stream->b_initializing &= p_stream->b_force_backup;
     }
 
-    return p_ogg->i_streams ? VLC_SUCCESS : VLC_EGENERIC;
+    return VLC_EGENERIC;
 }
 
 static int Ogg_ConfigureStream( demux_t *p_demux, ogg_packet oggpacket, logical_stream_t *p_stream )



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

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/6dd3d2f135c630cc659ed5e1c3f85ab05ddeee75
You're receiving this email because of your account on code.videolan.org. Manage all notifications: https://code.videolan.org/-/profile/notifications | Help: https://code.videolan.org/help




More information about the vlc-commits mailing list