Ticket #13233: 20180629_ff_rew_fixed.patch

File 20180629_ff_rew_fixed.patch, 43.6 KB (added by Peter Bennett, 6 years ago)

Fixes Fast Forward and Rewind with Mediacodec

  • mythtv/configure

    diff --git a/mythtv/configure b/mythtv/configure
    index 105992b11f2..7801ea3d1d1 100755
    a b Advanced options (experts only): 
    135135  --disable-vaapi          disable VAAPI hardware accelerated video decoding
    136136  --disable-openmax        disable OpenMAX hardware accelerated video decoding
    137137  --disable-dxva2          disable hardware accelerated decoding on windows
     138  --disable-mediacodec     disable hardware accelerated decoding on android
    138139  --disable-opengl-video   disable OpenGL based video display
    139140  --disable-opengl-themepainter disable OpenGL based theme painting
    140141  --disable-libass         disable libass SSA/ASS subtitle support
    USING_LIST=' 
    20322033    vaapi
    20332034    vdpau
    20342035    openmax
     2036    mediacodec
    20352037'
    20362038
    20372039CMDLINE_SELECT="
    enable libcrypto 
    27572759enable libdns_sd
    27582760enable libxml2
    27592761enable lirc
     2762enable mediacodec
    27602763enable mheg
    27612764enable mythtranscode
    27622765enable opengl
    ffmpeg_optset extra_cxxflags extra_ldflags target_os 
    69646967ffmpeg_optset pkg_config prefix libdir as objcc dep_cc host_cc
    69656968ffmpeg_optset host_ld
    69666969ffmpeg_optenable cross_compile libmp3lame libx264 libx265 libvpx libxvid
    6967 ffmpeg_optenable vdpau vaapi libxml2 libass dxva2 mediacodec
    6968 ffmpeg_optenable jni libbluray libfontconfig libfreetype libiec61883
     6970ffmpeg_optenable vdpau vaapi libxml2 libass dxva2
     6971ffmpeg_optenable libbluray libfontconfig libfreetype libiec61883
    69696972ffmpeg_optenable crystalhd sdl2 ffplay
     6973if test $target_os = "android"; then
     6974    enabled mediacodec && enable jni
     6975    ffmpeg_optenable mediacodec jni
     6976else
     6977    disable mediacodec
     6978fi
     6979
    69706980ffmpeg_extra_cflags="$extra_cflags -w"
    69716981
    69726982## Call FFmpeg configure here
  • mythtv/libs/libmythtv/avformatdecoder.cpp

    diff --git a/mythtv/libs/libmythtv/avformatdecoder.cpp b/mythtv/libs/libmythtv/avformatdecoder.cpp
    index 2c3a1985a05..841911cb577 100644
    a b extern "C" { 
    6262#include "vaapicontext.h"
    6363#endif
    6464
     65#ifdef USING_MEDIACODEC
     66#include "mediacodeccontext.h"
     67extern "C" {
     68#include "libavcodec/jni.h"
     69}
     70#include <QtAndroidExtras>
     71#endif
     72
    6573extern "C" {
    6674#include "libavutil/avutil.h"
    6775#include "libavutil/error.h"
    void AvFormatDecoder::GetDecoders(render_opts &opts) 
    374382    opts.decoders->append("vaapi");
    375383    (*opts.equiv_decoders)["vaapi"].append("dummy");
    376384#endif
     385#ifdef USING_MEDIACODEC
     386    opts.decoders->append("mediacodec");
     387    (*opts.equiv_decoders)["mediacodec"].append("dummy");
     388#endif
    377389
    378390    PrivateDecoder::GetDecoders(opts);
    379391}
    AvFormatDecoder::AvFormatDecoder(MythPlayer *parent, 
    405417      pts_detected(false),
    406418      reordered_pts_detected(false),
    407419      pts_selected(true),
     420      use_frame_timing(false),
    408421      force_dts_timestamps(false),
    409422      playerFlags(flags),
    410423      video_codec_id(kCodec_NONE),
    bool AvFormatDecoder::DoFastForward(long long desiredFrame, bool discardFrames) 
    742755
    743756        lastKey = (long long)((newts*(long double)fps)/AV_TIME_BASE);
    744757        framesPlayed = lastKey;
     758        fpsSkip = 0;
    745759        framesRead = lastKey;
    746760
    747761        normalframes = (exactseeks) ? desiredFrame - framesPlayed : 0;
    bool AvFormatDecoder::DoFastForward(long long desiredFrame, bool discardFrames) 
    753767        LOG(VB_GENERAL, LOG_INFO, LOC + "No DTS Seeking Hack!");
    754768        no_dts_hack = true;
    755769        framesPlayed = desiredFrame;
     770        fpsSkip = 0;
    756771        framesRead = desiredFrame;
    757772        normalframes = 0;
    758773    }
    void AvFormatDecoder::SeekReset(long long newKey, uint skipFrames, 
    817832            // enc->internal = NULL and cause a segfault in
    818833            // avcodec_flush_buffers
    819834            if (enc && enc->internal)
     835            {
     836                int ret = 0;
     837                while (ret == 0)
     838                {
     839                    AVFrame *frame = av_frame_alloc();
     840                    ret = avcodec_receive_frame(enc, frame);
     841                    av_frame_free(&frame);
     842                }
    820843                avcodec_flush_buffers(enc);
     844            }
    821845        }
    822846        if (private_dec)
    823847            private_dec->Reset();
    void AvFormatDecoder::SeekReset(long long newKey, uint skipFrames, 
    844868            if (!no_dts_hack)
    845869            {
    846870                framesPlayed = lastKey;
     871                fpsSkip = 0;
    847872                framesRead = lastKey;
    848873            }
    849874
    enum AVPixelFormat get_format_vaapi(struct AVCodecContext *avctx, 
    15401565}
    15411566#endif
    15421567
     1568#ifdef USING_MEDIACODEC
     1569static enum AVPixelFormat get_format_mediacodec(struct AVCodecContext *avctx,
     1570                                           const enum AVPixelFormat *valid_fmts)
     1571{
     1572    enum AVPixelFormat ret = *valid_fmts; // default to first
     1573    while (*valid_fmts != AV_PIX_FMT_NONE) {
     1574        if (*valid_fmts == AV_PIX_FMT_YUV420P)
     1575            ret = AV_PIX_FMT_YUV420P;
     1576        valid_fmts++;
     1577    }
     1578    return ret;
     1579}
     1580#endif
     1581
     1582
    15431583static bool IS_DR1_PIX_FMT(const enum AVPixelFormat fmt)
    15441584{
    15451585    switch (fmt)
    void AvFormatDecoder::InitVideoCodec(AVStream *stream, AVCodecContext *enc, 
    15751615    enc->debug = 0;
    15761616    // enc->error_rate = 0;
    15771617
    1578     AVCodec *codec = avcodec_find_decoder(enc->codec_id);
     1618    const AVCodec *codec = enc->codec;
    15791619
    15801620    if (selectedStream)
    15811621    {
    void AvFormatDecoder::InitVideoCodec(AVStream *stream, AVCodecContext *enc, 
    16121652        enc->slice_flags     = SLICE_FLAG_CODED_ORDER | SLICE_FLAG_ALLOW_FIELD;
    16131653    }
    16141654    else
     1655#endif
     1656#ifdef USING_MEDIACODEC
     1657    if (CODEC_IS_MEDIACODEC(codec))
     1658    {
     1659        enc->get_format      = get_format_mediacodec;
     1660        enc->slice_flags     = SLICE_FLAG_CODED_ORDER | SLICE_FLAG_ALLOW_FIELD;
     1661    }
     1662    else
    16151663#endif
    16161664    if (codec && codec->capabilities & AV_CODEC_CAP_DR1)
    16171665    {
    void AvFormatDecoder::InitVideoCodec(AVStream *stream, AVCodecContext *enc, 
    16791727        }
    16801728
    16811729        m_parent->SetKeyframeDistance(keyframedist);
    1682         AVCodec *codec = avcodec_find_decoder(enc->codec_id);
     1730        const AVCodec *codec = enc->codec;
    16831731        QString codecName;
    16841732        if (codec)
    16851733            codecName = codec->name;
    int AvFormatDecoder::ScanStreams(bool novideo) 
    23682416
    23692417            if (averror_count > SEQ_PKT_ERR_MAX)
    23702418                gCodecMap->freeCodecContext(ic->streams[selTrack]);
    2371             AVCodecContext *enc = gCodecMap->getCodecContext(ic->streams[selTrack]);
     2419            AVCodecContext *enc = gCodecMap->getCodecContext(ic->streams[selTrack], codec);
    23722420            StreamInfo si(selTrack, 0, 0, 0, 0);
    23732421
    23742422            tracks[kTrackTypeVideo].push_back(si);
    int AvFormatDecoder::ScanStreams(bool novideo) 
    23932441            uint height = max(dim.height(), 16);
    23942442            QString dec = "ffmpeg";
    23952443            uint thread_count = 1;
    2396             AVCodec *codec1 = avcodec_find_decoder(enc->codec_id);
    23972444            QString codecName;
    2398             if (codec1)
    2399                 codecName = codec1->name;
     2445            if (enc->codec)
     2446                codecName = enc->codec->name;
    24002447            if (enc->framerate.den && enc->framerate.num)
    24012448                fps = float(enc->framerate.num) / float(enc->framerate.den);
    24022449            else
    int AvFormatDecoder::ScanStreams(bool novideo) 
    24732520                }
    24742521#endif // USING_GLVAAPI
    24752522#ifdef USING_DXVA2
    2476                 if (!foundgpudecode)
     2523                if (!foundgpudecoder)
    24772524                {
    24782525                    MythCodecID dxva2_mcid;
    24792526                    AVPixelFormat pix_fmt = AV_PIX_FMT_YUV420P;
    int AvFormatDecoder::ScanStreams(bool novideo) 
    24892536                    }
    24902537                }
    24912538#endif // USING_DXVA2
    2492                 if (foundgpudecoder)
     2539#ifdef USING_MEDIACODEC
     2540                if (!foundgpudecoder)
    24932541                {
    2494                     enc->codec_id = (AVCodecID) myth2av_codecid(video_codec_id);
     2542                    MythCodecID mediacodec_mcid;
     2543                    AVPixelFormat pix_fmt = AV_PIX_FMT_YUV420P;
     2544                    mediacodec_mcid = MediaCodecContext::GetBestSupportedCodec(
     2545                        &codec, dec, mpeg_version(enc->codec_id),
     2546                        pix_fmt);
     2547
     2548                    if (codec_is_mediacodec(mediacodec_mcid))
     2549                    {
     2550                        gCodecMap->freeCodecContext(ic->streams[selTrack]);
     2551                        enc = gCodecMap->getCodecContext(ic->streams[selTrack], codec);
     2552                        video_codec_id = mediacodec_mcid;
     2553                        foundgpudecoder = true;
     2554                    }
    24952555                }
     2556#endif // USING_MEDIACODEC
    24962557            }
    2497 
    24982558            // default to mpeg2
    24992559            if (video_codec_id == kCodec_NONE)
    25002560            {
    int AvFormatDecoder::ScanStreams(bool novideo) 
    25022562                    "Unknown video codec - defaulting to MPEG2");
    25032563                video_codec_id = kCodec_MPEG2;
    25042564            }
    2505             else
    2506             {
    2507                 codec = avcodec_find_decoder(enc->codec_id);
    2508             }
    25092565
    25102566            // Use a PrivateDecoder if allowed in playerFlags AND matched
    25112567            // via the decoder name
    int AvFormatDecoder::ScanStreams(bool novideo) 
    25162572            if (!codec_is_std(video_codec_id))
    25172573                thread_count = 1;
    25182574
     2575            use_frame_timing = false;
     2576            if (! private_dec
     2577                && (codec_is_std(video_codec_id) || codec_is_mediacodec(video_codec_id)))
     2578                use_frame_timing = true;
     2579
    25192580            if (FlagIsSet(kDecodeSingleThreaded))
    25202581                thread_count = 1;
    25212582
    int AvFormatDecoder::ScanStreams(bool novideo) 
    25312592            ScanATSCCaptionStreams(selTrack);
    25322593            UpdateATSCCaptionTracks();
    25332594
    2534             LOG(VB_PLAYBACK, LOG_INFO, LOC +
     2595            LOG(VB_GENERAL, LOG_INFO, LOC +
    25352596                QString("Using %1 for video decoding")
    25362597                .arg(GetCodecDecoderName()));
    25372598
    bool AvFormatDecoder::OpenAVCodec(AVCodecContext *avctx, const AVCodec *codec) 
    26112672{
    26122673    QMutexLocker locker(avcodeclock);
    26132674
     2675#ifdef USING_MEDIACODEC
     2676    if (QString("mediacodec") == codec->wrapper_name)
     2677        av_jni_set_java_vm(QAndroidJniEnvironment::javaVM(), NULL);
     2678#endif
    26142679    int ret = avcodec_open2(avctx, codec, NULL);
    26152680    if (ret < 0)
    26162681    {
    bool AvFormatDecoder::PreProcessVideoPacket(AVStream *curstream, AVPacket *pkt) 
    35363601    return true;
    35373602}
    35383603
     3604// Maximum retries - 500 = 5 seconds
     3605#define PACKET_MAX_RETRIES 5000
     3606#define RETRY_WAIT_TIME 10000   // microseconds
    35393607bool AvFormatDecoder::ProcessVideoPacket(AVStream *curstream, AVPacket *pkt)
    35403608{
     3609    int retryCount = 0;
    35413610    int ret = 0, gotpicture = 0;
    35423611    int64_t pts = 0;
    35433612    AVCodecContext *context = gCodecMap->getCodecContext(curstream);
    bool AvFormatDecoder::ProcessVideoPacket(AVStream *curstream, AVPacket *pkt) 
    35513620    if (pkt->pts != (int64_t)AV_NOPTS_VALUE)
    35523621        pts_detected = true;
    35533622
    3554     avcodeclock->lock();
    3555     if (private_dec)
     3623    bool tryAgain = true;
     3624    bool sentPacket = false;
     3625    while (tryAgain)
    35563626    {
    3557         if (QString(ic->iformat->name).contains("avi") || !pts_detected)
    3558             pkt->pts = pkt->dts;
    3559         // TODO disallow private decoders for dvd playback
    3560         // N.B. we do not reparse the frame as it breaks playback for
    3561         // everything but libmpeg2
    3562         ret = private_dec->GetFrame(curstream, mpa_pic, &gotpicture, pkt);
    3563     }
    3564     else
    3565     {
    3566         context->reordered_opaque = pkt->pts;
    3567         //  SUGGESTION
    3568         //  Now that avcodec_decode_video2 is deprecated and replaced
    3569         //  by 2 calls (receive frame and send packet), this could be optimized
    3570         //  into separate routines or separate threads.
    3571         //  Also now that it always consumes a whole buffer some code
    3572         //  in the caller may be able to be optimized.
    3573         ret = avcodec_receive_frame(context, mpa_pic);
    3574         if (ret == 0)
    3575             gotpicture = 1;
    3576         if (ret == AVERROR(EAGAIN))
    3577             ret = 0;
    3578         if (ret == 0)
    3579             ret = avcodec_send_packet(context, pkt);
    3580         // The code assumes that there is always space to add a new
    3581         // packet. This seems risky but has always worked.
    3582         // It should actually check if (ret == AVERROR(EAGAIN)) and then keep
    3583         // the packet around and try it again after processing the frame
    3584         // received here.
    3585     }
    3586     avcodeclock->unlock();
    3587 
    3588     if (ret < 0)
    3589     {
    3590         char error[AV_ERROR_MAX_STRING_SIZE];
    3591         LOG(VB_GENERAL, LOG_ERR, LOC +
    3592             QString("video decode error: %1 (%2)")
    3593             .arg(av_make_error_string(error, sizeof(error), ret))
    3594             .arg(gotpicture));
    3595         if (ret == AVERROR_INVALIDDATA)
     3627        tryAgain = false;
     3628        gotpicture = 0;
     3629        avcodeclock->lock();
     3630        if (private_dec)
     3631        {
     3632            if (QString(ic->iformat->name).contains("avi") || !pts_detected)
     3633                pkt->pts = pkt->dts;
     3634            // TODO disallow private decoders for dvd playback
     3635            // N.B. we do not reparse the frame as it breaks playback for
     3636            // everything but libmpeg2
     3637            ret = private_dec->GetFrame(curstream, mpa_pic, &gotpicture, pkt);
     3638            sentPacket = true;
     3639        }
     3640        else
    35963641        {
    3597             if (++averror_count > SEQ_PKT_ERR_MAX)
     3642            if (!use_frame_timing)
     3643                context->reordered_opaque = pkt->pts;
     3644
     3645            //  SUGGESTION
     3646            //  Now that avcodec_decode_video2 is deprecated and replaced
     3647            //  by 2 calls (receive frame and send packet), this could be optimized
     3648            //  into separate routines or separate threads.
     3649            //  Also now that it always consumes a whole buffer some code
     3650            //  in the caller may be able to be optimized.
     3651            ret = avcodec_receive_frame(context, mpa_pic);
     3652
     3653            if (ret == 0)
     3654                gotpicture = 1;
     3655            else
     3656                gotpicture = 0;
     3657            if (ret == AVERROR(EAGAIN))
     3658                ret = 0;
     3659            // If we got a picture do not send the packet until we have
     3660            // all available pictures
     3661            if (ret == 0 && !gotpicture)
    35983662            {
    3599                 // If erroring on GPU assist, try switching to software decode
    3600                 if (codec_is_std(video_codec_id))
    3601                     m_parent->SetErrored(QObject::tr("Video Decode Error"));
     3663                ret = avcodec_send_packet(context, pkt);
     3664                if (ret == AVERROR(EAGAIN))
     3665                {
     3666                    tryAgain = true;
     3667                    ret = 0;
     3668                }
    36023669                else
    3603                     m_streams_changed = true;
     3670                    sentPacket = true;
    36043671            }
    36053672        }
    3606         return false;
     3673        avcodeclock->unlock();
     3674
     3675        if (ret < 0)
     3676        {
     3677            char error[AV_ERROR_MAX_STRING_SIZE];
     3678            LOG(VB_GENERAL, LOG_ERR, LOC +
     3679                QString("video decode error: %1 (%2) gotpicture:%3")
     3680                .arg(av_make_error_string(error, sizeof(error), ret))
     3681                .arg(ret).arg(gotpicture));
     3682            if (ret == AVERROR_INVALIDDATA)
     3683            {
     3684                if (++averror_count > SEQ_PKT_ERR_MAX)
     3685                {
     3686                    // If erroring on GPU assist, try switching to software decode
     3687                    if (codec_is_std(video_codec_id))
     3688                        m_parent->SetErrored(QObject::tr("Video Decode Error"));
     3689                    else
     3690                        m_streams_changed = true;
     3691                }
     3692            }
     3693            return false;
     3694        }
     3695
     3696        if (tryAgain)
     3697        {
     3698            if (++retryCount > PACKET_MAX_RETRIES)
     3699            {
     3700                LOG(VB_GENERAL, LOG_ERR, LOC +
     3701                    QString("ERROR: Video decode buffering retries exceeded maximum"));
     3702                return false;
     3703            }
     3704            LOG(VB_PLAYBACK, LOG_INFO, LOC +
     3705                QString("Video decode buffering retry"));
     3706            usleep(RETRY_WAIT_TIME);
     3707        }
    36073708    }
    36083709    // averror_count counts sequential errors, so if you have a successful
    36093710    // packet then reset it
    36103711    averror_count = 0;
    3611 
    3612     if (!gotpicture)
     3712    if (gotpicture)
    36133713    {
    3614         return true;
    3615     }
     3714        LOG(VB_PLAYBACK | VB_TIMESTAMP, LOG_INFO, LOC +
     3715            QString("video timecodes packet-pts:%1 frame-pts:%2 packet-dts: %3 frame-dts:%4")
     3716                .arg(pkt->pts).arg(mpa_pic->pts).arg(pkt->pts)
     3717                .arg(mpa_pic->pkt_dts));
    36163718
    3617     // Detect faulty video timestamps using logic from ffplay.
    3618     if (pkt->dts != (int64_t)AV_NOPTS_VALUE)
    3619     {
    3620         faulty_dts += (pkt->dts <= last_dts_for_fault_detection);
    3621         last_dts_for_fault_detection = pkt->dts;
    3622     }
    3623     if (mpa_pic->reordered_opaque != (int64_t)AV_NOPTS_VALUE)
    3624     {
    3625         faulty_pts += (mpa_pic->reordered_opaque <= last_pts_for_fault_detection);
    3626         last_pts_for_fault_detection = mpa_pic->reordered_opaque;
    3627         reordered_pts_detected = true;
    3628     }
     3719        if (!use_frame_timing)
     3720        {
     3721            // Detect faulty video timestamps using logic from ffplay.
     3722            if (pkt->dts != (int64_t)AV_NOPTS_VALUE)
     3723            {
     3724                faulty_dts += (pkt->dts <= last_dts_for_fault_detection);
     3725                last_dts_for_fault_detection = pkt->dts;
     3726            }
     3727            if (mpa_pic->reordered_opaque != (int64_t)AV_NOPTS_VALUE)
     3728            {
     3729                faulty_pts += (mpa_pic->reordered_opaque <= last_pts_for_fault_detection);
     3730                last_pts_for_fault_detection = mpa_pic->reordered_opaque;
     3731                reordered_pts_detected = true;
     3732            }
    36293733
    3630     // Explicity use DTS for DVD since they should always be valid for every
    3631     // frame and fixups aren't enabled for DVD.
    3632     // Select reordered_opaque (PTS) timestamps if they are less faulty or the
    3633     // the DTS timestamp is missing. Also use fixups for missing PTS instead of
    3634     // DTS to avoid oscillating between PTS and DTS. Only select DTS if PTS is
    3635     // more faulty or never detected.
    3636     if (force_dts_timestamps)
    3637     {
    3638         if (pkt->dts != (int64_t)AV_NOPTS_VALUE)
    3639             pts = pkt->dts;
    3640         pts_selected = false;
    3641     }
    3642     else if (ringBuffer->IsDVD())
    3643     {
    3644         if (pkt->dts != (int64_t)AV_NOPTS_VALUE)
    3645             pts = pkt->dts;
    3646         pts_selected = false;
    3647     }
    3648     else if (private_dec && private_dec->NeedsReorderedPTS() &&
    3649              mpa_pic->reordered_opaque != (int64_t)AV_NOPTS_VALUE)
    3650     {
    3651         pts = mpa_pic->reordered_opaque;
    3652         pts_selected = true;
    3653     }
    3654     else if (faulty_pts <= faulty_dts && reordered_pts_detected)
    3655     {
    3656         if (mpa_pic->reordered_opaque != (int64_t)AV_NOPTS_VALUE)
    3657             pts = mpa_pic->reordered_opaque;
    3658         pts_selected = true;
     3734            // Explicity use DTS for DVD since they should always be valid for every
     3735            // frame and fixups aren't enabled for DVD.
     3736            // Select reordered_opaque (PTS) timestamps if they are less faulty or the
     3737            // the DTS timestamp is missing. Also use fixups for missing PTS instead of
     3738            // DTS to avoid oscillating between PTS and DTS. Only select DTS if PTS is
     3739            // more faulty or never detected.
     3740            if (force_dts_timestamps)
     3741            {
     3742                if (pkt->dts != (int64_t)AV_NOPTS_VALUE)
     3743                    pts = pkt->dts;
     3744                pts_selected = false;
     3745            }
     3746            else if (ringBuffer->IsDVD())
     3747            {
     3748                if (pkt->dts != (int64_t)AV_NOPTS_VALUE)
     3749                    pts = pkt->dts;
     3750                pts_selected = false;
     3751            }
     3752            else if (private_dec && private_dec->NeedsReorderedPTS() &&
     3753                    mpa_pic->reordered_opaque != (int64_t)AV_NOPTS_VALUE)
     3754            {
     3755                pts = mpa_pic->reordered_opaque;
     3756                pts_selected = true;
     3757            }
     3758            else if (faulty_pts <= faulty_dts && reordered_pts_detected)
     3759            {
     3760                if (mpa_pic->reordered_opaque != (int64_t)AV_NOPTS_VALUE)
     3761                    pts = mpa_pic->reordered_opaque;
     3762                pts_selected = true;
     3763            }
     3764            else if (pkt->dts != (int64_t)AV_NOPTS_VALUE)
     3765            {
     3766                pts = pkt->dts;
     3767                pts_selected = false;
     3768            }
     3769
     3770            LOG(VB_PLAYBACK | VB_TIMESTAMP, LOG_DEBUG, LOC +
     3771                QString("video packet timestamps reordered %1 pts %2 dts %3 (%4)")
     3772                    .arg(mpa_pic->reordered_opaque).arg(pkt->pts).arg(pkt->dts)
     3773                    .arg((force_dts_timestamps) ? "dts forced" :
     3774                        (pts_selected) ? "reordered" : "dts"));
     3775
     3776            mpa_pic->reordered_opaque = pts;
     3777        }
     3778        ProcessVideoFrame(curstream, mpa_pic);
    36593779    }
    3660     else if (pkt->dts != (int64_t)AV_NOPTS_VALUE)
     3780    if (!sentPacket)
    36613781    {
    3662         pts = pkt->dts;
    3663         pts_selected = false;
     3782        // MythTV logic expects that only one frame is processed
     3783        // Save the packet for later and return.
     3784        AVPacket *newPkt = new AVPacket;
     3785        memset(newPkt, 0, sizeof(AVPacket));
     3786        av_init_packet(newPkt);
     3787        av_packet_ref(newPkt, pkt);
     3788        storedPackets.prepend(newPkt);
    36643789    }
    3665 
    3666     LOG(VB_PLAYBACK | VB_TIMESTAMP, LOG_DEBUG, LOC +
    3667         QString("video packet timestamps reordered %1 pts %2 dts %3 (%4)")
    3668             .arg(mpa_pic->reordered_opaque).arg(pkt->pts).arg(pkt->dts)
    3669             .arg((force_dts_timestamps) ? "dts forced" :
    3670                  (pts_selected) ? "reordered" : "dts"));
    3671 
    3672     mpa_pic->reordered_opaque = pts;
    3673 
    3674     ProcessVideoFrame(curstream, mpa_pic);
    3675 
    36763790    return true;
    36773791}
    36783792
    bool AvFormatDecoder::ProcessVideoFrame(AVStream *stream, AVFrame *mpa_pic) 
    37773891        return false;
    37783892    }
    37793893
    3780     long long pts = (long long)(av_q2d(stream->time_base) *
     3894    long long pts;
     3895    if (use_frame_timing)
     3896    {
     3897        pts = mpa_pic->pts;
     3898        if (pts == AV_NOPTS_VALUE)
     3899            pts = mpa_pic->pkt_dts;
     3900        if (pts == AV_NOPTS_VALUE)
     3901        {
     3902            LOG(VB_GENERAL, LOG_ERR, LOC + "No PTS found - unable to process video.");
     3903            return false;
     3904        }
     3905        pts = (long long)(av_q2d(stream->time_base) *
     3906                                pts * 1000);
     3907    }
     3908    else
     3909        pts = (long long)(av_q2d(stream->time_base) *
    37813910                                mpa_pic->reordered_opaque * 1000);
    37823911
    37833912    long long temppts = pts;
    bool AvFormatDecoder::ProcessVideoFrame(AVStream *stream, AVFrame *mpa_pic) 
    37943923        temppts += (long long)(mpa_pic->repeat_pict * 500 / fps);
    37953924    }
    37963925
     3926    // Calculate actual fps from the pts values.
     3927    long long ptsdiff = temppts - lastvpts;
     3928    double calcfps = 1000.0 / ptsdiff;
     3929    if (calcfps < 121.0 && calcfps > 3.0)
     3930    {
     3931        // If fps has doubled due to frame-doubling deinterlace
     3932        // Set fps to double value.
     3933        double fpschange = calcfps / fps;
     3934        if (fpschange > 1.9 && fpschange < 2.1 && fpsMultiplier == 1)
     3935            fpsMultiplier = 2;
     3936        if (fpschange > 0.5 && fpschange < 0.6 && fpsMultiplier == 2)
     3937            fpsMultiplier = 1;
     3938    }
     3939
     3940
    37973941    LOG(VB_PLAYBACK | VB_TIMESTAMP, LOG_INFO, LOC +
    37983942        QString("video timecode %1 %2 %3 %4%5")
    3799             .arg(mpa_pic->reordered_opaque).arg(pts).arg(temppts).arg(lastvpts)
     3943            .arg(use_frame_timing ? mpa_pic->pts : mpa_pic->reordered_opaque).arg(pts)
     3944            .arg(temppts).arg(lastvpts)
    38003945            .arg((pts != temppts) ? " fixup" : ""));
    38013946
    38023947    if (picframe)
    bool AvFormatDecoder::ProcessVideoFrame(AVStream *stream, AVFrame *mpa_pic) 
    38153960
    38163961    decoded_video_frame = picframe;
    38173962    gotVideoFrame = 1;
    3818     ++framesPlayed;
     3963    if (++fpsSkip >= fpsMultiplier)
     3964    {
     3965        ++framesPlayed;
     3966        fpsSkip = 0;
     3967    }
    38193968
    38203969    lastvpts = temppts;
    38213970    if (!firstvpts && firstvptsinuse)
  • mythtv/libs/libmythtv/avformatdecoder.h

    diff --git a/mythtv/libs/libmythtv/avformatdecoder.h b/mythtv/libs/libmythtv/avformatdecoder.h
    index 486e0bb1bed..e4dded21576 100644
    a b class AvFormatDecoder : public DecoderBase 
    322322    bool pts_detected;
    323323    bool reordered_pts_detected;
    324324    bool pts_selected;
     325    // set use_frame_timing true to utilize the pts values in returned
     326    // frames. Set fale to use deprecated method.
     327    bool use_frame_timing;
    325328
    326329    bool force_dts_timestamps;
    327330
  • mythtv/libs/libmythtv/decoderbase.cpp

    diff --git a/mythtv/libs/libmythtv/decoderbase.cpp b/mythtv/libs/libmythtv/decoderbase.cpp
    index 33b1676c60b..b8a2edef83b 100644
    a b DecoderBase::DecoderBase(MythPlayer *parent, const ProgramInfo &pginfo) 
    2020
    2121      current_width(640), current_height(480),
    2222      current_aspect(1.33333), fps(29.97),
     23      fpsMultiplier(1), fpsSkip(0),
    2324      bitrate(4000),
    2425
    2526      framesPlayed(0), framesRead(0),
    void DecoderBase::Reset(bool reset_video_data, bool seek_reset, bool reset_file) 
    8081    {
    8182        ResetPosMap();
    8283        framesPlayed = 0;
     84        fpsSkip = 0;
    8385        framesRead = 0;
    8486        totalDuration = AVRationalInit(0);
    8587        dontSyncPositionMap = false;
    bool DecoderBase::DoRewind(long long desiredFrame, bool discardFrames) 
    581583        return false;
    582584
    583585    framesPlayed = lastKey;
     586    fpsSkip = 0;
    584587    framesRead = lastKey;
    585588
    586589    // Do any Extra frame-by-frame seeking for exactseeks mode
    void DecoderBase::DoFastForwardSeek(long long desiredFrame, bool &needflush) 
    880883        ringBuffer->Seek(e.pos, SEEK_SET);
    881884        needflush    = true;
    882885        framesPlayed = lastKey;
     886        fpsSkip = 0;
    883887        framesRead = lastKey;
    884888    }
    885889}
  • mythtv/libs/libmythtv/decoderbase.h

    diff --git a/mythtv/libs/libmythtv/decoderbase.h b/mythtv/libs/libmythtv/decoderbase.h
    index 3f7eddb8ca5..608c1e6b336 100644
    a b class DecoderBase 
    269269    void SaveTotalFrames(void);
    270270    bool GetVideoInverted(void) const { return video_inverted; }
    271271    void TrackTotalDuration(bool track) { trackTotalDuration = track; }
     272    int GetfpsMultiplier(void) { return fpsMultiplier; }
    272273
    273274  protected:
    274275    virtual int  AutoSelectTrack(uint type);
    class DecoderBase 
    301302    int current_height;
    302303    float current_aspect;
    303304    double fps;
     305    int fpsMultiplier;
     306    int fpsSkip;
    304307    uint bitrate;
    305308
    306309    long long framesPlayed;
  • mythtv/libs/libmythtv/libmythtv.pro

    diff --git a/mythtv/libs/libmythtv/libmythtv.pro b/mythtv/libs/libmythtv/libmythtv.pro
    index 438207f3096..6eb6127ca7a 100644
    a b  
    11include ( ../../settings.pro )
    22
    33QT += network xml sql widgets
     4android: QT += androidextras
    45
    56TEMPLATE = lib
    67TARGET = mythtv-$$LIBVERSION
    using_frontend { 
    503504        using_opengl_video:DEFINES += USING_GLVAAPI
    504505    }
    505506
     507    using_mediacodec {
     508        DEFINES += USING_MEDIACODEC
     509        HEADERS += mediacodeccontext.h
     510        SOURCES += mediacodeccontext.cpp
     511    }
     512
    506513    # Misc. frontend
    507514    HEADERS += DetectLetterbox.h
    508515    SOURCES += DetectLetterbox.cpp
  • new file mythtv/libs/libmythtv/mediacodeccontext.cpp

    diff --git a/mythtv/libs/libmythtv/mediacodeccontext.cpp b/mythtv/libs/libmythtv/mediacodeccontext.cpp
    new file mode 100644
    index 00000000000..d95de6a01a1
    - +  
     1//////////////////////////////////////////////////////////////////////////////
     2// Copyright (c) 2017 MythTV Developers <mythtv-dev@mythtv.org>
     3//
     4// This is part of MythTV (https://www.mythtv.org)
     5//
     6// This program is free software; you can redistribute it and/or modify
     7// it under the terms of the GNU General Public License as published by
     8// the Free Software Foundation; either version 2 of the License, or
     9// (at your option) any later version.
     10//
     11// This program is distributed in the hope that it will be useful,
     12// but WITHOUT ANY WARRANTY; without even the implied warranty of
     13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     14// GNU General Public License for more details.
     15//
     16// You should have received a copy of the GNU General Public License
     17// along with this program; if not, write to the Free Software
     18// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
     19//
     20// You should have received a copy of the GNU General Public License
     21// along with this program.  If not, see <http://www.gnu.org/licenses/>.
     22//
     23//////////////////////////////////////////////////////////////////////////////
     24
     25#include "mediacodeccontext.h"
     26
     27#include "mythlogging.h"
     28
     29extern "C" {
     30    #include "libavutil/pixfmt.h"
     31    #include "libavutil/hwcontext.h"
     32    #include "libavcodec/avcodec.h"
     33}
     34
     35#define LOC QString("MEDIACODEC: ")
     36
     37MythCodecID MediaCodecContext::GetBestSupportedCodec(
     38    AVCodec **ppCodec,
     39    const QString &decoder,
     40    uint stream_type,
     41    AVPixelFormat &pix_fmt)
     42{
     43    enum AVHWDeviceType type = AV_HWDEVICE_TYPE_MEDIACODEC;
     44
     45    AVPixelFormat fmt = AV_PIX_FMT_NONE;
     46    if (decoder == "mediacodec")
     47    {
     48        QString decodername = QString((*ppCodec)->name) + "_mediacodec";
     49        if (decodername == "mpeg2video_mediacodec")
     50            decodername = "mpeg2_mediacodec";
     51        AVCodec *newCodec = avcodec_find_decoder_by_name (decodername.toLocal8Bit());
     52        if (newCodec)
     53        {
     54            *ppCodec = newCodec;
     55            fmt = AV_PIX_FMT_MEDIACODEC;
     56        }
     57        else
     58            LOG(VB_PLAYBACK, LOG_INFO, LOC +
     59                QString("Decoder %1 does not support device type %2.")
     60                    .arg((*ppCodec)->name).arg(av_hwdevice_get_type_name(type)));
     61    }
     62
     63    if (fmt == AV_PIX_FMT_NONE)
     64        return (MythCodecID)(kCodec_MPEG1 + (stream_type - 1));
     65    else
     66    {
     67        LOG(VB_PLAYBACK, LOG_INFO, LOC +
     68            QString("Decoder %1 supports device type %2.")
     69                .arg((*ppCodec)->name).arg(av_hwdevice_get_type_name(type)));
     70        pix_fmt = fmt;
     71        return (MythCodecID)(kCodec_MPEG1_MEDIACODEC + (stream_type - 1));
     72    }
     73}
  • new file mythtv/libs/libmythtv/mediacodeccontext.h

    diff --git a/mythtv/libs/libmythtv/mediacodeccontext.h b/mythtv/libs/libmythtv/mediacodeccontext.h
    new file mode 100644
    index 00000000000..7f116487e0b
    - +  
     1//////////////////////////////////////////////////////////////////////////////
     2// Copyright (c) 2017 MythTV Developers <mythtv-dev@mythtv.org>
     3//
     4// This is part of MythTV (https://www.mythtv.org)
     5//
     6// This program is free software; you can redistribute it and/or modify
     7// it under the terms of the GNU General Public License as published by
     8// the Free Software Foundation; either version 2 of the License, or
     9// (at your option) any later version.
     10//
     11// This program is distributed in the hope that it will be useful,
     12// but WITHOUT ANY WARRANTY; without even the implied warranty of
     13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     14// GNU General Public License for more details.
     15//
     16// You should have received a copy of the GNU General Public License
     17// along with this program; if not, write to the Free Software
     18// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
     19//
     20// You should have received a copy of the GNU General Public License
     21// along with this program.  If not, see <http://www.gnu.org/licenses/>.
     22//
     23//////////////////////////////////////////////////////////////////////////////
     24
     25
     26#ifndef VIDEOOUTOPENGLMEDIACODEC_H
     27#define VIDEOOUTOPENGLMEDIACODEC_H
     28
     29#include "videoout_opengl.h"
     30
     31
     32class MediaCodecContext
     33{
     34  public:
     35    static MythCodecID GetBestSupportedCodec(AVCodec **ppCodec,
     36                                             const QString &decoder,
     37                                             uint stream_type,
     38                                             AVPixelFormat &pix_fmt);
     39};
     40
     41#endif // VIDEOOUTOPENGLMEDIACODEC_H
     42 No newline at end of file
  • mythtv/libs/libmythtv/mythcodecid.cpp

    diff --git a/mythtv/libs/libmythtv/mythcodecid.cpp b/mythtv/libs/libmythtv/mythcodecid.cpp
    index cd9170a648d..b2023512b5f 100644
    a b QString toString(MythCodecID codecid) 
    102102        case kCodec_HEVC_DXVA2:
    103103            return "HEVC DXVA2";
    104104
     105        case kCodec_MPEG1_MEDIACODEC:
     106            return "MPEG1 MEDIACODEC";
     107        case kCodec_MPEG2_MEDIACODEC:
     108            return "MPEG2 MEDIACODEC";
     109        case kCodec_H263_MEDIACODEC:
     110            return "H.263 MEDIACODEC";
     111        case kCodec_MPEG4_MEDIACODEC:
     112            return "MPEG4 MEDIACODEC";
     113        case kCodec_H264_MEDIACODEC:
     114            return "H.264 MEDIACODEC";
     115        case kCodec_VC1_MEDIACODEC:
     116            return "VC1 MEDIACODEC";
     117        case kCodec_WMV3_MEDIACODEC:
     118            return "WMV3 MEDIACODEC";
     119        case kCodec_VP8_MEDIACODEC:
     120            return "VP8 MEDIACODEC";
     121        case kCodec_VP9_MEDIACODEC:
     122            return "VP9 MEDIACODEC";
     123        case kCodec_HEVC_MEDIACODEC:
     124            return "HEVC MEDIACODEC";
     125
    105126        default:
    106127            break;
    107128    }
    int myth2av_codecid(MythCodecID codec_id, bool &vdpau) 
    253274            ret = AV_CODEC_ID_HEVC;
    254275            break;
    255276
     277        case kCodec_MPEG1_MEDIACODEC:
     278            ret = AV_CODEC_ID_MPEG1VIDEO;
     279            break;
     280        case kCodec_MPEG2_MEDIACODEC:
     281            ret = AV_CODEC_ID_MPEG2VIDEO;
     282            break;
     283        case kCodec_H263_MEDIACODEC:
     284            ret = AV_CODEC_ID_H263;
     285            break;
     286        case kCodec_MPEG4_MEDIACODEC:
     287            ret = AV_CODEC_ID_MPEG4;
     288            break;
     289        case kCodec_H264_MEDIACODEC:
     290            ret = AV_CODEC_ID_H264;
     291            break;
     292        case kCodec_VC1_MEDIACODEC:
     293            ret = AV_CODEC_ID_VC1;
     294            break;
     295        case kCodec_WMV3_MEDIACODEC:
     296            ret = AV_CODEC_ID_WMV3;
     297            break;
     298        case kCodec_VP8_MEDIACODEC:
     299            ret = AV_CODEC_ID_VP8;
     300            break;
     301        case kCodec_VP9_MEDIACODEC:
     302            ret = AV_CODEC_ID_VP9;
     303            break;
     304        case kCodec_HEVC_MEDIACODEC:
     305            ret = AV_CODEC_ID_HEVC;
     306            break;
     307
    256308        default:
    257309            LOG(VB_GENERAL, LOG_ERR,
    258310                QString("Error: MythCodecID %1 has not been "
    QString get_encoding_type(MythCodecID codecid) 
    303355        case kCodec_MPEG1_VDPAU:
    304356        case kCodec_MPEG1_VAAPI:
    305357        case kCodec_MPEG1_DXVA2:
     358        case kCodec_MPEG1_MEDIACODEC:
    306359        case kCodec_MPEG2:
    307360        case kCodec_MPEG2_VDPAU:
    308361        case kCodec_MPEG2_VAAPI:
    309362        case kCodec_MPEG2_DXVA2:
     363        case kCodec_MPEG2_MEDIACODEC:
    310364            return "MPEG-2";
    311365
    312366        case kCodec_H263:
    313367        case kCodec_H263_VDPAU:
    314368        case kCodec_H263_VAAPI:
    315369        case kCodec_H263_DXVA2:
     370        case kCodec_H263_MEDIACODEC:
    316371            return "H.263";
    317372
    318373        case kCodec_NUV_MPEG4:
    QString get_encoding_type(MythCodecID codecid) 
    320375        case kCodec_MPEG4_VDPAU:
    321376        case kCodec_MPEG4_VAAPI:
    322377        case kCodec_MPEG4_DXVA2:
     378        case kCodec_MPEG4_MEDIACODEC:
    323379            return "MPEG-4";
    324380
    325381        case kCodec_H264:
    326382        case kCodec_H264_VDPAU:
    327383        case kCodec_H264_VAAPI:
    328384        case kCodec_H264_DXVA2:
     385        case kCodec_H264_MEDIACODEC:
    329386            return "H.264";
    330387
    331388        case kCodec_VC1:
    332389        case kCodec_VC1_VDPAU:
    333390        case kCodec_VC1_VAAPI:
    334391        case kCodec_VC1_DXVA2:
     392        case kCodec_VC1_MEDIACODEC:
    335393            return "VC-1";
    336394
    337395        case kCodec_WMV3:
    338396        case kCodec_WMV3_VDPAU:
    339397        case kCodec_WMV3_VAAPI:
    340398        case kCodec_WMV3_DXVA2:
     399        case kCodec_WMV3_MEDIACODEC:
    341400            return "WMV3";
    342401
    343402        case kCodec_VP8:
    344403        case kCodec_VP8_VDPAU:
    345404        case kCodec_VP8_VAAPI:
    346405        case kCodec_VP8_DXVA2:
     406        case kCodec_VP8_MEDIACODEC:
    347407            return "VP8";
    348408
    349409        case kCodec_VP9:
    350410        case kCodec_VP9_VDPAU:
    351411        case kCodec_VP9_VAAPI:
    352412        case kCodec_VP9_DXVA2:
     413        case kCodec_VP9_MEDIACODEC:
    353414            return "VP8";
    354415
    355416        case kCodec_HEVC:
    356417        case kCodec_HEVC_VDPAU:
    357418        case kCodec_HEVC_VAAPI:
    358419        case kCodec_HEVC_DXVA2:
     420        case kCodec_HEVC_MEDIACODEC:
    359421            return "HEVC";
    360422
    361423        case kCodec_NONE:
    QString get_encoding_type(MythCodecID codecid) 
    363425        case kCodec_VDPAU_END:
    364426        case kCodec_VAAPI_END:
    365427        case kCodec_DXVA2_END:
     428        case kCodec_MEDIACODEC_END:
    366429            return QString();
    367430    }
    368431
    QString get_decoder_name(MythCodecID codec_id) 
    380443    if (codec_is_dxva2(codec_id))
    381444        return "dxva2";
    382445
     446    if (codec_is_mediacodec(codec_id))
     447        return "mediacodec";
     448
    383449    return "ffmpeg";
    384450}
  • mythtv/libs/libmythtv/mythcodecid.h

    diff --git a/mythtv/libs/libmythtv/mythcodecid.h b/mythtv/libs/libmythtv/mythcodecid.h
    index 92466df9b8c..7ad5f157065 100644
    a b typedef enum 
    7575    kCodec_HEVC_DXVA2,
    7676
    7777    kCodec_DXVA2_END,
     78
     79    kCodec_MEDIACODEC_BEGIN = kCodec_DXVA2_END,
     80
     81    kCodec_MPEG1_MEDIACODEC,
     82    kCodec_MPEG2_MEDIACODEC,
     83    kCodec_H263_MEDIACODEC,
     84    kCodec_MPEG4_MEDIACODEC,
     85    kCodec_H264_MEDIACODEC,
     86    kCodec_VC1_MEDIACODEC,
     87    kCodec_WMV3_MEDIACODEC,
     88    kCodec_VP8_MEDIACODEC,
     89    kCodec_VP9_MEDIACODEC,
     90    kCodec_HEVC_MEDIACODEC,
     91
     92    kCodec_MEDIACODEC_END,
     93
    7894} MythCodecID;
    7995
    8096// MythCodecID convenience functions
    8197#define codec_is_std(id)      (id < kCodec_NORMAL_END)
     98// temporary test
    8299#define codec_is_std_mpeg(id) (id == kCodec_MPEG1 || id == kCodec_MPEG2)
    83100#define codec_is_vdpau(id)    ((id > kCodec_VDPAU_BEGIN) &&     \
    84101                               (id < kCodec_VDPAU_END))
    typedef enum 
    95112                               ((id == kCodec_H264_DXVA2)  ||   \
    96113                                (id == kCodec_MPEG2_DXVA2) ||   \
    97114                                (id == kCodec_VC1_DXVA2)))
     115#define codec_is_mediacodec(id) ((id > kCodec_MEDIACODEC_BEGIN) &&     \
     116                               (id < kCodec_MEDIACODEC_END))
     117
     118#define codec_sw_copy(id) (codec_is_std(id) || codec_is_mediacodec(id))
    98119
    99120QString get_encoding_type(MythCodecID codecid);
    100121QString get_decoder_name(MythCodecID codec_id);
    int mpeg_version(int codec_id); 
    130151#define CODEC_IS_DXVA2(codec, enc) (0)
    131152#endif
    132153
     154#ifdef USING_MEDIACODEC
     155#define CODEC_IS_MEDIACODEC(codec) (codec && (QString("mediacodec") == codec->wrapper_name))
     156#else
     157#define CODEC_IS_MEDIACODEC(codec) (0)
     158#endif
     159
    133160#define CODEC_IS_HWACCEL(codec, enc) (CODEC_IS_VDPAU(codec)      ||     \
    134161                                      CODEC_IS_VAAPI(codec, enc) ||     \
    135                                       CODEC_IS_DXVA2(codec, enc))
     162                                      CODEC_IS_DXVA2(codec, enc) ||    \
     163                                      CODEC_IS_MEDIACODEC(codec))
    136164
    137165#endif // _MYTH_CODEC_ID_H_
  • mythtv/libs/libmythtv/videobuffers.cpp

    diff --git a/mythtv/libs/libmythtv/videobuffers.cpp b/mythtv/libs/libmythtv/videobuffers.cpp
    index e20c13d2772..92620924ca9 100644
    a b extern "C" { 
    1515#include "compat.h"
    1616#include "mythlogging.h"
    1717
    18 #define TRY_LOCK_SPINS                 100
    19 #define TRY_LOCK_SPINS_BEFORE_WARNING   10
    20 #define TRY_LOCK_SPIN_WAIT             100 /* usec */
     18#define TRY_LOCK_SPINS                 2000
     19#define TRY_LOCK_SPINS_BEFORE_WARNING  9999
     20#define TRY_LOCK_SPIN_WAIT             1000 /* usec */
    2121
    2222int next_dbg_str = 0;
    2323
    VideoFrame *VideoBuffers::GetNextFreeFrame(BufferType enqueue_to) 
    289289
    290290        if (tries >= TRY_LOCK_SPINS)
    291291        {
     292            LOG(VB_GENERAL, LOG_ERR, QString("GetNextFreeFrame: "
     293            "available:%1 used:%2 limbo:%3 pause:%4 displayed:%5 decode:%6 finished:%7")
     294            .arg(available.size()).arg(used.size()).arg(limbo.size()).arg(pause.size()).arg(displayed.size()).arg(decode.size()).arg(finished.size()));
    292295            LOG(VB_GENERAL, LOG_ERR,
    293296                QString("GetNextFreeFrame() unable to "
    294297                        "lock frame %1 times. Discarding Frames.")
  • mythtv/libs/libmythtv/videodisplayprofile.cpp

    diff --git a/mythtv/libs/libmythtv/videodisplayprofile.cpp b/mythtv/libs/libmythtv/videodisplayprofile.cpp
    index 4aec35f421d..700ee3bb990 100644
    a b QString VideoDisplayProfile::GetDecoderName(const QString &decoder) 
    851851        dec_name["vaapi"]    = QObject::tr("VAAPI acceleration");
    852852        dec_name["dxva2"]    = QObject::tr("Windows hardware acceleration");
    853853        dec_name["vda"]      = QObject::tr("Mac VDA hardware acceleration");
     854        dec_name["mediacodec"] = QObject::tr("Android MediaCodec decoder");
    854855    }
    855856
    856857    QString ret = decoder;
    QString VideoDisplayProfile::GetDecoderHelp(QString decoder) 
    907908            "Openmax will use the graphics hardware to "
    908909            "accelerate video decoding on Raspberry Pi. ");
    909910
     911    if (decoder == "mediacodec")
     912        msg += QObject::tr(
     913            "Mediacodec will use the graphics hardware to "
     914            "accelerate video decoding on Android. ");
     915
    910916    return msg;
    911917}
    912918
    void VideoDisplayProfile::CreateProfiles(const QString &hostname) 
    14531459                      "");
    14541460    }
    14551461#endif
     1462
     1463#ifdef USING_MEDIACODEC
     1464    if (!profiles.contains("MediaCodec Normal")) {
     1465        (void) QObject::tr("MediaCodec Normal",
     1466                           "Sample: MediaCodec Normal");
     1467        groupid = CreateProfileGroup("MediaCodec Normal", hostname);
     1468        CreateProfile(groupid, 1, "", "", "",
     1469                      "mediacodec", 4, true, "opengl",
     1470                      "opengl2", true,
     1471                      "none", "none",
     1472                      "");
     1473    }
     1474#endif
     1475
    14561476}
    14571477
    14581478QStringList VideoDisplayProfile::GetVideoRenderers(const QString &decoder)
  • mythtv/libs/libmythtv/videoout_opengl.cpp

    diff --git a/mythtv/libs/libmythtv/videoout_opengl.cpp b/mythtv/libs/libmythtv/videoout_opengl.cpp
    index af80727f7ef..a4532542d4e 100644
    a b void VideoOutputOpenGL::GetRenderOptions(render_opts &opts, 
    3838        (*opts.safe_renderers)["crystalhd"].append("opengl");
    3939    if (opts.decoders->contains("openmax"))
    4040        (*opts.safe_renderers)["openmax"].append("opengl");
     41    if (opts.decoders->contains("mediacodec"))
     42        (*opts.safe_renderers)["mediacodec"].append("opengl");
    4143    opts.priorities->insert("opengl", 65);
    4244
    4345    // lite profile - no colourspace control, GPU deinterlacing
    bool VideoOutputOpenGL::InputChanged(const QSize &video_dim_buf, 
    268270        StopEmbedding();
    269271    }
    270272
    271     if (!codec_is_std(av_codec_id))
     273    if (!codec_is_std(av_codec_id) && !codec_is_mediacodec(av_codec_id))
    272274    {
    273275        LOG(VB_GENERAL, LOG_ERR, LOC + "New video codec is not supported.");
    274276        errorState = kError_Unknown;
    bool VideoOutputOpenGL::SetupOpenGL(void) 
    417419                                  window.GetVideoDispDim(), dvr,
    418420                                  window.GetDisplayVideoRect(),
    419421                                  window.GetVideoRect(), true,
    420                                   options, !codec_is_std(video_codec_id));
     422                                  options, !codec_sw_copy(video_codec_id));
    421423    if (success)
    422424    {
    423425        bool temp_deinterlacing = m_deinterlacing;
    void VideoOutputOpenGL::ProcessFrame(VideoFrame *frame, OSD */*osd*/, 
    525527        gl_valid = true;
    526528    }
    527529
    528     bool sw_frame = codec_is_std(video_codec_id) &&
     530    bool sw_frame = codec_sw_copy(video_codec_id) &&
    529531                    video_codec_id != kCodec_NONE;
    530532    bool deint_proc = m_deinterlacing && (m_deintFilter != NULL);
    531533    OpenGLLocker ctx_lock(gl_context);
    QStringList VideoOutputOpenGL::GetAllowedRenderers( 
    735737    {
    736738        list << "opengl" << "opengl-lite";
    737739    }
     740    else if (codec_is_mediacodec(myth_codec_id) && !getenv("NO_OPENGL"))
     741    {
     742        list << "opengl";
     743    }
    738744
    739745    return list;
    740746}