Mesa (master): st/vdpau: add h264 decoder level support

Marek Olšák mareko at kemper.freedesktop.org
Tue Apr 28 15:45:01 UTC 2015


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

Author: Leo Liu <leo.liu at amd.com>
Date:   Thu Mar 12 14:09:49 2015 -0400

st/vdpau: add h264 decoder level support

Signed-off-by: Leo Liu <leo.liu at amd.com>
Reviewed-by: Christian König <christian.koenig at amd.com>

---

 src/gallium/state_trackers/vdpau/decode.c |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/gallium/state_trackers/vdpau/decode.c b/src/gallium/state_trackers/vdpau/decode.c
index 767d311..0634ba7 100644
--- a/src/gallium/state_trackers/vdpau/decode.c
+++ b/src/gallium/state_trackers/vdpau/decode.c
@@ -118,6 +118,11 @@ vlVdpDecoderCreate(VdpDevice device,
    templat.height = height;
    templat.max_references = max_references;
 
+   if (u_reduce_video_profile(templat.profile) ==
+       PIPE_VIDEO_FORMAT_MPEG4_AVC)
+      templat.level = u_get_h264_level(templat.width, templat.height,
+                            &templat.max_references);
+
    vldecoder->decoder = pipe->create_video_codec(pipe, &templat);
 
    if (!vldecoder->decoder) {




More information about the mesa-commit mailing list