Commit 4754d7cc authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* Add the hdv2 fourcc which is simply HD MPEG2

  See: http://forum.videolan.org/viewtopic.php?t=11842
parent 78270dd3
...@@ -114,7 +114,8 @@ static int OpenDecoder( vlc_object_t *p_this ) ...@@ -114,7 +114,8 @@ static int OpenDecoder( vlc_object_t *p_this )
p_dec->fmt_in.i_codec != VLC_FOURCC('P','I','M','1') && p_dec->fmt_in.i_codec != VLC_FOURCC('P','I','M','1') &&
/* ATI Video */ /* ATI Video */
p_dec->fmt_in.i_codec != VLC_FOURCC('V','C','R','2') && p_dec->fmt_in.i_codec != VLC_FOURCC('V','C','R','2') &&
p_dec->fmt_in.i_codec != VLC_FOURCC('m','p','g','2') ) p_dec->fmt_in.i_codec != VLC_FOURCC('m','p','g','2') &&
p_dec->fmt_in.i_codec != VLC_FOURCC('h','d','v','2') )
{ {
return VLC_EGENERIC; return VLC_EGENERIC;
} }
......
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