Commit 38bca927 authored by Martin Storsjö's avatar Martin Storsjö

omxil: Skip padding with OMX.SEC.vc1.dec as well

Signed-off-by: default avatarMartin Storsjö <martin@martin.st>
parent 88490947
...@@ -188,7 +188,6 @@ int IgnoreOmxDecoderPadding(const char *name) ...@@ -188,7 +188,6 @@ int IgnoreOmxDecoderPadding(const char *name)
// since that is the default, but keep it here for reference. (This is // since that is the default, but keep it here for reference. (This is
// only relevant for manufacturers that are known to have decoders with // only relevant for manufacturers that are known to have decoders with
// this kind of bug.) // this kind of bug.)
// Unknown: OMX.SEC.vc1.dec (wmv9/vc1 - lack of samples that have cropping)
/* /*
static const char *padding_decoders[] = { static const char *padding_decoders[] = {
"OMX.SEC.AVC.Decoder", "OMX.SEC.AVC.Decoder",
...@@ -202,6 +201,7 @@ int IgnoreOmxDecoderPadding(const char *name) ...@@ -202,6 +201,7 @@ int IgnoreOmxDecoderPadding(const char *name)
"OMX.SEC.avcdec", "OMX.SEC.avcdec",
"OMX.SEC.MPEG4.Decoder", "OMX.SEC.MPEG4.Decoder",
"OMX.SEC.mpeg4.dec", "OMX.SEC.mpeg4.dec",
"OMX.SEC.vc1.dec",
NULL NULL
}; };
for (const char **ptr = nopadding_decoders; *ptr; ptr++) { for (const char **ptr = nopadding_decoders; *ptr; ptr++) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment