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

Author: Leo Liu <[email protected]>
Date:   Mon Aug 21 11:51:35 2017 -0400

radeon/vcn: enable P016 mode support

Signed-off-by: Leo Liu <[email protected]>
Reviewed-by: Christian König <[email protected]>

---

 src/gallium/drivers/radeon/radeon_vcn_dec.c | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/src/gallium/drivers/radeon/radeon_vcn_dec.c 
b/src/gallium/drivers/radeon/radeon_vcn_dec.c
index 51391627d5..a7a57f2969 100644
--- a/src/gallium/drivers/radeon/radeon_vcn_dec.c
+++ b/src/gallium/drivers/radeon/radeon_vcn_dec.c
@@ -324,13 +324,17 @@ static rvcn_dec_message_hevc_t get_h265_msg(struct 
radeon_decoder *dec,
                        result.direct_reflist[i][j] = pic->RefPicList[i][j];
        }
 
-       if ((pic->base.profile == PIPE_VIDEO_PROFILE_HEVC_MAIN_10) &&
-               (target->buffer_format == PIPE_FORMAT_NV12)) {
-               result.p010_mode = 0;
-               result.luma_10to8 = 5;
-               result.chroma_10to8 = 5;
-               result.hevc_reserved[0] = 4; /* sclr_luma10to8 */
-               result.hevc_reserved[1] = 4; /* sclr_chroma10to8 */
+       if (pic->base.profile == PIPE_VIDEO_PROFILE_HEVC_MAIN_10) {
+               if (target->buffer_format == PIPE_FORMAT_P016) {
+                       result.p010_mode = 1;
+                       result.msb_mode = 1;
+               } else {
+                       result.p010_mode = 0;
+                       result.luma_10to8 = 5;
+                       result.chroma_10to8 = 5;
+                       result.hevc_reserved[0] = 4; /* sclr_luma10to8 */
+                       result.hevc_reserved[1] = 4; /* sclr_chroma10to8 */
+               }
        }
 
        return result;

_______________________________________________
mesa-commit mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to