Skip to content

Commit

Permalink
libmythtv: Move decoder classes into a sub-folder
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-kendall committed Apr 29, 2019
1 parent d5d5c23 commit ba1766c
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 15 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
25 changes: 13 additions & 12 deletions mythtv/libs/libmythtv/libmythtv.pro
Expand Up @@ -28,13 +28,12 @@ contains(INCLUDEPATH, /usr/X11R6/include) {
DEPENDPATH += .
DEPENDPATH += ../libmyth ../libmyth/audio
DEPENDPATH += ../libmythbase
DEPENDPATH += ./mpeg ./channelscan ./visualisations
DEPENDPATH += ./mpeg ./channelscan ./visualisations ./mheg ./decoders
DEPENDPATH += ./recorders
DEPENDPATH += ./recorders/dvbdev
DEPENDPATH += ./recorders/rtp
DEPENDPATH += ./recorders/vbitext
DEPENDPATH += ./recorders/HLS
DEPENDPATH += ./mheg
DEPENDPATH += ../libmythlivemedia/BasicUsageEnvironment/include
DEPENDPATH += ../libmythlivemedia/BasicUsageEnvironment
DEPENDPATH += ../libmythlivemedia/groupsock/include
Expand Down Expand Up @@ -364,19 +363,21 @@ using_frontend {
SOURCES += textsubtitleparser.cpp xine_demux_sputext.cpp

# A/V decoders
HEADERS += decoderbase.h
HEADERS += nuppeldecoder.h avformatdecoder.h
HEADERS += privatedecoder.h
HEADERS += mythcodeccontext.h
SOURCES += decoderbase.cpp
SOURCES += nuppeldecoder.cpp avformatdecoder.cpp
SOURCES += privatedecoder.cpp
SOURCES += mythcodeccontext.cpp
HEADERS += decoders/decoderbase.h
HEADERS += decoders/nuppeldecoder.h
HEADERS += decoders/avformatdecoder.h
HEADERS += decoders/privatedecoder.h
HEADERS += decoders/mythcodeccontext.h
SOURCES += decoders/decoderbase.cpp
SOURCES += decoders/nuppeldecoder.cpp
SOURCES += decoders/avformatdecoder.cpp
SOURCES += decoders/privatedecoder.cpp
SOURCES += decoders/mythcodeccontext.cpp

using_openmax {
DEFINES += USING_OPENMAX
HEADERS += privatedecoder_omx.h
SOURCES += privatedecoder_omx.cpp
HEADERS += decoders/privatedecoder_omx.h
SOURCES += decoders/privatedecoder_omx.cpp
HEADERS += videoout_omx.h
SOURCES += videoout_omx.cpp
contains( HAVE_OPENMAX_BROADCOM, yes ) {
Expand Down
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/mythplayer.h
Expand Up @@ -21,7 +21,7 @@
#include "subtitlereader.h"
#include "cc608reader.h"
#include "cc708reader.h"
#include "decoderbase.h"
#include "decoders/decoderbase.h"
#include "deletemap.h"
#include "commbreakmap.h"
#include "audioplayer.h"
Expand Down
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/tv_play.h
Expand Up @@ -31,7 +31,7 @@ using namespace std;
#include "channelgroup.h"
#include "mythtimer.h"
#include "osd.h"
#include "decoderbase.h"
#include "decoders/decoderbase.h"

class QEvent;
class QKeyEvent;
Expand Down
2 changes: 1 addition & 1 deletion mythtv/programs/mythfrontend/globalsettings.cpp
Expand Up @@ -38,7 +38,7 @@
#include "mythuihelper.h"
#include "mythuidefines.h"
#include "langsettings.h"
#include "mythcodeccontext.h"
#include "decoders/mythcodeccontext.h"
#include "mythsorthelper.h"
#ifdef USE_OPENGL_PAINTER
#include "mythrender_opengl.h"
Expand Down

0 comments on commit ba1766c

Please sign in to comment.