Commit d524ec29 authored by Laurent Aimar's avatar Laurent Aimar

Revert "Fixed segfault with I410 (it is 10 bits per pel)."

This reverts commit 48079eea.
I410 is 9 bits per pel, it is ffmpeg doing something wrong.
parent 3d9a3c57
...@@ -617,7 +617,7 @@ void vout_InitFormat( video_frame_format_t *p_format, vlc_fourcc_t i_chroma, ...@@ -617,7 +617,7 @@ void vout_InitFormat( video_frame_format_t *p_format, vlc_fourcc_t i_chroma,
break; break;
case FOURCC_I410: case FOURCC_I410:
case FOURCC_YVU9: case FOURCC_YVU9:
p_format->i_bits_per_pixel = 10; p_format->i_bits_per_pixel = 9;
break; break;
case FOURCC_Y211: case FOURCC_Y211:
p_format->i_bits_per_pixel = 8; p_format->i_bits_per_pixel = 8;
......
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