]> git.sesse.net Git - vlc/commitdiff
Fixed ES_OUT_SET_FMT name.
authorLaurent Aimar <fenrir@videolan.org>
Fri, 7 Nov 2008 00:08:49 +0000 (01:08 +0100)
committerLaurent Aimar <fenrir@videolan.org>
Mon, 17 Nov 2008 19:03:27 +0000 (20:03 +0100)
include/vlc_es_out.h
modules/demux/ogg.c

index 5b255ad7378ac08d5d972c98b5809157740fab8e..676a595134d771857044806df4a4cab6805e26be 100644 (file)
@@ -83,7 +83,7 @@ enum es_out_query_e
     ES_OUT_GET_TS,             /* arg1=int64_t i_ts(microsecond!) (using default group 0), arg2=int64_t* converted i_ts */
 
     /* Try not to use this one as it is a bit hacky */
-    ES_OUT_SET_FMT,     /* arg1= es_out_id_t* arg2=es_format_t* */
+    ES_OUT_SET_ES_FMT,         /* arg1= es_out_id_t* arg2=es_format_t* */
 
     /* Allow preroll of data (data with dts/pts < i_pts for all ES will be decoded but not displayed */
     ES_OUT_SET_NEXT_DISPLAY_TIME,   /* arg1=int64_t i_pts(microsecond) */
index 4d9c12791e7fcb20d69c4a8e4cd67ccb7e22dfd3..464d99a043a0d6d588cf843faf7ca31ef20d9d9d 100644 (file)
@@ -632,7 +632,7 @@ static void Ogg_DecodePacket( demux_t *p_demux,
                     p_stream->fmt.i_extra = 0;
 
                 if( Ogg_LogicalStreamResetEsFormat( p_demux, p_stream ) )
-                    es_out_Control( p_demux->out, ES_OUT_SET_FMT,
+                    es_out_Control( p_demux->out, ES_OUT_SET_ES_FMT,
                                     p_stream->p_es, &p_stream->fmt );
             }
         }