Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d429ee35 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Remove unused functions from libstagefright_m4vh263dec" am: 10685e62 am: 36129209

Change-Id: I6f262824c8a98511a2644212f0e7d5b7f1479964
parents 1d8c0888 36129209
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -44,6 +44,7 @@ cc_library_static {

    cflags: [
        "-Werror",
        "-DDEC_NOPOSTPROC",
    ],

    version_script: "exports.lds",
+7 −0
Original line number Diff line number Diff line
@@ -830,7 +830,14 @@ uint32 PVGetVideoTimeStamp(VideoDecControls *decCtrl)
OSCL_EXPORT_REF void PVSetPostProcType(VideoDecControls *decCtrl, int mode)
{
    VideoDecData *video = (VideoDecData *)decCtrl->videoDecoderData;
#ifdef PV_POSTPROC_ON
    video->postFilterType = mode;
#else
    if (mode != 0) {
        ALOGE("Post processing filters are not supported");
    }
    video->postFilterType = 0;
#endif
}