diff options
author | Petri Hintukainen <phintuka@users.sourceforge.net> | 2014-06-04 10:20:03 +0300 |
---|---|---|
committer | Petri Hintukainen <phintuka@users.sourceforge.net> | 2014-06-04 10:20:03 +0300 |
commit | da0fc5762b099dac5304c44698ea31aee975d91a (patch) | |
tree | 3f1c0eaafb83e617229b0fa427baf4665f603f23 /src | |
parent | d74d9f45b75f776b41967e74fb777c2527a11015 (diff) | |
download | xine-lib-da0fc5762b099dac5304c44698ea31aee975d91a.tar.gz xine-lib-da0fc5762b099dac5304c44698ea31aee975d91a.tar.bz2 |
video_out_mmal: fix u/v plane alignment
Diffstat (limited to 'src')
-rw-r--r-- | src/video_out/video_out_mmal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_out/video_out_mmal.c b/src/video_out/video_out_mmal.c index 2300f6d1f..f4ff89753 100644 --- a/src/video_out/video_out_mmal.c +++ b/src/video_out/video_out_mmal.c @@ -334,7 +334,7 @@ static void mmal_update_frame_format (vo_driver_t *this_gen, /* alignment */ width = (width + 31) & ~31; - height = (height + 1) & ~1; + height = (height + 15) & ~15; if (!frame->buffer) { frame->buffer = mmal_queue_wait(this->pool->queue); |