Commit 61ed10ec authored by Rémi Duraffort's avatar Rémi Duraffort Committed by Jean-Baptiste Kempf

asf: fix typo in fourcc

(cherry picked from commit 9e30334303bdc0ead62915121d9712d9b7c0e6d8)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 53d47cab
...@@ -517,7 +517,7 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input ) ...@@ -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->psz_name = "MSMPEG-4 V2 Video";
tk->i_fourcc = VLC_FOURCC( 'M', 'P', '4', '2' ); 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->psz_name = "MSMPEG-4 V1 Video";
tk->i_fourcc = VLC_FOURCC( 'M', 'P', 'G', '4' ); tk->i_fourcc = VLC_FOURCC( 'M', 'P', 'G', '4' );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment