Commit 48079eea authored by Laurent Aimar's avatar Laurent Aimar

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

It fixes SVQ1 (at least).
parent 17474075
...@@ -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 = 9; p_format->i_bits_per_pixel = 10;
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