From 7298892a4c4d93823d39e86115baa3f55df604eb Mon Sep 17 00:00:00 2001 From: Tristan Matthews Date: Wed, 30 Mar 2016 09:52:35 -0400 Subject: [PATCH] daala: fix bit-depth issue in encoding --- modules/codec/daala.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/codec/daala.c b/modules/codec/daala.c index d917b6ddf4..41a1b6cd9f 100644 --- a/modules/codec/daala.c +++ b/modules/codec/daala.c @@ -739,6 +739,7 @@ static block_t *Encode( encoder_t *p_enc, picture_t *p_pict ) img.planes[i].ydec = p_sys->di.plane_info[i].ydec; img.planes[i].xstride = 1; img.planes[i].ystride = p_pict->p[i].i_pitch; + img.planes[i].bitdepth = 8; /*FIXME: support higher bit depths*/ } if( daala_encode_img_in( p_sys->dcx, &img, 0 ) < 0 ) -- 2.11.4.GIT