diff options
author | sonjiang <sonny.jiang@amd.com> | 2016-06-28 11:23:41 -0400 |
---|---|---|
committer | Leo Liu <leo.liu@amd.com> | 2016-06-29 15:30:25 -0400 |
commit | b928ff6f62144e20f4260cc1bb897f84b97dc925 (patch) | |
tree | 51cd9bcab6ef3192115ed018f7948dce46c7a876 | |
parent | 5c80354a23b7d770b2d61b626b9d62fdf764ca9d (diff) |
radeon/uvd: fix a h265 context size bug
Signed-off-by: sonjiang <sonny.jiang@amd.com>
Cc: "12.0" <mesa-stable@lists.freedesktop.org>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
-rw-r--r-- | src/gallium/drivers/radeon/radeon_uvd.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/radeon_uvd.c b/src/gallium/drivers/radeon/radeon_uvd.c index d4355fb04929..97765da69e3d 100644 --- a/src/gallium/drivers/radeon/radeon_uvd.c +++ b/src/gallium/drivers/radeon/radeon_uvd.c @@ -1096,6 +1096,9 @@ static void ruvd_end_frame(struct pipe_video_codec *decoder, } rvid_clear_buffer(decoder->context, &dec->ctx); } + + if (dec->ctx.res) + dec->msg->body.decode.dpb_reserved = dec->ctx.res->buf->size; break; case PIPE_VIDEO_FORMAT_VC1: |