vlc/vlc-2.0 | branch: master | Rémi Duraffort <[email protected]> | Sun Apr 8 09:19:05 2012 +0200| [61ed10ecbaa0387747daed302aefcdf407b2e3eb] | committer: Jean-Baptiste Kempf
asf: fix typo in fourcc (cherry picked from commit 9e30334303bdc0ead62915121d9712d9b7c0e6d8) Signed-off-by: Jean-Baptiste Kempf <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc/vlc-2.0.git/?a=commit;h=61ed10ecbaa0387747daed302aefcdf407b2e3eb --- modules/mux/asf.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/modules/mux/asf.c b/modules/mux/asf.c index ceec09a..edc51b5 100644 --- a/modules/mux/asf.c +++ b/modules/mux/asf.c @@ -517,7 +517,7 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input ) tk->psz_name = "MSMPEG-4 V2 Video"; tk->i_fourcc = VLC_FOURCC( 'M', 'P', '4', '2' ); } - else if( p_input->p_fmt->i_codec == VLC_CODEC_DIV2 ) + else if( p_input->p_fmt->i_codec == VLC_CODEC_DIV1 ) { tk->psz_name = "MSMPEG-4 V1 Video"; tk->i_fourcc = VLC_FOURCC( 'M', 'P', 'G', '4' ); _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
