Module: Mesa
Branch: master
Commit: 1c7ba7f15646367006d615180e89d5ea34a3d5f6
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=1c7ba7f15646367006d615180e89d5ea34a3d5f6

Author: Boyuan Zhang <boyuan.zh...@amd.com>
Date:   Fri Apr  8 11:31:15 2016 -0400

radeon/uvd: alignment fix for decode message buffer

Signed-off-by: Boyuan Zhang <boyuan.zh...@amd.com>
Reviewed-by: Christian König <christian.koe...@amd.com>

---

 src/gallium/drivers/radeon/radeon_uvd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gallium/drivers/radeon/radeon_uvd.c 
b/src/gallium/drivers/radeon/radeon_uvd.c
index 233f460..098baf2 100644
--- a/src/gallium/drivers/radeon/radeon_uvd.c
+++ b/src/gallium/drivers/radeon/radeon_uvd.c
@@ -1003,7 +1003,7 @@ static void ruvd_end_frame(struct pipe_video_codec 
*decoder,
 
        dec->msg->body.decode.dpb_size = dec->dpb.res->buf->size;
        dec->msg->body.decode.bsd_size = bs_size;
-       dec->msg->body.decode.db_pitch = dec->base.width;
+       dec->msg->body.decode.db_pitch = align(dec->base.width, 16);
 
        dt = dec->set_dtb(dec->msg, (struct vl_video_buffer *)target);
        if (((struct r600_common_screen*)dec->screen)->family >= CHIP_STONEY)

_______________________________________________
mesa-commit mailing list
mesa-commit@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to