mux/asf.c: codec description fixes suggested by trax

parent b9e8991c
...@@ -517,19 +517,24 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input ) ...@@ -517,19 +517,24 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
} }
else if( p_input->p_fmt->i_codec == VLC_FOURCC('W','M','V','1') ) else if( p_input->p_fmt->i_codec == VLC_FOURCC('W','M','V','1') )
{ {
tk->psz_name = "Windows Media Video 1"; tk->psz_name = "Windows Media Video 7";
tk->i_fourcc = VLC_FOURCC( 'W', 'M', 'V', '1' ); tk->i_fourcc = VLC_FOURCC( 'W', 'M', 'V', '1' );
} }
else if( p_input->p_fmt->i_codec == VLC_FOURCC('W','M','V','2') ) else if( p_input->p_fmt->i_codec == VLC_FOURCC('W','M','V','2') )
{ {
tk->psz_name = "Windows Media Video 2"; tk->psz_name = "Windows Media Video 8";
tk->i_fourcc = VLC_FOURCC( 'W', 'M', 'V', '2' ); tk->i_fourcc = VLC_FOURCC( 'W', 'M', 'V', '2' );
} }
else if( p_input->p_fmt->i_codec == VLC_FOURCC('W','M','V','3') ) else if( p_input->p_fmt->i_codec == VLC_FOURCC('W','M','V','3') )
{ {
tk->psz_name = "Windows Media Video 3"; tk->psz_name = "Windows Media Video 9";
tk->i_fourcc = VLC_FOURCC( 'W', 'M', 'V', '3' ); tk->i_fourcc = VLC_FOURCC( 'W', 'M', 'V', '3' );
} }
else if( p_input->p_fmt->i_codec == VLC_FOURCC('h','2','6','4') )
{
tk->psz_name = "H.264/MPEG-4 AVC";
tk->i_fourcc = VLC_FOURCC('h','2','6','4');
}
else else
{ {
tk->psz_name = _("Unknown Video"); tk->psz_name = _("Unknown Video");
......
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