MythTV  master
mythcodeccontext.h
Go to the documentation of this file.
1 // 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 //
24 
25 
26 #ifndef MYTHCODECONTEXT_H
27 #define MYTHCODECONTEXT_H
28 
29 // Qt
30 #include <QRecursiveMutex>
31 #include <QStringList>
32 #include <QAtomicInt>
33 
34 // MythTV
35 #include "libmythtv/mythcodecid.h"
36 #include "libmythtv/mythframe.h"
38 #include "libmythtv/mythtvexp.h"
39 
40 #include "decoderbase.h"
41 
42 extern "C" {
43 #include "libavcodec/avcodec.h"
44 #include "libavformat/avformat.h"
45 }
46 
47 using CreateHWDecoder = int (*)(AVCodecContext *Context);
48 
49 class MythPlayerUI;
50 class MythVideoProfile;
51 
53 {
54  public:
55  enum CodecProfile : std::uint8_t
56  {
57  NoProfile = 0,
121  MJPEG
122  };
123 
124  explicit MythCodecContext(DecoderBase *Parent, MythCodecID CodecID);
125  virtual ~MythCodecContext() = default;
126 
127  static MythCodecContext* CreateContext (DecoderBase *Parent, MythCodecID Codec);
128  static void GetDecoders (RenderOptions &Opts, bool Reinit = false);
129  static QStringList GetDecoderDescription(void);
130  static MythCodecID FindDecoder (const QString &Decoder, AVStream *Stream,
131  AVCodecContext **Context, const AVCodec **Codec);
132  static int GetBuffer (struct AVCodecContext *Context, AVFrame *Frame, int Flags);
133  static bool GetBuffer2 (struct AVCodecContext *Context, MythVideoFrame *Frame,
134  AVFrame *AvFrame, int Flags);
135  static int InitialiseDecoder (AVCodecContext *Context, CreateHWDecoder Callback, const QString &Debug);
136  static int InitialiseDecoder2 (AVCodecContext *Context, CreateHWDecoder Callback, const QString &Debug);
137  static void ReleaseBuffer (void *Opaque, uint8_t *Data);
138  static void FramesContextFinished (AVHWFramesContext *Context);
139  static void DeviceContextFinished (AVHWDeviceContext *Context);
140  static void CreateDecoderCallback (void *Wait, void *Context, void *Callback);
141  static MythPlayerUI* GetPlayerUI (AVCodecContext* Context);
142  static bool FrameTypeIsSupported (AVCodecContext* Context, VideoFrameType Format);
143  static AVBufferRef* CreateDevice (AVHWDeviceType Type, MythInteropGPU* Interop, const QString& Device = QString());
144  static bool IsUnsupportedProfile (AVCodecContext *Context);
145  static QString GetProfileDescription (CodecProfile Profile, QSize Size,
146  VideoFrameType Format = FMT_NONE, uint ColorDepth = 0);
147  static CodecProfile FFmpegToMythProfile(AVCodecID CodecID, int Profile);
148 
149  virtual void InitVideoCodec (AVCodecContext *Context,
150  bool SelectedStream, bool &DirectRendering);
151  virtual int HwDecoderInit (AVCodecContext */*Context*/) { return 0; }
152  virtual bool RetrieveFrame (AVCodecContext */*Context*/, MythVideoFrame */*Frame*/, AVFrame */*AvFrame*/) { return false; }
153  virtual int FilteredReceiveFrame (AVCodecContext *Context, AVFrame *Frame);
154  virtual void SetDeinterlacing (AVCodecContext */*Context*/, MythVideoProfile */*Profile*/, bool /*DoubleRate*/) {}
155  virtual void PostProcessFrame (AVCodecContext */*Context*/, MythVideoFrame */*Frame*/) {}
156  virtual bool IsDeinterlacing (bool &/*DoubleRate*/, bool /*StreamChange*/ = false) { return false; }
157  virtual void SetDecoderOptions (AVCodecContext */*Context*/, const AVCodec */*Codec*/) { }
158  virtual bool DecoderWillResetOnFlush (void) { return false; }
159  virtual bool DecoderWillResetOnAspect(void) { return false; }
160  virtual bool DecoderNeedsReset (AVCodecContext */*Context*/) { return m_resetRequired; }
161 
162  protected:
163  virtual bool RetrieveHWFrame (MythVideoFrame* Frame, AVFrame* AvFrame);
164  static void DestroyInterop (MythInteropGPU* Interop);
165  static void NewHardwareFramesContext(void);
166  static QAtomicInt s_hwFramesContextCount;
167 
168  DecoderBase* m_parent { nullptr };
169  MythCodecID m_codecID { kCodec_NONE };
170  bool m_resetRequired { false };
171 };
172 
173 #endif
MythCodecContext::H264ConstrainedHigh
@ H264ConstrainedHigh
Definition: mythcodeccontext.h:94
MythCodecContext::s_hwFramesContextCount
static QAtomicInt s_hwFramesContextCount
Definition: mythcodeccontext.h:166
MythCodecContext::MPEG2Spatial
@ MPEG2Spatial
Definition: mythcodeccontext.h:64
MythCodecID
MythCodecID
Definition: mythcodecid.h:11
MythCodecContext::H264High422
@ H264High422
Definition: mythcodeccontext.h:92
MythCodecContext::H264
@ H264
Definition: mythcodeccontext.h:84
MythCodecContext::MPEG4AdvancedSimple
@ MPEG4AdvancedSimple
Definition: mythcodeccontext.h:82
MythCodecContext::SetDecoderOptions
virtual void SetDecoderOptions(AVCodecContext *, const AVCodec *)
Definition: mythcodeccontext.h:157
CreateHWDecoder
int(*)(AVCodecContext *Context) CreateHWDecoder
Definition: mythcodeccontext.h:47
MythCodecContext::MPEG1
@ MPEG1
Definition: mythcodeccontext.h:58
mythtvexp.h
MythCodecContext::H264ConstrainedBaseline
@ H264ConstrainedBaseline
Definition: mythcodeccontext.h:86
Frame
Definition: zmdefines.h:93
MythCodecContext::AV1High
@ AV1High
Definition: mythcodeccontext.h:119
MythCodecContext::VC1
@ VC1
Definition: mythcodeccontext.h:102
MythDate::Format
Format
Definition: mythdate.h:15
MythCodecContext::VP9
@ VP9
Definition: mythcodeccontext.h:108
FMT_NONE
@ FMT_NONE
Definition: mythframe.h:22
MythCodecContext::HEVCMain10HDR
@ HEVCMain10HDR
Definition: mythcodeccontext.h:100
MythCodecContext::DecoderWillResetOnFlush
virtual bool DecoderWillResetOnFlush(void)
Definition: mythcodeccontext.h:158
mythframe.h
MythCodecContext::AV1Main
@ AV1Main
Definition: mythcodeccontext.h:118
Device
A device containing images (ie. USB stick, CD, storage group etc)
Definition: imagemanager.cpp:35
MythCodecContext::MPEG4BasicAnimated
@ MPEG4BasicAnimated
Definition: mythcodeccontext.h:74
MythCodecContext::MPEG4SimpleStudio
@ MPEG4SimpleStudio
Definition: mythcodeccontext.h:81
MythCodecContext::MPEG4SimpleScaleable
@ MPEG4SimpleScaleable
Definition: mythcodeccontext.h:68
MythCodecContext::MPEG2High
@ MPEG2High
Definition: mythcodeccontext.h:63
MythCodecContext::VP9_1
@ VP9_1
Definition: mythcodeccontext.h:110
MythCodecContext::DecoderWillResetOnAspect
virtual bool DecoderWillResetOnAspect(void)
Definition: mythcodeccontext.h:159
kCodec_NONE
@ kCodec_NONE
Definition: mythcodecid.h:15
MythCodecContext::VP9_2
@ VP9_2
Definition: mythcodeccontext.h:111
MythCodecContext::MPEG4AdvancedRT
@ MPEG4AdvancedRT
Definition: mythcodeccontext.h:76
MythCodecContext::HEVCMainStill
@ HEVCMainStill
Definition: mythcodeccontext.h:98
MythVideoProfile
Definition: mythvideoprofile.h:83
MythCodecContext::AV1Professional
@ AV1Professional
Definition: mythcodeccontext.h:120
AVFrame
struct AVFrame AVFrame
Definition: BorderDetector.h:15
MythPlayerUI
Definition: mythplayerui.h:12
mythinteropgpu.h
Decoder
Definition: decoder.h:70
MythCodecContext::H264High10
@ H264High10
Definition: mythcodeccontext.h:90
MythCodecContext::MPEG4CoreScaleable
@ MPEG4CoreScaleable
Definition: mythcodeccontext.h:77
RenderOptions
Definition: mythvideoprofile.h:41
MythCodecContext::SetDeinterlacing
virtual void SetDeinterlacing(AVCodecContext *, MythVideoProfile *, bool)
Definition: mythcodeccontext.h:154
MythCodecContext::H264MainExtended
@ H264MainExtended
Definition: mythcodeccontext.h:88
MythCodecContext::VC1Complex
@ VC1Complex
Definition: mythcodeccontext.h:105
MythCodecContext::HEVCMain10
@ HEVCMain10
Definition: mythcodeccontext.h:97
MythCodecContext::PostProcessFrame
virtual void PostProcessFrame(AVCodecContext *, MythVideoFrame *)
Definition: mythcodeccontext.h:155
MythCodecContext::MPEG4AdvancedScaleableTexture
@ MPEG4AdvancedScaleableTexture
Definition: mythcodeccontext.h:80
MythCodecContext::H264High
@ H264High
Definition: mythcodeccontext.h:89
MythCodecContext::MPEG2
@ MPEG2
Definition: mythcodeccontext.h:59
MythCodecContext::VC1Main
@ VC1Main
Definition: mythcodeccontext.h:104
MythCodecContext::IsDeinterlacing
virtual bool IsDeinterlacing(bool &, bool=false)
Definition: mythcodeccontext.h:156
MythCodecContext::VP9_2HDRPlus
@ VP9_2HDRPlus
Definition: mythcodeccontext.h:114
MythCodecContext::MPEG2Main
@ MPEG2Main
Definition: mythcodeccontext.h:61
VideoFrameType
VideoFrameType
Definition: mythframe.h:20
MythCodecContext::DecoderNeedsReset
virtual bool DecoderNeedsReset(AVCodecContext *)
Definition: mythcodeccontext.h:160
MythCodecContext::H264Baseline
@ H264Baseline
Definition: mythcodeccontext.h:85
MythCodecContext::MPEG4NBit
@ MPEG4NBit
Definition: mythcodeccontext.h:71
mythcodecid.h
MythCodecContext::VP9_2HDR
@ VP9_2HDR
Definition: mythcodeccontext.h:113
MythCodecContext::MPEG4SimpleFace
@ MPEG4SimpleFace
Definition: mythcodeccontext.h:73
MythCodecContext::VP8
@ VP8
Definition: mythcodeccontext.h:107
MythCodecContext::HwDecoderInit
virtual int HwDecoderInit(AVCodecContext *)
Definition: mythcodeccontext.h:151
MythCodecContext::MPEG4AdvancedCoding
@ MPEG4AdvancedCoding
Definition: mythcodeccontext.h:78
uint
unsigned int uint
Definition: compat.h:81
MythCodecContext::H263
@ H263
Definition: mythcodeccontext.h:83
MythCodecContext::VP9_3HDR
@ VP9_3HDR
Definition: mythcodeccontext.h:115
MythCodecContext::VP9_0
@ VP9_0
Definition: mythcodeccontext.h:109
MythCodecContext::CodecProfile
CodecProfile
Definition: mythcodeccontext.h:55
MythCodecContext::VP9_3
@ VP9_3
Definition: mythcodeccontext.h:112
MythCodecContext::H264High444
@ H264High444
Definition: mythcodeccontext.h:93
MythCodecContext::MPEG4Hybrid
@ MPEG4Hybrid
Definition: mythcodeccontext.h:75
MythCodecContext::H264Extended
@ H264Extended
Definition: mythcodeccontext.h:91
MTV_PUBLIC
#define MTV_PUBLIC
Definition: mythtvexp.h:15
MythCodecContext::RetrieveFrame
virtual bool RetrieveFrame(AVCodecContext *, MythVideoFrame *, AVFrame *)
Definition: mythcodeccontext.h:152
MythCodecContext::HEVCRext
@ HEVCRext
Definition: mythcodeccontext.h:99
MythCodecContext::MPEG2Simple
@ MPEG2Simple
Definition: mythcodeccontext.h:60
MythCodecContext::VC1Simple
@ VC1Simple
Definition: mythcodeccontext.h:103
MythCodecContext::MPEG4Simple
@ MPEG4Simple
Definition: mythcodeccontext.h:67
decoderbase.h
MythCodecContext::MPEG4AdvancedCore
@ MPEG4AdvancedCore
Definition: mythcodeccontext.h:79
MythCodecContext::HEVC
@ HEVC
Definition: mythcodeccontext.h:95
MythCodecContext::HEVCMain10HDRPlus
@ HEVCMain10HDRPlus
Definition: mythcodeccontext.h:101
MythCodecContext::MPEG2SNR
@ MPEG2SNR
Definition: mythcodeccontext.h:65
MythCodecContext::MPEG4ScaleableTexture
@ MPEG4ScaleableTexture
Definition: mythcodeccontext.h:72
MythCodecContext
Definition: mythcodeccontext.h:52
MythCodecContext::VP9_3HDRPlus
@ VP9_3HDRPlus
Definition: mythcodeccontext.h:116
MythCodecContext::HEVCMain
@ HEVCMain
Definition: mythcodeccontext.h:96
MythCodecContext::MPEG2422
@ MPEG2422
Definition: mythcodeccontext.h:62
MythCodecContext::MPEG4
@ MPEG4
Definition: mythcodeccontext.h:66
MythVideoFrame
Definition: mythframe.h:88
MythCodecContext::VC1Advanced
@ VC1Advanced
Definition: mythcodeccontext.h:106
MythCodecContext::MPEG4Core
@ MPEG4Core
Definition: mythcodeccontext.h:69
DecoderBase
Definition: decoderbase.h:120
MythCodecContext::MPEG4Main
@ MPEG4Main
Definition: mythcodeccontext.h:70
MythCodecContext::AV1
@ AV1
Definition: mythcodeccontext.h:117
MythInteropGPU
Definition: mythinteropgpu.h:20
MythCodecContext::H264Main
@ H264Main
Definition: mythcodeccontext.h:87