summaryrefslogtreecommitdiffstats
path: root/video/mp_image.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/mp_image.c')
-rw-r--r--video/mp_image.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/video/mp_image.c b/video/mp_image.c
index 73164fdc59..25b84641a7 100644
--- a/video/mp_image.c
+++ b/video/mp_image.c
@@ -149,6 +149,10 @@ void mp_image_setfmt(mp_image_t* mpi,unsigned int out_fmt){
if (out_fmt == IMGFMT_GBRP) {
mpi->bpp=24;
mpi->flags|=MP_IMGFLAG_PLANAR;
+ mpi->chroma_x_shift = 0;
+ mpi->chroma_y_shift = 0;
+ mpi->chroma_width=mpi->width;
+ mpi->chroma_height=mpi->height;
return;
}
mpi->flags|=MP_IMGFLAG_YUV;