aboutsummaryrefslogtreecommitdiffstats
path: root/videocodec/OMXVideoDecoderWMV.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'videocodec/OMXVideoDecoderWMV.cpp')
-rw-r--r--videocodec/OMXVideoDecoderWMV.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/videocodec/OMXVideoDecoderWMV.cpp b/videocodec/OMXVideoDecoderWMV.cpp
index 7db5f38..7e82d00 100644
--- a/videocodec/OMXVideoDecoderWMV.cpp
+++ b/videocodec/OMXVideoDecoderWMV.cpp
@@ -106,12 +106,12 @@ OMX_ERRORTYPE OMXVideoDecoderWMV::SetParamVideoWmv(OMX_PTR pStructure) {
return OMX_ErrorNone;
}
-OMX_COLOR_FORMATTYPE OMXVideoDecoderWMV::GetOutputColorFormat(int width, int height)
+OMX_COLOR_FORMATTYPE OMXVideoDecoderWMV::GetOutputColorFormat(int width)
{
#ifdef USE_GEN_HW
return OMX_INTEL_COLOR_FormatYUV420PackedSemiPlanar_Tiled;
#else
- return OMXVideoDecoderBase::GetOutputColorFormat(width, height);
+ return OMXVideoDecoderBase::GetOutputColorFormat(width);
#endif
}