[vlc-commits] Mux/Demux avformat: add the "avformat" shortcut
    Jean-Baptiste Kempf 
    git at videolan.org
       
    Mon May  2 17:23:52 CEST 2011
    
    
  
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Apr 29 16:35:56 2011 +0200| [95cd7e4e64ff59322c0af1fccc9330ea5b6a971b] | committer: Jean-Baptiste Kempf
Mux/Demux avformat: add the "avformat" shortcut
It makes sense, especially since the libav/FFmpeg split
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=95cd7e4e64ff59322c0af1fccc9330ea5b6a971b
---
 modules/demux/avformat/avformat.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/demux/avformat/avformat.c b/modules/demux/avformat/avformat.c
index a12564d..8d41faa 100644
--- a/modules/demux/avformat/avformat.c
+++ b/modules/demux/avformat/avformat.c
@@ -34,7 +34,7 @@
 
 vlc_module_begin ()
 #endif /* MERGE_FFMPEG */
-    add_shortcut( "ffmpeg" )
+    add_shortcut( "ffmpeg", "avformat" )
     set_category( CAT_INPUT )
     set_subcategory( SUBCAT_INPUT_DEMUX )
     set_description( N_("FFmpeg demuxer" ) )
@@ -45,7 +45,7 @@ vlc_module_begin ()
 #ifdef ENABLE_SOUT
     /* mux submodule */
     add_submodule ()
-    add_shortcut( "ffmpeg" )
+    add_shortcut( "ffmpeg", "avformat" )
     set_description( N_("FFmpeg muxer" ) )
     set_capability( "sout mux", 2 )
     add_string( "ffmpeg-mux", NULL, MUX_TEXT,
    
    
More information about the vlc-commits
mailing list