Mesa (master): state_trackers/vdpau: Add mpeg4 part2 to PipeToProfile and ProfileToPipe

Christian König deathsimple at kemper.freedesktop.org
Thu Nov 3 13:40:52 UTC 2011


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

Author: Maarten Lankhorst <m.b.lankhorst at gmail.com>
Date:   Mon Oct 31 18:32:05 2011 +0100

state_trackers/vdpau: Add mpeg4 part2 to PipeToProfile and ProfileToPipe

So it can actually be used when someone implements it. :)

Signed-off-by: Maarten Lankhorst <m.b.lankhorst at gmail.com>

---

 src/gallium/state_trackers/vdpau/vdpau_private.h |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/gallium/state_trackers/vdpau/vdpau_private.h b/src/gallium/state_trackers/vdpau/vdpau_private.h
index b8b15ae..04699a3 100644
--- a/src/gallium/state_trackers/vdpau/vdpau_private.h
+++ b/src/gallium/state_trackers/vdpau/vdpau_private.h
@@ -220,6 +220,10 @@ ProfileToPipe(VdpDecoderProfile vdpau_profile)
          return PIPE_VIDEO_PROFILE_MPEG4_AVC_MAIN;
       case VDP_DECODER_PROFILE_H264_HIGH:
          return PIPE_VIDEO_PROFILE_MPEG4_AVC_HIGH;
+      case VDP_DECODER_PROFILE_MPEG4_PART2_SP:
+         return PIPE_VIDEO_PROFILE_MPEG4_SIMPLE;
+      case VDP_DECODER_PROFILE_MPEG4_PART2_ASP:
+         return PIPE_VIDEO_PROFILE_MPEG4_ADVANCED_SIMPLE;
       default:
          return PIPE_VIDEO_PROFILE_UNKNOWN;
    }
@@ -241,6 +245,10 @@ PipeToProfile(enum pipe_video_profile p_profile)
          return VDP_DECODER_PROFILE_H264_MAIN;
       case PIPE_VIDEO_PROFILE_MPEG4_AVC_HIGH:
          return VDP_DECODER_PROFILE_H264_HIGH;
+      case PIPE_VIDEO_PROFILE_MPEG4_SIMPLE:
+         return VDP_DECODER_PROFILE_MPEG4_PART2_SP;
+      case PIPE_VIDEO_PROFILE_MPEG4_ADVANCED_SIMPLE:
+         return VDP_DECODER_PROFILE_MPEG4_PART2_ASP;
       default:
          assert(0);
          return -1;




More information about the mesa-commit mailing list