[FFmpeg-devel] [PATCH] vdpau_mpeg4: Do not fail on unknown profile.

Reimar Döffinger Reimar.Doeffinger at gmx.de
Sat Nov 1 13:45:46 CET 2014


This is a regression, previous code did not require
users to set the profile to use VDPAU.
In addition, ASP is a superset of SP, so there is not
even a good reason to require it.
---
 libavcodec/vdpau_mpeg4.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavcodec/vdpau_mpeg4.c b/libavcodec/vdpau_mpeg4.c
index 2a036b6..02ed4d1 100644
--- a/libavcodec/vdpau_mpeg4.c
+++ b/libavcodec/vdpau_mpeg4.c
@@ -119,6 +119,7 @@ static int vdpau_mpeg4_init(AVCodecContext *avctx)
     case FF_PROFILE_MPEG4_SIMPLE:
         profile = VDP_DECODER_PROFILE_MPEG4_PART2_SP;
         break;
+    case FF_PROFILE_UNKNOWN:
     case FF_PROFILE_MPEG4_ADVANCED_SIMPLE:
         profile = VDP_DECODER_PROFILE_MPEG4_PART2_ASP;
         break;
-- 
2.1.2



More information about the ffmpeg-devel mailing list