[mythtv-commits] [MythTV/mythtv] 4dd8af: tidy: Initialize variables marked as uninitialized.

linuxdude42 noreply at github.com
Tue Nov 12 05:26:42 UTC 2019


  Branch: refs/heads/master
  Home:   https://github.com/MythTV/mythtv
  Commit: 4dd8af6f858b7ff2623b357c458cf0476ca113b8
      https://github.com/MythTV/mythtv/commit/4dd8af6f858b7ff2623b357c458cf0476ca113b8
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-10 (Sun, 10 Nov 2019)

  Changed paths:
    M mythplugins/mytharchive/mytharchive/videoselector.cpp
    M mythplugins/mytharchive/mytharchivehelper/main.cpp
    M mythplugins/mythzoneminder/mythzmserver/main.cpp
    M mythplugins/mythzoneminder/mythzmserver/zmserver.cpp
    M mythtv/external/qjsonwrapper/qjsonwrapper/Json.cpp
    M mythtv/libs/libmyth/mediamonitor-unix.cpp
    M mythtv/libs/libmyth/mythcontext.cpp
    M mythtv/libs/libmyth/omxcontext.cpp
    M mythtv/libs/libmythbase/filesysteminfo.cpp
    M mythtv/libs/libmythbase/logging.cpp
    M mythtv/libs/libmythbase/loggingserver.cpp
    M mythtv/libs/libmythbase/mythcdrom-linux.cpp
    M mythtv/libs/libmythbase/mythcommandlineparser.cpp
    M mythtv/libs/libmythbase/mythcoreutil.cpp
    M mythtv/libs/libmythbase/mythmiscutil.cpp
    M mythtv/libs/libmythbase/mythsystemunix.cpp
    M mythtv/libs/libmythbase/remotefile.cpp
    M mythtv/libs/libmythbase/signalhandling.cpp
    M mythtv/libs/libmythfreemheg/Programs.cpp
    M mythtv/libs/libmythmetadata/metaio.cpp
    M mythtv/libs/libmythprotoserver/requesthandler/fileserverhandler.cpp
    M mythtv/libs/libmythtv/AirPlay/mythraopconnection.cpp
    M mythtv/libs/libmythtv/DVD/dvdringbuffer.cpp
    M mythtv/libs/libmythtv/HLS/httplivestreambuffer.cpp
    M mythtv/libs/libmythtv/avformatdecoder.cpp
    M mythtv/libs/libmythtv/cardutil.cpp
    M mythtv/libs/libmythtv/cc608reader.cpp
    M mythtv/libs/libmythtv/diseqc.cpp
    M mythtv/libs/libmythtv/dsmcc.cpp
    M mythtv/libs/libmythtv/fileringbuffer.cpp
    M mythtv/libs/libmythtv/jitterometer.cpp
    M mythtv/libs/libmythtv/mpeg/mpegstreamdata.cpp
    M mythtv/libs/libmythtv/mythiowrapper.cpp
    M mythtv/libs/libmythtv/nuppeldecoder.cpp
    M mythtv/libs/libmythtv/previewgenerator.cpp
    M mythtv/libs/libmythtv/privatedecoder_crystalhd.cpp
    M mythtv/libs/libmythtv/recorders/HLS/HLSReader.cpp
    M mythtv/libs/libmythtv/recorders/NuppelVideoRecorder.cpp
    M mythtv/libs/libmythtv/recorders/analogsignalmonitor.cpp
    M mythtv/libs/libmythtv/recorders/dvbchannel.cpp
    M mythtv/libs/libmythtv/recorders/dvbdev/dvbci.cpp
    M mythtv/libs/libmythtv/recorders/dvbstreamhandler.cpp
    M mythtv/libs/libmythtv/recorders/hdhrsignalmonitor.cpp
    M mythtv/libs/libmythtv/recorders/hdhrstreamhandler.cpp
    M mythtv/libs/libmythtv/recorders/linuxfirewiredevice.cpp
    M mythtv/libs/libmythtv/recorders/mpegrecorder.cpp
    M mythtv/libs/libmythtv/recorders/v4lchannel.cpp
    M mythtv/libs/libmythtv/recorders/v4lrecorder.cpp
    M mythtv/libs/libmythtv/ringbuffer.cpp
    M mythtv/libs/libmythtv/v4l2util.cpp
    M mythtv/libs/libmythtv/videodisplayprofile.cpp
    M mythtv/libs/libmythtv/videosource.cpp
    M mythtv/libs/libmythtv/vsync.cpp
    M mythtv/libs/libmythui/jsmenu.cpp
    M mythtv/libs/libmythui/lirc.cpp
    M mythtv/libs/libmythui/mythuihelper.cpp
    M mythtv/libs/libmythupnp/httpserver.cpp
    M mythtv/libs/libmythupnp/msocketdevice_unix.cpp
    M mythtv/libs/libmythupnp/ssdp.cpp
    M mythtv/programs/mythbackend/mainserver.cpp
    M mythtv/programs/mythbackend/scheduler.cpp
    M mythtv/programs/mythcommflag/BorderDetector.cpp
    M mythtv/programs/mythcommflag/ClassicCommDetector.cpp
    M mythtv/programs/mythcommflag/CommDetector2.cpp
    M mythtv/programs/mythcommflag/HistogramAnalyzer.cpp
    M mythtv/programs/mythcommflag/PGMConverter.cpp
    M mythtv/programs/mythcommflag/PrePostRollFlagger.cpp
    M mythtv/programs/mythcommflag/TemplateFinder.cpp
    M mythtv/programs/mythcommflag/TemplateMatcher.cpp
    M mythtv/programs/mythtranscode/transcode.cpp

  Log Message:
  -----------
  tidy: Initialize variables marked as uninitialized.

The clang-tidy "member initialization" checker pointed out a number of
places where data structures were declared but not initialized.  Many
of these were followed by a call to zero out memory, but a number were
not.  Add explicit zero initialization of the variables when they are
declared, and remove any (now redundant) explicit calls to zero
memory.

https://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines-pro-type-member-init.html


  Commit: 448f3140763113e8671faa766390791ffbdae1c6
      https://github.com/MythTV/mythtv/commit/448f3140763113e8671faa766390791ffbdae1c6
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-10 (Sun, 10 Nov 2019)

  Changed paths:
    M mythtv/libs/libmythbase/mythdownloadmanager.cpp

  Log Message:
  -----------
  tidy: Convert a couple of instances of 'NULL' to 'nullptr'.

https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-nullptr.html


  Commit: 975f5f97e57b018c96de225f256e2c6d255acfa1
      https://github.com/MythTV/mythtv/commit/975f5f97e57b018c96de225f256e2c6d255acfa1
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-10 (Sun, 10 Nov 2019)

  Changed paths:
    M mythplugins/mytharchive/mytharchive/mythburn.cpp
    M mythplugins/mythgame/mythgame/gamehandler.cpp
    M mythplugins/mythgame/mythgame/gameui.cpp
    M mythplugins/mythgame/mythgame/romedit.cpp
    M mythplugins/mythmusic/mythmusic/cdrip.cpp
    M mythplugins/mythmusic/mythmusic/decoderhandler.cpp
    M mythplugins/mythmusic/mythmusic/editmetadata.cpp
    M mythplugins/mythmusic/mythmusic/importmusic.cpp
    M mythplugins/mythmusic/mythmusic/lyricsview.cpp
    M mythplugins/mythmusic/mythmusic/musiccommon.cpp
    M mythplugins/mythmusic/mythmusic/musicplayer.cpp
    M mythplugins/mythmusic/mythmusic/playlisteditorview.cpp
    M mythplugins/mythmusic/mythmusic/searchview.cpp
    M mythplugins/mythmusic/mythmusic/smartplaylist.cpp
    M mythplugins/mythmusic/mythmusic/streamview.cpp
    M mythplugins/mythnetvision/mythnetvision/netbase.cpp
    M mythplugins/mythnetvision/mythnetvision/netsearch.cpp
    M mythplugins/mythnetvision/mythnetvision/nettree.cpp
    M mythplugins/mythnetvision/mythnetvision/rsseditor.cpp
    M mythplugins/mythnews/mythnews/mythnews.cpp
    M mythplugins/mythnews/mythnews/newssite.cpp
    M mythplugins/mythweather/mythweather/weatherScreen.cpp
    M mythplugins/mythweather/mythweather/weatherSetup.cpp
    M mythplugins/mythzoneminder/mythzoneminder/zmclient.cpp
    M mythplugins/mythzoneminder/mythzoneminder/zmliveplayer.cpp
    M mythplugins/mythzoneminder/mythzoneminder/zmminiplayer.cpp

  Log Message:
  -----------
  tidy: Use dynamic_cast when casting to a derived class. (mythplugins)

The clang-tidy "static cast downcast" checker pointed out a number of
places where data structures were statically cast from a base class to
a derived class.  Many of these places do check the type before
casting, but to be completely safe they should by dynamically cast and
the casted value tested against the nullptr.

https://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines-pro-type-static-cast-downcast.html


  Commit: da80277cca9118d0f8b70cbe924a3e9f16a73041
      https://github.com/MythTV/mythtv/commit/da80277cca9118d0f8b70cbe924a3e9f16a73041
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-10 (Sun, 10 Nov 2019)

  Changed paths:
    M mythplugins/mytharchive/mytharchive/selectdestination.cpp
    M mythplugins/mytharchive/mytharchive/selectdestination.h
    M mythplugins/mythmusic/mythmusic/musiccommon.cpp
    M mythplugins/mythmusic/mythmusic/musiccommon.h
    M mythplugins/mythmusic/mythmusic/visualize.h
    M mythplugins/mythzoneminder/mythzmserver/zmserver.cpp
    M mythplugins/mythzoneminder/mythzmserver/zmserver.h
    M mythtv/libs/libmyth/audio/audiooutputbase.cpp
    M mythtv/libs/libmyth/audio/audiooutputbase.h
    M mythtv/libs/libmyth/audio/audiooutputnull.cpp
    M mythtv/libs/libmyth/audio/audiooutputnull.h
    M mythtv/libs/libmyth/audio/audiooutputpulse.cpp
    M mythtv/libs/libmyth/audio/audiooutputpulse.h
    M mythtv/libs/libmyth/audio/spdifencoder.cpp
    M mythtv/libs/libmyth/audio/spdifencoder.h
    M mythtv/libs/libmythbase/logging.cpp
    M mythtv/libs/libmythbase/logging.h
    M mythtv/libs/libmythbase/mythsystemlegacy.cpp
    M mythtv/libs/libmythbase/mythsystemlegacy.h
    M mythtv/libs/libmythbase/mythsystemunix.cpp
    M mythtv/libs/libmythbase/mythsystemunix.h
    M mythtv/libs/libmythbase/unzip.cpp
    M mythtv/libs/libmythbase/unzip_p.h
    M mythtv/libs/libmythmetadata/metaio.cpp
    M mythtv/libs/libmythmetadata/metaio.h
    M mythtv/libs/libmythmetadata/parentalcontrols.h
    M mythtv/libs/libmythmetadata/videometadata.cpp
    M mythtv/libs/libmythtv/Bluray/bdringbuffer.h
    M mythtv/libs/libmythtv/DVD/dvdringbuffer.cpp
    M mythtv/libs/libmythtv/DVD/dvdringbuffer.h
    M mythtv/libs/libmythtv/HLS/httplivestreambuffer.cpp
    M mythtv/libs/libmythtv/avformatdecoder.cpp
    M mythtv/libs/libmythtv/avformatdecoder.h
    M mythtv/libs/libmythtv/avformatwriter.cpp
    M mythtv/libs/libmythtv/avformatwriter.h
    M mythtv/libs/libmythtv/cc608decoder.cpp
    M mythtv/libs/libmythtv/cc608decoder.h
    M mythtv/libs/libmythtv/cc608reader.cpp
    M mythtv/libs/libmythtv/cc608reader.h
    M mythtv/libs/libmythtv/channelscan/channelscan_sm.h
    M mythtv/libs/libmythtv/frequencytables.cpp
    M mythtv/libs/libmythtv/frequencytables.h
    M mythtv/libs/libmythtv/jitterometer.cpp
    M mythtv/libs/libmythtv/jitterometer.h
    M mythtv/libs/libmythtv/mpeg/H264Parser.cpp
    M mythtv/libs/libmythtv/mpeg/H264Parser.h
    M mythtv/libs/libmythtv/mpeg/mpegstreamdata.cpp
    M mythtv/libs/libmythtv/mpeg/mpegstreamdata.h
    M mythtv/libs/libmythtv/recorders/DeviceReadBuffer.cpp
    M mythtv/libs/libmythtv/recorders/DeviceReadBuffer.h
    M mythtv/libs/libmythtv/recorders/ExternalStreamHandler.h
    M mythtv/libs/libmythtv/recorders/HLS/HLSStream.cpp
    M mythtv/libs/libmythtv/recorders/HLS/HLSStream.h
    M mythtv/libs/libmythtv/recorders/NuppelVideoRecorder.cpp
    M mythtv/libs/libmythtv/recorders/NuppelVideoRecorder.h
    M mythtv/libs/libmythtv/recorders/RTjpegN.cpp
    M mythtv/libs/libmythtv/recorders/RTjpegN.h
    M mythtv/libs/libmythtv/recorders/dtvrecorder.cpp
    M mythtv/libs/libmythtv/recorders/dtvrecorder.h
    M mythtv/libs/libmythtv/recorders/dvbdev/dvbci.cpp
    M mythtv/libs/libmythtv/recorders/dvbdev/dvbci.h
    M mythtv/libs/libmythtv/recorders/iptvstreamhandler.cpp
    M mythtv/libs/libmythtv/recorders/iptvstreamhandler.h
    M mythtv/libs/libmythtv/recorders/v4l2encstreamhandler.h
    M mythtv/libs/libmythtv/teletextreader.cpp
    M mythtv/libs/libmythtv/teletextreader.h
    M mythtv/libs/libmythtv/transporteditor.cpp
    M mythtv/libs/libmythtv/transporteditor.h
    M mythtv/libs/libmythtv/vbi608extractor.cpp
    M mythtv/libs/libmythtv/vbi608extractor.h
    M mythtv/libs/libmythui/mythpainter.h
    M mythtv/libs/libmythui/mythuiguidegrid.cpp
    M mythtv/libs/libmythui/mythuiguidegrid.h
    M mythtv/libs/libmythui/mythuihelper.cpp
    M mythtv/libs/libmythupnp/mmulticastsocketdevice.h
    M mythtv/libs/libmythupnp/ssdp.h

  Log Message:
  -----------
  tidy: Initialize member fields in constructor. (libs)

The clang-tidy "member initialization" checker pointed out a number of
classes where member variables were not initialized in the
constructor.  Add initializers for these member variables.

(This test run did not look for uninitialized arrays.)

https://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines-pro-type-member-init.html


  Commit: c08cd86fbb7eb6230f6b9705033c94a97c49a0ba
      https://github.com/MythTV/mythtv/commit/c08cd86fbb7eb6230f6b9705033c94a97c49a0ba
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-10 (Sun, 10 Nov 2019)

  Changed paths:
    M mythtv/libs/libmyth/backendselect.cpp
    M mythtv/libs/libmyth/mythcontext.cpp
    M mythtv/libs/libmyth/mythmediamonitor.cpp
    M mythtv/libs/libmyth/standardsettings.cpp
    M mythtv/libs/libmyth/storagegroupeditor.cpp
    M mythtv/libs/libmythbase/housekeeper.cpp
    M mythtv/libs/libmythbase/mythdownloadmanager.cpp
    M mythtv/libs/libmythmetadata/lyricsdata.cpp
    M mythtv/libs/libmythmetadata/metadatafactory.cpp
    M mythtv/libs/libmythmetadata/metaioid3.cpp
    M mythtv/libs/libmythmetadata/mythuiimageresults.cpp
    M mythtv/libs/libmythmetadata/mythuimetadataresults.cpp
    M mythtv/libs/libmythtv/AirPlay/mythairplayserver.cpp
    M mythtv/libs/libmythtv/AirPlay/mythraopconnection.cpp
    M mythtv/libs/libmythtv/avformatdecoder.cpp
    M mythtv/libs/libmythtv/channelscan/scanmonitor.cpp
    M mythtv/libs/libmythtv/diseqcsettings.cpp
    M mythtv/libs/libmythtv/jobqueue.cpp
    M mythtv/libs/libmythtv/mythplayer.cpp
    M mythtv/libs/libmythtv/mythsystemevent.cpp
    M mythtv/libs/libmythtv/osd.cpp
    M mythtv/libs/libmythtv/previewgenerator.cpp
    M mythtv/libs/libmythtv/previewgeneratorqueue.cpp
    M mythtv/libs/libmythtv/recorders/channelbase.cpp
    M mythtv/libs/libmythtv/recorders/dvbdev/dvbci.cpp
    M mythtv/libs/libmythtv/tv_play.cpp
    M mythtv/libs/libmythtv/vaapicontext.cpp
    M mythtv/libs/libmythtv/videoout_opengl.cpp
    M mythtv/libs/libmythtv/videosource.cpp
    M mythtv/libs/libmythtv/visualisations/videovisualgoom.cpp

  Log Message:
  -----------
  tidy: Use dynamic_cast when casting to a derived class. (libs1)

The clang-tidy "static cast downcast" checker pointed out a number of
places where data structures were statically cast from a base class to
a derived class.  Many of these places do check the type before
casting, but to be completely safe they should by dynamically cast and
the casted value tested against the nullptr.

https://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines-pro-type-static-cast-downcast.html


  Commit: 4a9b5f047f8065d9b59c9aef7507791236fda819
      https://github.com/MythTV/mythtv/commit/4a9b5f047f8065d9b59c9aef7507791236fda819
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-10 (Sun, 10 Nov 2019)

  Changed paths:
    M mythtv/libs/libmythtv/mythplayer.cpp
    M mythtv/libs/libmythtv/mythplayer.h

  Log Message:
  -----------
  tidy: Initialize member fields in constructor. (mythplayer.cpp)

The clang-tidy "member initialization" checker pointed out a number of
classes where member variables were not initialized in the
constructor.  Add initializers for these member variables.

https://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines-pro-type-member-init.html


  Commit: 1388e30574db314dc0db22be9791de3397e811e8
      https://github.com/MythTV/mythtv/commit/1388e30574db314dc0db22be9791de3397e811e8
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-10 (Sun, 10 Nov 2019)

  Changed paths:
    M mythtv/libs/libmythtv/tv_play.cpp
    M mythtv/libs/libmythtv/tv_play.h

  Log Message:
  -----------
  tidy: Initialize member fields in constructor. (tv_play.cpp)

The clang-tidy "member initialization" checker pointed out a number of
classes where member variables were not initialized in the
constructor.  Add initializers for these member variables.

https://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines-pro-type-member-init.html


  Commit: 91b82830a8a7d93acc566878bb890e4e72ae5802
      https://github.com/MythTV/mythtv/commit/91b82830a8a7d93acc566878bb890e4e72ae5802
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-10 (Sun, 10 Nov 2019)

  Changed paths:
    M mythtv/programs/mythcommflag/BorderDetector.cpp
    M mythtv/programs/mythcommflag/BorderDetector.h
    M mythtv/programs/mythcommflag/CannyEdgeDetector.cpp
    M mythtv/programs/mythcommflag/CannyEdgeDetector.h
    M mythtv/programs/mythcommflag/Histogram.cpp
    M mythtv/programs/mythcommflag/Histogram.h
    M mythtv/programs/mythcommflag/HistogramAnalyzer.cpp
    M mythtv/programs/mythcommflag/HistogramAnalyzer.h
    M mythtv/programs/mythcommflag/PGMConverter.cpp
    M mythtv/programs/mythcommflag/PGMConverter.h
    M mythtv/programs/mythcommflag/TemplateFinder.cpp
    M mythtv/programs/mythcommflag/TemplateFinder.h
    M mythtv/programs/mythcommflag/TemplateMatcher.cpp
    M mythtv/programs/mythcommflag/TemplateMatcher.h
    M mythtv/programs/mythfrontend/guidegrid.cpp
    M mythtv/programs/mythfrontend/guidegrid.h
    M mythtv/programs/mythlcdserver/lcdprocclient.cpp
    M mythtv/programs/mythlcdserver/lcdprocclient.h
    M mythtv/programs/mythtranscode/audioreencodebuffer.h
    M mythtv/programs/mythtranscode/mpeg2fix.cpp
    M mythtv/programs/mythtranscode/mpeg2fix.h
    M mythtv/programs/mythutil/musicmetautils.cpp

  Log Message:
  -----------
  tidy: Initialize member fields in constructor. (programs)

The clang-tidy "member initialization" checker pointed out a number of
classes where member variables were not initialized in the
constructor.  Add initializers for these member variables.

https://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines-pro-type-member-init.html


  Commit: f02dfafb46dd9fe99578df44620f5b4b7eadb0be
      https://github.com/MythTV/mythtv/commit/f02dfafb46dd9fe99578df44620f5b4b7eadb0be
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-10 (Sun, 10 Nov 2019)

  Changed paths:
    M mythtv/libs/libmythtv/mpeg/H264Parser.cpp
    M mythtv/libs/libmythtv/mpeg/mpegstreamdata.cpp

  Log Message:
  -----------
  tidy: Change literal suffixes to uppercase.

The clang-tidy "uppercase literal" readability checker pointed out a
few places where lowercase literals had crept into the code.  Change
these to uppercase for readability.

https://clang.llvm.org/extra/clang-tidy/checks/readability-uppercase-literal-suffix.html


  Commit: eaeb9cceaa15ecd487ea7a2846db77d5a96ce39f
      https://github.com/MythTV/mythtv/commit/eaeb9cceaa15ecd487ea7a2846db77d5a96ce39f
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-10 (Sun, 10 Nov 2019)

  Changed paths:
    M mythplugins/mythmusic/mythmusic/playlistcontainer.cpp
    M mythplugins/mythmusic/mythmusic/playlistcontainer.h
    M mythplugins/mythmusic/mythmusic/smartplaylist.cpp
    M mythplugins/mythmusic/mythmusic/smartplaylist.h
    M mythplugins/mythweather/mythweather/weatherScreen.cpp
    M mythplugins/mythweather/mythweather/weatherScreen.h
    M mythtv/libs/libmythbase/housekeeper.cpp
    M mythtv/libs/libmythbase/housekeeper.h
    M mythtv/libs/libmythbase/mthreadpool.cpp
    M mythtv/libs/libmythbase/mthreadpool.h
    M mythtv/libs/libmythbase/mythcommandlineparser.cpp
    M mythtv/libs/libmythbase/mythcommandlineparser.h
    M mythtv/libs/libmythbase/mythsystem.cpp
    M mythtv/libs/libmythbase/mythsystem.h
    M mythtv/libs/libmythprotoserver/requesthandler/fileserverhandler.cpp
    M mythtv/libs/libmythprotoserver/requesthandler/fileserverhandler.h
    M mythtv/libs/libmythtv/channelutil.cpp
    M mythtv/libs/libmythtv/channelutil.h
    M mythtv/libs/libmythtv/dtvmultiplex.cpp
    M mythtv/libs/libmythtv/dtvmultiplex.h
    M mythtv/libs/libmythtv/inputinfo.cpp
    M mythtv/libs/libmythtv/inputinfo.h
    M mythtv/libs/libmythtv/interactivetv.cpp
    M mythtv/libs/libmythtv/interactivetv.h
    M mythtv/libs/libmythtv/recorders/dtvchannel.cpp
    M mythtv/libs/libmythtv/recorders/dtvchannel.h
    M mythtv/libs/libmythtv/recordingprofile.cpp
    M mythtv/libs/libmythtv/scanwizard.cpp
    M mythtv/libs/libmythtv/scanwizard.h
    M mythtv/libs/libmythtv/tv_play.cpp
    M mythtv/libs/libmythtv/tv_play.h
    M mythtv/libs/libmythtv/videodisplayprofile.cpp
    M mythtv/libs/libmythtv/videodisplayprofile.h
    M mythtv/libs/libmythtv/videosource.cpp
    M mythtv/libs/libmythtv/videosource.h
    M mythtv/libs/libmythui/mythscreentype.cpp
    M mythtv/libs/libmythui/mythscreentype.h
    M mythtv/libs/libmythui/mythuifilebrowser.cpp
    M mythtv/libs/libmythui/mythuifilebrowser.h
    M mythtv/libs/libmythupnp/servicehost.cpp
    M mythtv/libs/libmythupnp/servicehost.h
    M mythtv/libs/libmythupnp/upnpcds.cpp
    M mythtv/libs/libmythupnp/upnpcds.h
    M mythtv/programs/mythbackend/encoderlink.cpp
    M mythtv/programs/mythbackend/encoderlink.h
    M mythtv/programs/mythbackend/upnpcdsmusic.cpp
    M mythtv/programs/mythbackend/upnpcdsmusic.h
    M mythtv/programs/mythbackend/upnpcdstv.cpp
    M mythtv/programs/mythbackend/upnpcdstv.h
    M mythtv/programs/mythbackend/upnpcdsvideo.cpp
    M mythtv/programs/mythbackend/upnpcdsvideo.h
    M mythtv/programs/mythcommflag/BlankFrameDetector.cpp
    M mythtv/programs/mythcommflag/BlankFrameDetector.h
    M mythtv/programs/mythfrontend/gallerythumbview.cpp
    M mythtv/programs/mythfrontend/gallerytransitions.cpp
    M mythtv/programs/mythfrontend/gallerytransitions.h
    M mythtv/programs/mythfrontend/scheduleeditor.cpp
    M mythtv/programs/mythfrontend/scheduleeditor.h
    M mythtv/programs/mythfrontend/videofileassoc.cpp
    M mythtv/programs/mythfrontend/videofileassoc.h
    M mythtv/programs/mythlcdserver/lcdprocclient.cpp
    M mythtv/programs/mythlcdserver/lcdprocclient.h
    M mythtv/programs/mythtranscode/main.cpp
    M mythtv/programs/mythtranscode/mpeg2fix.cpp
    M mythtv/programs/mythtranscode/mpeg2fix.h

  Log Message:
  -----------
  tidy: Eliminate unnecessary copying of objects.

The clang-tidy "unnecessary value param" check pointed out a number of
places where objects were passed by copying when they could be passed
by const reference.  The vast majority of these fixes convert a
QString object into a const QString& reference.  There are also a
number of other objects that get passed by reference instead of
copying.

These changes resulted in the removal of a number of calls to
'::std::move' that were added six months ago.  They essentially
propagate the use of references to a point where the variables are
still in use and can no longer be moved.

https://clang.llvm.org/extra/clang-tidy/checks/performance-unnecessary-value-param.html
https://clang.llvm.org/extra/clang-tidy/checks/modernize-pass-by-value.html


  Commit: 6a1ae5b8629a4d1316c89ec9ef3f7eef596891bb
      https://github.com/MythTV/mythtv/commit/6a1ae5b8629a4d1316c89ec9ef3f7eef596891bb
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-10 (Sun, 10 Nov 2019)

  Changed paths:
    M mythplugins/mythgame/mythgame/gameui.cpp
    M mythplugins/mythmusic/mythmusic/encoder.cpp
    M mythplugins/mythmusic/mythmusic/encoder.h
    M mythplugins/mythnews/mythnews/newsarticle.cpp
    M mythplugins/mythnews/mythnews/newsarticle.h
    M mythplugins/mythnews/mythnews/newssite.cpp
    M mythplugins/mythnews/mythnews/newssite.h

  Log Message:
  -----------
  tidy: Pass constructor arguments by value and use std::move. (mythplugins)

The clang-tidy "pass by value" modernization check pointed out a
number of places where constructors are declared to take a const
object, and the the only use of that object is to copy it to a newly
initialize local variable.  Passing a non-const and using the
std::move function allows the compiler to choose the best way to
construct the local copy of the value.  Changes made by the clang-tidy
program and cleaned up by hand.

https://clang.llvm.org/extra/clang-tidy/checks/modernize-pass-by-value.html


  Commit: a0df6a6adc5539ced85197dc45a87b9a3bcf8429
      https://github.com/MythTV/mythtv/commit/a0df6a6adc5539ced85197dc45a87b9a3bcf8429
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-10 (Sun, 10 Nov 2019)

  Changed paths:
    M mythtv/programs/mythavtest/main.cpp
    M mythtv/programs/mythcommflag/ClassicCommDetector.cpp
    M mythtv/programs/mythcommflag/ClassicCommDetector.h
    M mythtv/programs/mythcommflag/CommDetector2.cpp
    M mythtv/programs/mythcommflag/CommDetector2.h
    M mythtv/programs/mythexternrecorder/MythExternRecApp.cpp
    M mythtv/programs/mythexternrecorder/MythExternRecApp.h
    M mythtv/programs/mythfilerecorder/mythfilerecorder.cpp
    M mythtv/programs/mythfilerecorder/mythfilerecorder.h
    M mythtv/programs/mythfrontend/action.cpp
    M mythtv/programs/mythfrontend/action.h
    M mythtv/programs/mythfrontend/globalsettings.cpp
    M mythtv/programs/mythfrontend/globalsettings.h
    M mythtv/programs/mythfrontend/guidegrid.cpp
    M mythtv/programs/mythfrontend/guidegrid.h
    M mythtv/programs/mythfrontend/keybindings.cpp
    M mythtv/programs/mythfrontend/keybindings.h
    M mythtv/programs/mythfrontend/prevreclist.cpp
    M mythtv/programs/mythfrontend/prevreclist.h
    M mythtv/programs/mythfrontend/proglist.cpp
    M mythtv/programs/mythfrontend/proglist.h
    M mythtv/programs/mythfrontend/themechooser.cpp
    M mythtv/programs/mythfrontend/videofileassoc.cpp
    M mythtv/programs/mythfrontend/videoplayercommand.cpp
    M mythtv/programs/mythtv-setup/importicons.cpp
    M mythtv/programs/mythtv-setup/importicons.h

  Log Message:
  -----------
  tidy: Pass constructor arguments by value and use std::move. (programs)

The clang-tidy "pass by value" modernization check pointed out a
number of places where constructors are declared to take a const
object, and the the only use of that object is to copy it to a newly
initialize local variable.  Passing a non-const and using the
std::move function allows the compiler to choose the best way to
construct the local copy of the value.  Changes made by the clang-tidy
program and cleaned up by hand.

https://clang.llvm.org/extra/clang-tidy/checks/modernize-pass-by-value.html


  Commit: 1a8097e3249a8ed2ea051056da08a35993bdc953
      https://github.com/MythTV/mythtv/commit/1a8097e3249a8ed2ea051056da08a35993bdc953
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-10 (Sun, 10 Nov 2019)

  Changed paths:
    M mythtv/libs/libmyth/audio/audiosettings.cpp
    M mythtv/libs/libmyth/audio/audiosettings.h
    M mythtv/libs/libmyth/mythcontext.cpp
    M mythtv/libs/libmyth/mythcontext.h
    M mythtv/libs/libmyth/mythrssmanager.cpp
    M mythtv/libs/libmyth/mythrssmanager.h
    M mythtv/libs/libmyth/programinfo.cpp
    M mythtv/libs/libmyth/programinfo.h
    M mythtv/libs/libmyth/schemawizard.cpp
    M mythtv/libs/libmyth/schemawizard.h
    M mythtv/libs/libmyth/standardsettings.cpp
    M mythtv/libs/libmyth/standardsettings.h
    M mythtv/libs/libmyth/storagegroupeditor.cpp
    M mythtv/libs/libmyth/storagegroupeditor.h
    M mythtv/libs/libmythbase/mythcorecontext.cpp
    M mythtv/libs/libmythbase/mythdbcon.cpp
    M mythtv/libs/libmythbase/mythdbcon.h
    M mythtv/libs/libmythbase/mythsorthelper.cpp
    M mythtv/libs/libmythbase/mythsorthelper.h
    M mythtv/libs/libmythbase/mythstorage.cpp
    M mythtv/libs/libmythbase/mythstorage.h
    M mythtv/libs/libmythbase/remotefile.cpp
    M mythtv/libs/libmythbase/remotefile.h
    M mythtv/libs/libmythbase/storagegroup.cpp
    M mythtv/libs/libmythbase/storagegroup.h
    M mythtv/libs/libmythmetadata/dbaccess.cpp
    M mythtv/libs/libmythmetadata/imagemanager.cpp
    M mythtv/libs/libmythmetadata/metadatacommon.cpp
    M mythtv/libs/libmythmetadata/metadatacommon.h
    M mythtv/libs/libmythmetadata/metadatagrabber.cpp
    M mythtv/libs/libmythmetadata/metadatagrabber.h
    M mythtv/libs/libmythmetadata/mythuiimageresults.cpp
    M mythtv/libs/libmythmetadata/mythuiimageresults.h
    M mythtv/libs/libmythmetadata/videometadata.cpp
    M mythtv/libs/libmythmetadata/videometadatalistmanager.cpp
    M mythtv/libs/libmythmetadata/videometadatalistmanager.h
    M mythtv/libs/libmythui/DisplayResScreen.cpp
    M mythtv/libs/libmythui/DisplayResScreen.h
    M mythtv/libs/libmythui/lirc.cpp
    M mythtv/libs/libmythui/lirc.h
    M mythtv/libs/libmythui/mythdialogbox.cpp
    M mythtv/libs/libmythui/mythdialogbox.h
    M mythtv/libs/libmythui/mythimage.cpp
    M mythtv/libs/libmythui/mythimage.h
    M mythtv/libs/libmythui/mythuibuttonlist.cpp
    M mythtv/libs/libmythui/mythuibuttonlist.h
    M mythtv/libs/libmythui/mythuiimage.cpp
    M mythtv/libs/libmythupnp/eventing.cpp
    M mythtv/libs/libmythupnp/eventing.h
    M mythtv/libs/libmythupnp/soapclient.cpp
    M mythtv/libs/libmythupnp/soapclient.h

  Log Message:
  -----------
  tidy: Pass constructor arguments by value and use std::move. (libs)

The clang-tidy "pass by value" modernization check pointed out a
number of places where constructors are declared to take a const
object, and the the only use of that object is to copy it to a newly
initialize local variable.  Passing a non-const and using the
std::move function allows the compiler to choose the best way to
construct the local copy of the value.  Changes made by the clang-tidy
program and cleaned up by hand.

https://clang.llvm.org/extra/clang-tidy/checks/modernize-pass-by-value.html


  Commit: 17a870c6adabe03b03805372f077d3607214b327
      https://github.com/MythTV/mythtv/commit/17a870c6adabe03b03805372f077d3607214b327
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-10 (Sun, 10 Nov 2019)

  Changed paths:
    M mythtv/filters/adjust/filter_adjust.c

  Log Message:
  -----------
  tidy: Don't implicitly promote float to double.

The clang-tidy "type promotion" checker pointed out an instance where
a float was converted to double.  Use the float version of the
function instead.

https://clang.llvm.org/extra/clang-tidy/checks/performance-type-promotion-in-math-fn.html


  Commit: a7b7c2095d138ddd01be8952cc02f89f005743fb
      https://github.com/MythTV/mythtv/commit/a7b7c2095d138ddd01be8952cc02f89f005743fb
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-10 (Sun, 10 Nov 2019)

  Changed paths:
    M mythplugins/mytharchive/mytharchive/logviewer.h
    M mythplugins/mytharchive/mytharchive/mythburn.h
    M mythplugins/mytharchive/mytharchive/themeselector.h
    M mythplugins/mytharchive/mytharchive/thumbfinder.h
    M mythplugins/mytharchive/mytharchive/videoselector.h
    M mythplugins/mytharchive/mytharchivehelper/main.cpp
    M mythplugins/mythbrowser/mythbrowser/bookmarkmanager.h
    M mythplugins/mythgame/mythgame/gamehandler.h
    M mythplugins/mythgame/mythgame/gamescan.h
    M mythplugins/mythgame/mythgame/gameui.cpp
    M mythplugins/mythgame/mythgame/gameui.h
    M mythplugins/mythgame/mythgame/rominfo.h
    M mythplugins/mythmusic/mythmusic/bumpscope.h
    M mythplugins/mythmusic/mythmusic/editmetadata.h
    M mythplugins/mythmusic/mythmusic/generalsettings.h
    M mythplugins/mythmusic/mythmusic/importmusic.h
    M mythplugins/mythmusic/mythmusic/lameencoder.h
    M mythplugins/mythmusic/mythmusic/musiccommon.h
    M mythplugins/mythmusic/mythmusic/musicdata.h
    M mythplugins/mythmusic/mythmusic/musicplayer.h
    M mythplugins/mythmusic/mythmusic/playlist.h
    M mythplugins/mythmusic/mythmusic/playlisteditorview.h
    M mythplugins/mythmusic/mythmusic/searchview.h
    M mythplugins/mythmusic/mythmusic/smartplaylist.h
    M mythplugins/mythmusic/mythmusic/streamview.h
    M mythplugins/mythmusic/mythmusic/synaesthesia.h
    M mythplugins/mythmusic/mythmusic/visualize.h
    M mythplugins/mythmusic/mythmusic/visualizerview.h
    M mythplugins/mythnetvision/mythnetvision/netbase.h
    M mythplugins/mythnetvision/mythnetvision/nettree.h
    M mythplugins/mythnetvision/mythnetvision/rsseditor.cpp
    M mythplugins/mythnetvision/mythnetvision/rsseditor.h
    M mythplugins/mythnews/mythnews/mythnews.h
    M mythplugins/mythzoneminder/mythzmserver/zmserver.h
    M mythplugins/mythzoneminder/mythzoneminder/zmevents.h

  Log Message:
  -----------
  tidy: Convert member functions to static if they don't use 'this'. (plugins)

The clang-tidy readability "convert to static" checker pointed out a
large number of places where a member function doesn't reference the
current object, and thus doesn't need to be provided with a 'this'
variable that points to an object.  These function should all be
declared as static, instead of as const.  Declaring a function as
'const' is a statement that it won't modify the object, but it still
possible to affect it.  A function declared 'static' doesn't receive a
pointer to the object and so can't possibly modify it.  Changes made
by the clang-tidy program.

https://clang.llvm.https://clang.llvm.org/extra/clang-tidy/checks/readability-convert-member-functions-to-static.html


  Commit: ce7571bb31f44404791e1bafddca2261683c2196
      https://github.com/MythTV/mythtv/commit/ce7571bb31f44404791e1bafddca2261683c2196
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythtv/programs/mythbackend/autoexpire.h
    M mythtv/programs/mythbackend/backendhousekeeper.h
    M mythtv/programs/mythbackend/httpstatus.h
    M mythtv/programs/mythbackend/internetContent.h
    M mythtv/programs/mythbackend/mainserver.h
    M mythtv/programs/mythbackend/scheduler.h
    M mythtv/programs/mythbackend/upnpcdsmusic.h
    M mythtv/programs/mythbackend/upnpcdstv.h
    M mythtv/programs/mythbackend/upnpcdsvideo.h
    M mythtv/programs/mythcommflag/BlankFrameDetector.h
    M mythtv/programs/mythcommflag/ClassicCommDetector.h
    M mythtv/programs/mythcommflag/CommDetectorFactory.h
    M mythtv/programs/mythfilldatabase/channeldata.cpp
    M mythtv/programs/mythfilldatabase/channeldata.h
    M mythtv/programs/mythfilldatabase/xmltvparser.h
    M mythtv/programs/mythfrontend/audiogeneralsettings.h
    M mythtv/programs/mythfrontend/channelrecpriority.h
    M mythtv/programs/mythfrontend/exitprompt.h
    M mythtv/programs/mythfrontend/gallerythumbview.h
    M mythtv/programs/mythfrontend/guidegrid.h
    M mythtv/programs/mythfrontend/mythcontrols.h
    M mythtv/programs/mythfrontend/mythfexml.h
    M mythtv/programs/mythfrontend/networkcontrol.cpp
    M mythtv/programs/mythfrontend/networkcontrol.h
    M mythtv/programs/mythfrontend/playbackbox.cpp
    M mythtv/programs/mythfrontend/playbackbox.h
    M mythtv/programs/mythfrontend/progdetails.h
    M mythtv/programs/mythfrontend/proglist.cpp
    M mythtv/programs/mythfrontend/proglist.h
    M mythtv/programs/mythfrontend/schedulecommon.cpp
    M mythtv/programs/mythfrontend/schedulecommon.h
    M mythtv/programs/mythfrontend/scheduleeditor.h
    M mythtv/programs/mythfrontend/themechooser.h
    M mythtv/programs/mythfrontend/upnpscanner.h
    M mythtv/programs/mythfrontend/videodlg.cpp
    M mythtv/programs/mythfrontend/videodlg.h
    M mythtv/programs/mythfrontend/videofileassoc.cpp
    M mythtv/programs/mythfrontend/videolist.cpp
    M mythtv/programs/mythlcdserver/lcdserver.h
    M mythtv/programs/mythmetadatalookup/lookup.h
    M mythtv/programs/mythscreenwizard/screenwizard.h
    M mythtv/programs/mythtranscode/mpeg2fix.h
    M mythtv/programs/mythtv-setup/exitprompt.h
    M mythtv/programs/mythtv-setup/importicons.h
    M mythtv/programs/mythtv-setup/startprompt.h
    M mythtv/programs/mythwelcome/welcomedialog.h

  Log Message:
  -----------
  tidy: Convert member functions to static if they don't use 'this'. (programs)

The clang-tidy readability "convert to static" checker pointed out a
large number of places where a member function doesn't reference the
current object, and thus doesn't need to be provided with a 'this'
variable that points to an object.  These function should all be
declared as static, instead of as const.  Declaring a function as
'const' is a statement that it won't modify the object, but it still
possible to affect it.  A function declared 'static' doesn't receive a
pointer to the object and so can't possibly modify it.  Changes made
by the clang-tidy program.

https://clang.llvm.https://clang.llvm.org/extra/clang-tidy/checks/readability-convert-member-functions-to-static.html


  Commit: 7258cf98cdf64878b103845f7ab5809128f5594e
      https://github.com/MythTV/mythtv/commit/7258cf98cdf64878b103845f7ab5809128f5594e
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythtv/libs/libmyth/audio/audiooutputalsa.h
    M mythtv/libs/libmyth/audio/audiooutputbase.h
    M mythtv/libs/libmyth/audio/audiooutputdigitalencoder.h
    M mythtv/libs/libmyth/audio/audiooutputgraph.cpp
    M mythtv/libs/libmyth/audio/audiooutputjack.h
    M mythtv/libs/libmyth/audio/audiooutputsettings.h
    M mythtv/libs/libmyth/audio/eldutils.h
    M mythtv/libs/libmyth/mythcontext.cpp
    M mythtv/libs/libmyth/mythmediamonitor.h
    M mythtv/libs/libmyth/mythrssmanager.cpp
    M mythtv/libs/libmyth/mythrssmanager.h
    M mythtv/libs/libmyth/programinfo.cpp
    M mythtv/libs/libmyth/programinfo.h
    M mythtv/libs/libmyth/rssparse.cpp
    M mythtv/libs/libmyth/rssparse.h
    M mythtv/libs/libmyth/schemawizard.h
    M mythtv/libs/libmythbase/dbutil.h
    M mythtv/libs/libmythbase/hardwareprofile.cpp
    M mythtv/libs/libmythbase/hardwareprofile.h
    M mythtv/libs/libmythbase/lcddevice.h
    M mythtv/libs/libmythbase/logging.h
    M mythtv/libs/libmythbase/loggingserver.h
    M mythtv/libs/libmythbase/mythcommandlineparser.cpp
    M mythtv/libs/libmythbase/mythcommandlineparser.h
    M mythtv/libs/libmythbase/mythcorecontext.cpp
    M mythtv/libs/libmythbase/mythcorecontext.h
    M mythtv/libs/libmythbase/mythdownloadmanager.cpp
    M mythtv/libs/libmythbase/mythdownloadmanager.h
    M mythtv/libs/libmythbase/mythsession.h
    M mythtv/libs/libmythbase/plist.h
    M mythtv/libs/libmythbase/portchecker.h
    M mythtv/libs/libmythbase/unzip.cpp
    M mythtv/libs/libmythbase/unzip.h
    M mythtv/libs/libmythbase/unzip_p.h
    M mythtv/libs/libmythfreemheg/ParseNode.h
    M mythtv/libs/libmythfreemheg/Visible.h
    M mythtv/libs/libmythfreesurround/el_processor.cpp
    M mythtv/libs/libmythfreesurround/freesurround.h
    M mythtv/libs/libmythmetadata/imagemanager.cpp
    M mythtv/libs/libmythmetadata/imagemanager.h
    M mythtv/libs/libmythmetadata/metadatadownload.cpp
    M mythtv/libs/libmythmetadata/metadatadownload.h
    M mythtv/libs/libmythmetadata/metadatagrabber.h
    M mythtv/libs/libmythmetadata/metaioavfcomment.h
    M mythtv/libs/libmythmetadata/metaioflacvorbis.h
    M mythtv/libs/libmythmetadata/metaioid3.h
    M mythtv/libs/libmythmetadata/metaiomp4.h
    M mythtv/libs/libmythmetadata/metaiooggvorbis.h
    M mythtv/libs/libmythmetadata/metaiotaglib.h
    M mythtv/libs/libmythmetadata/metaiowavpack.h
    M mythtv/libs/libmythmetadata/musicfilescanner.h
    M mythtv/libs/libmythmetadata/mythuiimageresults.h
    M mythtv/libs/libmythmetadata/mythuimetadataresults.h
    M mythtv/libs/libmythprotoserver/mythsocketmanager.h
    M mythtv/libs/libmythprotoserver/requesthandler/basehandler.h
    M mythtv/libs/libmythprotoserver/requesthandler/fileserverhandler.h
    M mythtv/libs/libmythprotoserver/requesthandler/messagehandler.h
    M mythtv/libs/libmythui/cecadapter.cpp
    M mythtv/libs/libmythui/mythmainwindow.cpp
    M mythtv/libs/libmythui/mythmainwindow.h
    M mythtv/libs/libmythui/mythnotificationcenter.h
    M mythtv/libs/libmythui/mythpainter.h
    M mythtv/libs/libmythui/mythrect.h
    M mythtv/libs/libmythui/mythrender_opengl.h
    M mythtv/libs/libmythui/mythscreenstack.h
    M mythtv/libs/libmythui/myththemedmenu.h
    M mythtv/libs/libmythui/mythudplistener.h
    M mythtv/libs/libmythui/mythuifilebrowser.h
    M mythtv/libs/libmythui/mythuiguidegrid.h
    M mythtv/libs/libmythui/mythuihelper.cpp
    M mythtv/libs/libmythui/mythuihelper.h
    M mythtv/libs/libmythui/mythuitype.h
    M mythtv/libs/libmythui/mythuiwebbrowser.h
    M mythtv/libs/libmythui/mythvirtualkeyboard.h
    M mythtv/libs/libmythupnp/bufferedsocketdevice.cpp
    M mythtv/libs/libmythupnp/bufferedsocketdevice.h
    M mythtv/libs/libmythupnp/httprequest.cpp
    M mythtv/libs/libmythupnp/httprequest.h
    M mythtv/libs/libmythupnp/msocketdevice.h
    M mythtv/libs/libmythupnp/serializers/jsonSerializer.h
    M mythtv/libs/libmythupnp/serializers/serializer.h
    M mythtv/libs/libmythupnp/serializers/xmlSerializer.h
    M mythtv/libs/libmythupnp/serverSideScripting.cpp
    M mythtv/libs/libmythupnp/serverSideScripting.h
    M mythtv/libs/libmythupnp/ssdp.h
    M mythtv/libs/libmythupnp/upnp.h
    M mythtv/libs/libmythupnp/upnpcds.cpp
    M mythtv/libs/libmythupnp/upnpcds.h
    M mythtv/libs/libmythupnp/upnpcdsobjects.cpp
    M mythtv/libs/libmythupnp/upnpcdsobjects.h
    M mythtv/libs/libmythupnp/upnpcmgr.h
    M mythtv/libs/libmythupnp/upnpdevice.h
    M mythtv/libs/libmythupnp/upnpmsrr.h
    M mythtv/libs/libmythupnp/websocket.h
    M mythtv/libs/libmythupnp/wsdl.h
    M mythtv/libs/libmythupnp/xsd.h

  Log Message:
  -----------
  tidy: Convert member functions to static if they don't use 'this'. (libs)

The clang-tidy readability "convert to static" checker pointed out a
large number of places where a member function doesn't reference the
current object, and thus doesn't need to be provided with a 'this'
variable that points to an object.  These function should all be
declared as static, instead of as const.  Declaring a function as
'const' is a statement that it won't modify the object, but it still
possible to affect it.  A function declared 'static' doesn't receive a
pointer to the object and so can't possibly modify it.  Changes made
by the clang-tidy program.

https://clang.llvm.https://clang.llvm.org/extra/clang-tidy/checks/readability-convert-member-functions-to-static.html


  Commit: b6499630286617033376266799d28ee04482ab67
      https://github.com/MythTV/mythtv/commit/b6499630286617033376266799d28ee04482ab67
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythplugins/mytharchive/mytharchive/main.cpp
    M mythplugins/mytharchive/mytharchivehelper/main.cpp
    M mythplugins/mythbrowser/mythbrowser/main.cpp
    M mythplugins/mythgame/mythgame/main.cpp
    M mythplugins/mythmusic/mythmusic/cdrip.cpp
    M mythplugins/mythmusic/mythmusic/editmetadata.cpp
    M mythplugins/mythmusic/mythmusic/importmusic.cpp
    M mythplugins/mythmusic/mythmusic/main.cpp
    M mythplugins/mythnetvision/mythfillnetvision/main.cpp
    M mythplugins/mythnetvision/mythnetvision/main.cpp
    M mythplugins/mythnetvision/mythnetvision/rsseditor.cpp
    M mythplugins/mythnews/mythnews/main.cpp
    M mythplugins/mythweather/mythweather/main.cpp
    M mythplugins/mythzoneminder/mythzoneminder/main.cpp

  Log Message:
  -----------
  tidy: Call static functions directly instead of through an instance. (plugins)

The clang-tidy readability "static accessed through instance" checker
pointed out a number of places where a static member function is
called via an object instead of being called directly.  Change these
to direct references.  This allows removal of a couple of variables
that were only used to call these static functions.  Changes made by
the clang-tidy program; variable cleanup by hand.

https://clang.llvm.org/extra/clang-tidy/checks/readability-static-accessed-through-instance.html


  Commit: cea6155a16a0028523216e5658563dd43f679309
      https://github.com/MythTV/mythtv/commit/cea6155a16a0028523216e5658563dd43f679309
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythtv/programs/mythavtest/main.cpp
    M mythtv/programs/mythbackend/httpconfig.cpp
    M mythtv/programs/mythbackend/main.cpp
    M mythtv/programs/mythbackend/main_helpers.cpp
    M mythtv/programs/mythbackend/mainserver.cpp
    M mythtv/programs/mythbackend/scheduler.cpp
    M mythtv/programs/mythbackend/services/content.cpp
    M mythtv/programs/mythbackend/services/myth.cpp
    M mythtv/programs/mythccextractor/main.cpp
    M mythtv/programs/mythcommflag/CommDetector2.cpp
    M mythtv/programs/mythcommflag/main.cpp
    M mythtv/programs/mythexternrecorder/main.cpp
    M mythtv/programs/mythfilerecorder/mythfilerecorder.cpp
    M mythtv/programs/mythfilldatabase/main.cpp
    M mythtv/programs/mythfrontend/galleryslideview.cpp
    M mythtv/programs/mythfrontend/gallerythumbview.cpp
    M mythtv/programs/mythfrontend/main.cpp
    M mythtv/programs/mythfrontend/proglist_helpers.cpp
    M mythtv/programs/mythfrontend/setupwizard_general.cpp
    M mythtv/programs/mythfrontend/themechooser.cpp
    M mythtv/programs/mythjobqueue/main.cpp
    M mythtv/programs/mythlcdserver/main.cpp
    M mythtv/programs/mythmediaserver/main.cpp
    M mythtv/programs/mythmetadatalookup/main.cpp
    M mythtv/programs/mythpreviewgen/main.cpp
    M mythtv/programs/mythscreenwizard/main.cpp
    M mythtv/programs/mythshutdown/main.cpp
    M mythtv/programs/mythtranscode/main.cpp
    M mythtv/programs/mythtv-setup/backendsettings.cpp
    M mythtv/programs/mythtv-setup/exitprompt.cpp
    M mythtv/programs/mythtv-setup/main.cpp
    M mythtv/programs/mythtv-setup/startprompt.cpp
    M mythtv/programs/mythutil/main.cpp
    M mythtv/programs/mythwelcome/main.cpp

  Log Message:
  -----------
  tidy: Call static functions directly instead of through an instance. (programs)

The clang-tidy readability "static accessed through instance" checker
pointed out a number of places where a static member function is
called via an object instead of being called directly.  Change these
to direct references.  This allows removal of a couple of variables
that were only used to call these static functions.  Changes made by
the clang-tidy program; variable cleanup by hand.

https://clang.llvm.org/extra/clang-tidy/checks/readability-static-accessed-through-instance.html


  Commit: 8fc1e0cabddf39f06ae0737bb238f37242754dd9
      https://github.com/MythTV/mythtv/commit/8fc1e0cabddf39f06ae0737bb238f37242754dd9
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythtv/libs/libmyth/audio/audiooutputgraph.cpp
    M mythtv/libs/libmyth/mythcontext.cpp
    M mythtv/libs/libmyth/programinfo.cpp
    M mythtv/libs/libmyth/rawsettingseditor.cpp
    M mythtv/libs/libmythbase/mythmiscutil.cpp
    M mythtv/libs/libmythbase/remotefile.cpp
    M mythtv/libs/libmythbase/storagegroup.cpp
    M mythtv/libs/libmythbase/unzip.cpp
    M mythtv/libs/libmythfreemheg/BaseClasses.cpp
    M mythtv/libs/libmythfreemheg/Engine.cpp
    M mythtv/libs/libmythfreemheg/Groups.cpp
    M mythtv/libs/libmythfreemheg/Link.cpp
    M mythtv/libs/libmythfreemheg/Visible.cpp
    M mythtv/libs/libmythmetadata/metadatafactory.cpp
    M mythtv/libs/libmythmetadata/metadataimagedownload.cpp
    M mythtv/libs/libmythmetadata/musicmetadata.cpp
    M mythtv/libs/libmythmetadata/videoscan.cpp
    M mythtv/libs/libmythprotoserver/requesthandler/outboundhandler.cpp
    M mythtv/libs/libmythui/cecadapter.cpp
    M mythtv/libs/libmythui/mythmainwindow.cpp
    M mythtv/libs/libmythui/mythrender_vdpau.cpp
    M mythtv/libs/libmythui/mythscreentype.cpp
    M mythtv/libs/libmythui/mythuifilebrowser.cpp
    M mythtv/libs/libmythui/mythuihelper.cpp
    M mythtv/libs/libmythupnp/httprequest.cpp

  Log Message:
  -----------
  tidy: Call static functions directly instead of through an instance. (libs)

The clang-tidy readability "static accessed through instance" checker
pointed out a number of places where a static member function is
called via an object instead of being called directly.  Change these
to direct references.  This allows removal of a couple of variables
that were only used to call these static functions.  Changes made by
the clang-tidy program; variable cleanup by hand.

https://clang.llvm.org/extra/clang-tidy/checks/readability-static-accessed-through-instance.html


  Commit: 3593d4e8202a407e9456e462d59cd85588372fd2
      https://github.com/MythTV/mythtv/commit/3593d4e8202a407e9456e462d59cd85588372fd2
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythtv/libs/libmythbase/test/test_mythsorthelper/test_mythsorthelper.h
    M mythtv/libs/libmythservicecontracts/test/test_datacontracts/test_datacontracts.h
    M mythtv/libs/libmythtv/test/test_avcinfo/test_avcinfo.h
    M mythtv/libs/libmythtv/test/test_eitfixups/test_eitfixups.h
    M mythtv/libs/libmythtv/test/test_mpegtables/test_mpegtables.h
    M mythtv/libs/libmythtv/test/test_mythiowrapper/test_mythiowrapper.h

  Log Message:
  -----------
  tidy: Convert member functions to static if they don't use 'this'. (tests)

The clang-tidy readability "convert to static" checker pointed out a
large number of places where a member function doesn't reference the
current object, and thus doesn't need to be provided with a 'this'
variable that points to an object.  These function should all be
declared as static, instead of as const.  Declaring a function as
'const' is a statement that it won't modify the object, but it still
possible to affect it.  A function declared 'static' doesn't receive a
pointer to the object and so can't possibly modify it.  Changes made
by the clang-tidy program.

https://clang.llvm.https://clang.llvm.org/extra/clang-tidy/checks/readability-convert-member-functions-to-static.html


  Commit: b54fbdf06acb4143568a6bdce30d73b25ed13961
      https://github.com/MythTV/mythtv/commit/b54fbdf06acb4143568a6bdce30d73b25ed13961
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythplugins/mythbrowser/mythbrowser/mythflashplayer.cpp
    M mythplugins/mythmusic/mythmusic/visualize.cpp
    M mythplugins/mythnetvision/mythnetvision/netbase.cpp
    M mythtv/libs/libmythtv/DVD/dvdringbuffer.cpp
    M mythtv/libs/libmythtv/osd.cpp
    M mythtv/libs/libmythtv/tv_play.cpp
    M mythtv/libs/libmythui/cecadapter.cpp
    M mythtv/libs/libmythui/mythmainwindow.cpp
    M mythtv/libs/libmythui/mythscreentype.cpp
    M mythtv/libs/libmythui/mythuibuttonlist.cpp
    M mythtv/libs/libmythui/mythvirtualkeyboard.cpp
    M mythtv/programs/mythbackend/services/myth.cpp
    M mythtv/programs/mythfrontend/networkcontrol.cpp
    M mythtv/programs/mythfrontend/services/frontend.cpp

  Log Message:
  -----------
  tidy: Call static functions directly instead of through an instance.

The clang-tidy readability "static accessed through instance" checker
pointed out a number of places where a static member function is
called via a pointer to a singleton object instead of being called
directly. Change these calls to be direct references.

https://clang.llvm.org/extra/clang-tidy/checks/readability-static-accessed-through-instance.html


  Commit: 0cfc9bdbf918daf8e60ce2448043c1372a44830d
      https://github.com/MythTV/mythtv/commit/0cfc9bdbf918daf8e60ce2448043c1372a44830d
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythtv/filters/adjust/filter_adjust.c
    M mythtv/filters/bobdeint/filter_bobdeint.c
    M mythtv/filters/crop/filter_crop.c
    M mythtv/filters/denoise3d/filter_denoise3d.c
    M mythtv/filters/fieldorder/filter_fieldorder.c
    M mythtv/filters/force/filter_force.c
    M mythtv/filters/greedyhdeint/color.c
    M mythtv/filters/greedyhdeint/filter_greedyhdeint.c
    M mythtv/filters/invert/filter_invert.c
    M mythtv/filters/ivtc/filter_ivtc.c
    M mythtv/filters/ivtc/pullup.c
    M mythtv/filters/kerneldeint/filter_kerneldeint.c
    M mythtv/filters/linearblend/filter_linearblend.c
    M mythtv/filters/onefield/filter_onefield.c
    M mythtv/filters/postprocess/filter_postprocess.c
    M mythtv/filters/quickdnr/filter_quickdnr.c
    M mythtv/filters/vflip/filter_vflip.c
    M mythtv/filters/yadif/filter_yadif.c

  Log Message:
  -----------
  tidy: Make sure all local variables are initialized. (filters)

The clang-tidy "local variable initial value" checker pointed out a
large number of uninitialized local variables in functions.  Where
possible these were fixed by reducing the scope of the variable and
combining the declaration and initialization of the variable into a
single statement.  When that wasn't possible, suitable initial values
were provided for the variable.  In one or two instances there are
minor code tweaks to not assign an initial value and then immediately
reassign the same value in the 'else' clause of an 'if' statement.

https://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines-init-variables.html


  Commit: 7e302be43bb2994e3ae9b29639a1d46934a7c9d9
      https://github.com/MythTV/mythtv/commit/7e302be43bb2994e3ae9b29639a1d46934a7c9d9
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythplugins/mytharchive/mytharchive/archiveutil.cpp
    M mythplugins/mytharchive/mytharchive/fileselector.cpp
    M mythplugins/mytharchive/mytharchive/mythburn.cpp
    M mythplugins/mytharchive/mytharchive/recordingselector.cpp
    M mythplugins/mytharchive/mytharchive/selectdestination.cpp
    M mythplugins/mytharchive/mytharchive/thumbfinder.cpp
    M mythplugins/mytharchive/mytharchive/videoselector.cpp
    M mythplugins/mytharchive/mytharchivehelper/external/pxsup2dast.c
    M mythplugins/mytharchive/mytharchivehelper/main.cpp
    M mythplugins/mythbrowser/mythbrowser/bookmarkmanager.cpp
    M mythplugins/mythgame/mythgame/gamehandler.cpp
    M mythplugins/mythgame/mythgame/gameui.cpp
    M mythplugins/mythgame/mythgame/rom_metadata.cpp
    M mythplugins/mythmusic/mythmusic/avfdecoder.cpp
    M mythplugins/mythmusic/mythmusic/bumpscope.cpp
    M mythplugins/mythmusic/mythmusic/cdrip.cpp
    M mythplugins/mythmusic/mythmusic/importmusic.cpp
    M mythplugins/mythmusic/mythmusic/lyricsview.cpp
    M mythplugins/mythmusic/mythmusic/mainvisual.cpp
    M mythplugins/mythmusic/mythmusic/musiccommon.cpp
    M mythplugins/mythmusic/mythmusic/playlist.cpp
    M mythplugins/mythmusic/mythmusic/playlisteditorview.cpp
    M mythplugins/mythmusic/mythmusic/smartplaylist.cpp
    M mythplugins/mythmusic/mythmusic/streamview.cpp
    M mythplugins/mythmusic/mythmusic/synaesthesia.cpp
    M mythplugins/mythmusic/mythmusic/visualize.cpp
    M mythplugins/mythmusic/mythmusic/vorbisencoder.cpp
    M mythplugins/mythnetvision/mythfillnetvision/main.cpp
    M mythplugins/mythnetvision/mythnetvision/neteditorbase.cpp
    M mythplugins/mythnetvision/mythnetvision/nettree.cpp
    M mythplugins/mythweather/mythweather/sourceManager.cpp
    M mythplugins/mythweather/mythweather/weatherScreen.cpp
    M mythplugins/mythweather/mythweather/weatherSetup.cpp
    M mythplugins/mythzoneminder/mythzmserver/main.cpp
    M mythplugins/mythzoneminder/mythzmserver/zmserver.cpp
    M mythplugins/mythzoneminder/mythzoneminder/zmclient.cpp
    M mythplugins/mythzoneminder/mythzoneminder/zmliveplayer.cpp

  Log Message:
  -----------
  tidy: Make sure all local variables are initialized. (plugins)

The clang-tidy "local variable initial value" checker pointed out a
large number of uninitialized local variables in functions.  Where
possible these were fixed by reducing the scope of the variable and
combining the declaration and initialization of the variable into a
single statement.  When that wasn't possible, suitable initial values
were provided for the variable.  In one or two instances there are
minor code tweaks to not assign an initial value and then immediately
reassign the same value in the 'else' clause of an 'if' statement.

https://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines-init-variables.html


  Commit: af3172f76ef8a11dfa0fdcf6d5010b22a4981d1e
      https://github.com/MythTV/mythtv/commit/af3172f76ef8a11dfa0fdcf6d5010b22a4981d1e
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythtv/libs/libmyth/audio/audioconvert.cpp
    M mythtv/libs/libmyth/audio/audiooutput.cpp
    M mythtv/libs/libmyth/audio/audiooutput_omx.cpp
    M mythtv/libs/libmyth/audio/audiooutputalsa.cpp
    M mythtv/libs/libmyth/audio/audiooutputbase.cpp
    M mythtv/libs/libmyth/audio/audiooutputdigitalencoder.cpp
    M mythtv/libs/libmyth/audio/audiooutputdownmix.cpp
    M mythtv/libs/libmyth/audio/audiooutputjack.cpp
    M mythtv/libs/libmyth/audio/audiooutputoss.cpp
    M mythtv/libs/libmyth/audio/audiooutputpulse.cpp
    M mythtv/libs/libmyth/audio/audiooutputsettings.cpp
    M mythtv/libs/libmyth/audio/audiooutpututil.cpp
    M mythtv/libs/libmyth/audio/audiopulsehandler.cpp
    M mythtv/libs/libmyth/audio/eldutils.cpp
    M mythtv/libs/libmyth/audio/pink.c
    M mythtv/libs/libmyth/audio/spdifencoder.cpp
    M mythtv/libs/libmyth/backendselect.cpp
    M mythtv/libs/libmyth/guistartup.cpp
    M mythtv/libs/libmyth/langsettings.cpp
    M mythtv/libs/libmyth/mediamonitor-unix.cpp
    M mythtv/libs/libmyth/mythcontext.cpp
    M mythtv/libs/libmyth/mythmediamonitor.cpp
    M mythtv/libs/libmyth/omxcontext.cpp
    M mythtv/libs/libmyth/programinfo.cpp
    M mythtv/libs/libmyth/programinfoupdater.cpp
    M mythtv/libs/libmyth/rawsettingseditor.cpp
    M mythtv/libs/libmyth/rssparse.cpp
    M mythtv/libs/libmyth/schemawizard.cpp
    M mythtv/libs/libmythbase/dbutil.cpp
    M mythtv/libs/libmythbase/filesysteminfo.cpp
    M mythtv/libs/libmythbase/lcddevice.cpp
    M mythtv/libs/libmythbase/logging.cpp
    M mythtv/libs/libmythbase/loggingserver.cpp
    M mythtv/libs/libmythbase/mythcdrom-linux.cpp
    M mythtv/libs/libmythbase/mythcommandlineparser.cpp
    M mythtv/libs/libmythbase/mythcorecontext.cpp
    M mythtv/libs/libmythbase/mythdbcon.cpp
    M mythtv/libs/libmythbase/mythdownloadmanager.cpp
    M mythtv/libs/libmythbase/mythmiscutil.cpp
    M mythtv/libs/libmythbase/mythsession.cpp
    M mythtv/libs/libmythbase/mythsystemunix.cpp
    M mythtv/libs/libmythbase/mythtimezone.cpp
    M mythtv/libs/libmythbase/remotefile.cpp
    M mythtv/libs/libmythbase/serverpool.cpp
    M mythtv/libs/libmythbase/storagegroup.cpp
    M mythtv/libs/libmythbase/unzip.cpp
    M mythtv/libs/libmythfreemheg/Actions.cpp
    M mythtv/libs/libmythfreemheg/Engine.cpp
    M mythtv/libs/libmythfreemheg/Groups.cpp
    M mythtv/libs/libmythfreemheg/Ingredients.cpp
    M mythtv/libs/libmythfreemheg/ParseBinary.cpp
    M mythtv/libs/libmythfreemheg/Programs.cpp
    M mythtv/libs/libmythfreemheg/Text.cpp
    M mythtv/libs/libmythfreemheg/TokenGroup.cpp
    M mythtv/libs/libmythfreemheg/Visible.cpp
    M mythtv/libs/libmythfreesurround/el_processor.cpp
    M mythtv/libs/libmythfreesurround/freesurround.cpp
    M mythtv/libs/libmythmetadata/imagemetadata.cpp
    M mythtv/libs/libmythmetadata/imagescanner.cpp
    M mythtv/libs/libmythmetadata/lyricsdata.cpp
    M mythtv/libs/libmythmetadata/metadatacommon.cpp
    M mythtv/libs/libmythmetadata/metadatadownload.cpp
    M mythtv/libs/libmythmetadata/metadataimagedownload.cpp
    M mythtv/libs/libmythmetadata/musicfilescanner.cpp
    M mythtv/libs/libmythmpeg2/alloc.c
    M mythtv/libs/libmythmpeg2/cpu_accel.c
    M mythtv/libs/libmythmpeg2/decode.c
    M mythtv/libs/libmythmpeg2/header.c
    M mythtv/libs/libmythmpeg2/idct.c
    M mythtv/libs/libmythmpeg2/idct_mmx.c
    M mythtv/libs/libmythmpeg2/slice.c
    M mythtv/libs/libmythprotoserver/requesthandler/basehandler.cpp
    M mythtv/libs/libmythprotoserver/requesthandler/deletethread.cpp
    M mythtv/libs/libmythprotoserver/requesthandler/fileserverhandler.cpp
    M mythtv/libs/libmythprotoserver/sockethandler/filetransfer.cpp

  Log Message:
  -----------
  tidy: Make sure all local variables are initialized. (libs)

The clang-tidy "local variable initial value" checker pointed out a
large number of uninitialized local variables in functions.  Where
possible these were fixed by reducing the scope of the variable and
combining the declaration and initialization of the variable into a
single statement.  When that wasn't possible, suitable initial values
were provided for the variable.  In one or two instances there are
minor code tweaks to not assign an initial value and then immediately
reassign the same value in the 'else' clause of an 'if' statement.

https://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines-init-variables.html


  Commit: 7bff36c7c57f66be85d3e209cd57bd94d435f640
      https://github.com/MythTV/mythtv/commit/7bff36c7c57f66be85d3e209cd57bd94d435f640
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythtv/libs/libmythui/DisplayRes.cpp
    M mythtv/libs/libmythui/DisplayResScreen.cpp
    M mythtv/libs/libmythui/DisplayResX.cpp
    M mythtv/libs/libmythui/jsmenu.cpp
    M mythtv/libs/libmythui/lirc.cpp
    M mythtv/libs/libmythui/lirc_client.c
    M mythtv/libs/libmythui/mythdialogbox.cpp
    M mythtv/libs/libmythui/mythdisplay.cpp
    M mythtv/libs/libmythui/mythfontmanager.cpp
    M mythtv/libs/libmythui/mythfontproperties.cpp
    M mythtv/libs/libmythui/mythgenerictree.cpp
    M mythtv/libs/libmythui/mythgesture.cpp
    M mythtv/libs/libmythui/mythimage.cpp
    M mythtv/libs/libmythui/mythmainwindow.cpp
    M mythtv/libs/libmythui/mythnotificationcenter.cpp
    M mythtv/libs/libmythui/mythpainter.cpp
    M mythtv/libs/libmythui/mythpainter_qimage.cpp
    M mythtv/libs/libmythui/mythpainter_yuva.cpp
    M mythtv/libs/libmythui/mythrect.cpp
    M mythtv/libs/libmythui/mythrender_opengl.cpp
    M mythtv/libs/libmythui/mythrender_opengl1.cpp
    M mythtv/libs/libmythui/mythrender_opengl2.cpp
    M mythtv/libs/libmythui/mythrender_vdpau.cpp
    M mythtv/libs/libmythui/mythscreenstack.cpp
    M mythtv/libs/libmythui/mythscreentype.cpp
    M mythtv/libs/libmythui/mythudplistener.cpp
    M mythtv/libs/libmythui/mythuibuttonlist.cpp
    M mythtv/libs/libmythui/mythuifilebrowser.cpp
    M mythtv/libs/libmythui/mythuihelper.cpp
    M mythtv/libs/libmythui/mythuiimage.cpp
    M mythtv/libs/libmythui/mythuispinbox.cpp
    M mythtv/libs/libmythui/mythuitext.cpp
    M mythtv/libs/libmythui/mythvirtualkeyboard.cpp
    M mythtv/libs/libmythui/mythxdisplay.cpp
    M mythtv/libs/libmythui/screensaver-x11.cpp
    M mythtv/libs/libmythui/screensaver.cpp
    M mythtv/libs/libmythui/util-nvctrl.cpp
    M mythtv/libs/libmythui/xmlparsebase.cpp
    M mythtv/libs/libmythupnp/bufferedsocketdevice.cpp
    M mythtv/libs/libmythupnp/eventing.cpp
    M mythtv/libs/libmythupnp/httprequest.cpp
    M mythtv/libs/libmythupnp/httpserver.cpp
    M mythtv/libs/libmythupnp/mmembuf.cpp
    M mythtv/libs/libmythupnp/msocketdevice_unix.cpp
    M mythtv/libs/libmythupnp/ssdp.cpp
    M mythtv/libs/libmythupnp/taskqueue.cpp
    M mythtv/libs/libmythupnp/upnp.cpp

  Log Message:
  -----------
  tidy: Make sure all local variables are initialized. (libmythui/upnp)

The clang-tidy "local variable initial value" checker pointed out a
large number of uninitialized local variables in functions.  Where
possible these were fixed by reducing the scope of the variable and
combining the declaration and initialization of the variable into a
single statement.  When that wasn't possible, suitable initial values
were provided for the variable.  In one or two instances there are
minor code tweaks to not assign an initial value and then immediately
reassign the same value in the 'else' clause of an 'if' statement.

https://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines-init-variables.html


  Commit: c0edd16d066cc23f20fceb0ddb3ac01b3763f88c
      https://github.com/MythTV/mythtv/commit/c0edd16d066cc23f20fceb0ddb3ac01b3763f88c
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythtv/programs/mythavtest/main.cpp
    M mythtv/programs/mythbackend/autoexpire.cpp
    M mythtv/programs/mythbackend/filetransfer.cpp
    M mythtv/programs/mythbackend/mainserver.cpp
    M mythtv/programs/mythbackend/mediaserver.cpp
    M mythtv/programs/mythbackend/mythsettings.cpp
    M mythtv/programs/mythbackend/scheduler.cpp
    M mythtv/programs/mythbackend/services/dvr.cpp
    M mythtv/programs/mythbackend/services/myth.cpp
    M mythtv/programs/mythbackend/services/serviceUtil.cpp
    M mythtv/programs/mythbackend/upnpcdsmusic.cpp
    M mythtv/programs/mythbackend/upnpcdstv.cpp
    M mythtv/programs/mythbackend/upnpcdsvideo.cpp
    M mythtv/programs/mythccextractor/main.cpp
    M mythtv/programs/mythcommflag/BlankFrameDetector.cpp
    M mythtv/programs/mythcommflag/BorderDetector.cpp
    M mythtv/programs/mythcommflag/CannyEdgeDetector.cpp
    M mythtv/programs/mythcommflag/ClassicCommDetector.cpp
    M mythtv/programs/mythcommflag/ClassicLogoDetector.cpp
    M mythtv/programs/mythcommflag/CommDetector2.cpp
    M mythtv/programs/mythcommflag/EdgeDetector.cpp
    M mythtv/programs/mythcommflag/FrameAnalyzer.cpp
    M mythtv/programs/mythcommflag/HistogramAnalyzer.cpp
    M mythtv/programs/mythcommflag/PrePostRollFlagger.cpp
    M mythtv/programs/mythcommflag/SceneChangeDetector.cpp
    M mythtv/programs/mythcommflag/TemplateFinder.cpp
    M mythtv/programs/mythcommflag/TemplateMatcher.cpp
    M mythtv/programs/mythcommflag/main.cpp
    M mythtv/programs/mythcommflag/pgm.cpp
    M mythtv/programs/mythcommflag/quickselect.c
    M mythtv/programs/mythexternrecorder/MythExternControl.cpp
    M mythtv/programs/mythexternrecorder/main.cpp
    M mythtv/programs/mythfilerecorder/mythfilerecorder.cpp
    M mythtv/programs/mythfilldatabase/channeldata.cpp
    M mythtv/programs/mythfilldatabase/filldata.cpp
    M mythtv/programs/mythfilldatabase/main.cpp
    M mythtv/programs/mythfilldatabase/xmltvparser.cpp
    M mythtv/programs/mythfrontend/audiogeneralsettings.cpp
    M mythtv/programs/mythfrontend/channelrecpriority.cpp
    M mythtv/programs/mythfrontend/galleryinfo.cpp
    M mythtv/programs/mythfrontend/gallerythumbview.cpp
    M mythtv/programs/mythfrontend/galleryviews.cpp
    M mythtv/programs/mythfrontend/guidegrid.cpp
    M mythtv/programs/mythfrontend/idlescreen.cpp
    M mythtv/programs/mythfrontend/main.cpp
    M mythtv/programs/mythfrontend/mythcontrols.cpp
    M mythtv/programs/mythfrontend/networkcontrol.cpp
    M mythtv/programs/mythfrontend/playbackbox.cpp
    M mythtv/programs/mythfrontend/progdetails.cpp
    M mythtv/programs/mythfrontend/proglist.cpp
    M mythtv/programs/mythfrontend/programrecpriority.cpp
    M mythtv/programs/mythfrontend/schedulecommon.cpp
    M mythtv/programs/mythfrontend/scheduleeditor.cpp
    M mythtv/programs/mythfrontend/services/frontend.cpp
    M mythtv/programs/mythfrontend/statusbox.cpp
    M mythtv/programs/mythfrontend/videodlg.cpp
    M mythtv/programs/mythfrontend/videofilter.cpp
    M mythtv/programs/mythfrontend/viewscheduled.cpp
    M mythtv/programs/mythfrontend/viewschedulediff.cpp
    M mythtv/programs/mythlcdserver/lcdprocclient.cpp
    M mythtv/programs/mythlcdserver/lcdserver.cpp
    M mythtv/programs/mythmetadatalookup/main.cpp
    M mythtv/programs/mythpreviewgen/main.cpp
    M mythtv/programs/mythscreenwizard/main.cpp
    M mythtv/programs/mythtranscode/cutter.cpp
    M mythtv/programs/mythtranscode/external/replex/element.c
    M mythtv/programs/mythtranscode/external/replex/mpg_common.c
    M mythtv/programs/mythtranscode/external/replex/multiplex.c
    M mythtv/programs/mythtranscode/external/replex/pes.c
    M mythtv/programs/mythtranscode/external/replex/ringbuffer.c
    M mythtv/programs/mythtranscode/external/replex/ts.c
    M mythtv/programs/mythtranscode/main.cpp
    M mythtv/programs/mythtranscode/mpeg2fix.cpp
    M mythtv/programs/mythtranscode/transcode.cpp
    M mythtv/programs/mythtv-setup/channeleditor.cpp
    M mythtv/programs/mythtv-setup/importicons.cpp
    M mythtv/programs/mythtv-setup/main.cpp
    M mythtv/programs/mythutil/fileutils.cpp
    M mythtv/programs/mythutil/main.cpp
    M mythtv/programs/mythutil/markuputils.cpp
    M mythtv/programs/mythutil/mpegutils.cpp
    M mythtv/programs/mythutil/musicmetautils.cpp
    M mythtv/programs/mythutil/recordingutils.cpp
    M mythtv/programs/mythwelcome/main.cpp
    M mythtv/programs/mythwelcome/welcomedialog.cpp

  Log Message:
  -----------
  tidy: Make sure all local variables are initialized. (programs)

The clang-tidy "local variable initial value" checker pointed out a
large number of uninitialized local variables in functions.  Where
possible these were fixed by reducing the scope of the variable and
combining the declaration and initialization of the variable into a
single statement.  When that wasn't possible, suitable initial values
were provided for the variable.  In one or two instances there are
minor code tweaks to not assign an initial value and then immediately
reassign the same value in the 'else' clause of an 'if' statement.

https://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines-init-variables.html


  Commit: 8245aefed09755be59dbdb7fa43ad651b71c796e
      https://github.com/MythTV/mythtv/commit/8245aefed09755be59dbdb7fa43ad651b71c796e
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythplugins/mythmusic/mythmusic/dbcheck.cpp
    M mythtv/libs/libmythtv/dbcheck.cpp
    M mythtv/libs/libmythtv/videodbcheck.cpp

  Log Message:
  -----------
  tidy: Silence false 'missing comma' warnings in long database SQL statements.

The clang-tidy 'missing comma' checker looks for places where a list
of strings is used, and attempts to determine if there is a comma
missing after any of the items in the list.  This fails when looking
at very long SQL statements that have been broken onto multiple lines
for easier reading.

https://clang.llvm.org/extra/clang-tidy/checks/bugprone-suspicious-missing-comma.html


  Commit: 2ec49f04736882285aa295a390d8bb513619f535
      https://github.com/MythTV/mythtv/commit/2ec49f04736882285aa295a390d8bb513619f535
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythtv/libs/libmythtv/visualisations/goom/filters.c
    M mythtv/libs/libmythtv/visualisations/goom/goom_core.c

  Log Message:
  -----------
  tidy: Silence false 'redundant expression' warnings.

The clang-tidy 'redundant expression' checker pointed out several
places in the goom code that appear to have redundant expressions.
These uses of the RAND() inline macro are not redundant because a side
effect of the function is to increment a pointer into an array, so
each call actually returns a different value.

https://clang.llvm.org/extra/clang-tidy/checks/misc-redundant-expression.html


  Commit: 3ad4d50db13a1cd1f6ba369dc3d8a73527127794
      https://github.com/MythTV/mythtv/commit/3ad4d50db13a1cd1f6ba369dc3d8a73527127794
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythplugins/mythmusic/mythmusic/smartplaylist.cpp
    M mythtv/libs/libmyth/netgrabbermanager.cpp
    M mythtv/libs/libmythtv/avformatdecoder.cpp
    M mythtv/libs/libmythui/mythmainwindow.cpp
    M mythtv/libs/libmythui/mythuiimage.cpp

  Log Message:
  -----------
  tidy: Silence false 'misleading indentation' warnings in a couple of places.

The clang-tidy 'misleading indentation' checker looks for places where
the code syntax and its indentation don't match up, and flags these
for review.  It seems to have a problem with an 'emit' call after a
if/then/else clause as three of these are incorrectly flagged.  There
are a;sp two places where multiple if/ifdef compilation directives are
used that throw off the indentation (depending upon which defines are
used to compile the program).

https://clang.llvm.org/extra/clang-tidy/checks/readability-misleading-indentation.html


  Commit: 43b55c8a107ef663a657eda759a5a3b9729f8c7e
      https://github.com/MythTV/mythtv/commit/43b55c8a107ef663a657eda759a5a3b9729f8c7e
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythtv/libs/libmythupnp/wsdl.cpp
    M mythtv/libs/libmythupnp/xsd.cpp

  Log Message:
  -----------
  tidy: Fix two instances of redundant expressions.

The clang-tidy 'redundant expression' checker pointed out two places
where a redundant expression was used.  In both cases a signed integer
variable is checked to see if its value is -1 or if it is less that
1024.  The second check encompasses the value of the first check, so
the first check can be removed without changing the result of the
expression.

https://clang.llvm.org/extra/clang-tidy/checks/misc-redundant-expression.html


  Commit: f05c7edcbb48df2ec4f7c8db585be92463a10ed7
      https://github.com/MythTV/mythtv/commit/f05c7edcbb48df2ec4f7c8db585be92463a10ed7
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythtv/libs/libmythtv/DVD/dvdringbuffer.cpp
    M mythtv/libs/libmythtv/recorders/NuppelVideoRecorder.cpp
    M mythtv/libs/libmythtv/tv_play.cpp
    M mythtv/libs/libmythui/mythmainwindow.cpp
    M mythtv/libs/libmythui/mythscreentype.cpp
    M mythtv/programs/mythbackend/playbacksock.cpp
    M mythtv/programs/mythcommflag/ClassicCommDetector.cpp
    M mythtv/programs/mythfrontend/statusbox.cpp

  Log Message:
  -----------
  tidy: Simplify a number of boolean expressions.

The clang-tidy 'simplify boolean expression' checker pointed out a
number of places where expressions involving boolean values could be
simplified.  These were mostly of the form "if (e) b = true; else b =
false;" that can be reduced to "b = e;" for easier reading.

https://clang.llvm.org/extra/clang-tidy/checks/readability-simplify-boolean-expr.html


  Commit: 51036927133850447e8fb76133261636cc78f3e0
      https://github.com/MythTV/mythtv/commit/51036927133850447e8fb76133261636cc78f3e0
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythtv/libs/libmythtv/cc708decoder.cpp
    M mythtv/libs/libmythtv/nuppeldecoder.cpp

  Log Message:
  -----------
  tidy: Silence misleading 'simplify boolean expression' warnings.

The clang-tidy 'simplify boolean expression' checker pointed out a
couple of places that look like "if (e) return true; return false;"
and could be simplified.  It doesn't see conditionally compiled code
that exists between the two return statements that prevents any
simplification.

https://clang.llvm.org/extra/clang-tidy/checks/readability-simplify-boolean-expr.html


  Commit: 3a0f32f050c3ddbcbf3ec6f720cc8b8ff4337d7f
      https://github.com/MythTV/mythtv/commit/3a0f32f050c3ddbcbf3ec6f720cc8b8ff4337d7f
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythtv/libs/libmythtv/mpeg/atsc_huffman.cpp
    M mythtv/libs/libmythtv/mpeg/iso6937tables.cpp

  Log Message:
  -----------
  tidy: Fix some "order of initialization" problems.

The clang-tidy "order of initialization" checker looks for global
initializers that reference external objects.  Since the C++ Standard
doesn't define the order in which global initializers are called, its
possible that these initializers may be called before the initializers
for the things they reference.

This commit contains trivial fixes to this order of initialization
problem.  It simply moves code around inside of the same cpp file to
eliminate the use of the external keyword.

https://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines-interfaces-global-init.html


  Commit: cacb9abb23e1641de83f125bcff3110af248bd7d
      https://github.com/MythTV/mythtv/commit/cacb9abb23e1641de83f125bcff3110af248bd7d
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythtv/libs/libmythbase/filesysteminfo.cpp
    M mythtv/libs/libmythtv/cardutil.cpp
    M mythtv/libs/libmythtv/mpeg/mpegstreamdata.cpp

  Log Message:
  -----------
  tidy: Use boolean literals.

Replace instances of 1/0 being cast to a boolean with the literals
true/false.

https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-bool-literals.html


  Commit: ee40476e02d5ae52fe0cc11ded3614d41b438ab6
      https://github.com/MythTV/mythtv/commit/ee40476e02d5ae52fe0cc11ded3614d41b438ab6
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythtv/libs/libmythtv/mythavutil.cpp
    M mythtv/libs/libmythtv/textsubtitleparser.cpp

  Log Message:
  -----------
  tidy: Deleted functions should be public, not private.

Change the access specifier on four deleted functions from private to
public.

https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-equals-delete.html


  Commit: ab286ae3cf67f98eda6821a04bd87853259ac8bb
      https://github.com/MythTV/mythtv/commit/ab286ae3cf67f98eda6821a04bd87853259ac8bb
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M .clang-tidy

  Log Message:
  -----------
  Add cert, cppcoreguidelines to .clang-tidy.  Reorganize file.


  Commit: a70078165c92b5ea972820e13428f11265c70523
      https://github.com/MythTV/mythtv/commit/a70078165c92b5ea972820e13428f11265c70523
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythtv/libs/libmyth/audio/audiooutpututil.cpp
    M mythtv/libs/libmythbase/housekeeper.cpp
    M mythtv/libs/libmythtv/vbi608extractor.cpp

  Log Message:
  -----------
  Fix warnings that implicit conversion to float changes the value.

There are three warnings about an implicit conversion from into to
float causing the resulting float to be one higher that the original
integer.  Fix two of these by using a static cast, and the third by
using MAXFLOAT instead of INT32_MAX.


  Commit: 9e21ba780b2c891d864ed5c17998e23aca57a7d2
      https://github.com/MythTV/mythtv/commit/9e21ba780b2c891d864ed5c17998e23aca57a7d2
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythtv/libs/libmyth/audio/audiooutputca.cpp

  Log Message:
  -----------
  Fix 'missing field initializer' error on OSX.


  Commit: 6740f649f088d8e3ad8555127af98137e12c4c7e
      https://github.com/MythTV/mythtv/commit/6740f649f088d8e3ad8555127af98137e12c4c7e
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythtv/configure

  Log Message:
  -----------
  Disable the "missing field initializer" warning on CentOS 7.

A large number of initializers have been added as part of the C++11
modernization and the clang-tidy cleanups.  GCC 4.5.2 on CentOS7
doesn't handle the empty structure initializer (aka '{}') properly,
complaining that each of the fields in the structure is uninitialized.


  Commit: 82961e76a4a51bfeb40acbf86b4977cfd95b8e08
      https://github.com/MythTV/mythtv/commit/82961e76a4a51bfeb40acbf86b4977cfd95b8e08
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M mythtv/bindings/perl/MythTV.pm
    M mythtv/bindings/perl/MythTV/Channel.pm
    M mythtv/bindings/php/MythTVChannel.php
    M mythtv/bindings/python/MythTV/dataheap.py
    M mythtv/bindings/python/MythTV/static.py
    M mythtv/external/FFmpeg/.gitignore
    M mythtv/external/FFmpeg/.travis.yml
    M mythtv/external/FFmpeg/Changelog
    M mythtv/external/FFmpeg/INSTALL.md
    M mythtv/external/FFmpeg/LICENSE.md
    M mythtv/external/FFmpeg/MAINTAINERS
    M mythtv/external/FFmpeg/Makefile
    M mythtv/external/FFmpeg/README.sync
    M mythtv/external/FFmpeg/RELEASE
    M mythtv/external/FFmpeg/RELEASE_NOTES
    M mythtv/external/FFmpeg/compat/avisynth/avisynth_c.h
    M mythtv/external/FFmpeg/compat/avisynth/avs/capi.h
    M mythtv/external/FFmpeg/compat/avisynth/avs/config.h
    M mythtv/external/FFmpeg/compat/avisynth/avs/types.h
    A mythtv/external/FFmpeg/compat/cuda/cuda_runtime.h
    M mythtv/external/FFmpeg/compat/cuda/dynlink_loader.h
    M mythtv/external/FFmpeg/compat/cuda/ptx2c.sh
    A mythtv/external/FFmpeg/compat/djgpp/math.c
    A mythtv/external/FFmpeg/compat/djgpp/math.h
    M mythtv/external/FFmpeg/compat/windows/makedef
    M mythtv/external/FFmpeg/compat/windows/mslink
    M mythtv/external/FFmpeg/configure
    M mythtv/external/FFmpeg/doc/APIchanges
    M mythtv/external/FFmpeg/doc/Doxyfile
    M mythtv/external/FFmpeg/doc/bitstream_filters.texi
    M mythtv/external/FFmpeg/doc/build_system.txt
    M mythtv/external/FFmpeg/doc/codecs.texi
    M mythtv/external/FFmpeg/doc/decoders.texi
    M mythtv/external/FFmpeg/doc/demuxers.texi
    M mythtv/external/FFmpeg/doc/encoders.texi
    M mythtv/external/FFmpeg/doc/examples/Makefile
    M mythtv/external/FFmpeg/doc/examples/avio_reading.c
    M mythtv/external/FFmpeg/doc/examples/metadata.c
    M mythtv/external/FFmpeg/doc/faq.texi
    M mythtv/external/FFmpeg/doc/ffmpeg.texi
    M mythtv/external/FFmpeg/doc/ffplay.texi
    M mythtv/external/FFmpeg/doc/ffprobe.texi
    M mythtv/external/FFmpeg/doc/ffprobe.xsd
    M mythtv/external/FFmpeg/doc/fftools-common-opts.texi
    M mythtv/external/FFmpeg/doc/filters.texi
    M mythtv/external/FFmpeg/doc/formats.texi
    M mythtv/external/FFmpeg/doc/general.texi
    M mythtv/external/FFmpeg/doc/indevs.texi
    M mythtv/external/FFmpeg/doc/libav-merge.txt
    M mythtv/external/FFmpeg/doc/mailing-list-faq.texi
    M mythtv/external/FFmpeg/doc/metadata.texi
    M mythtv/external/FFmpeg/doc/muxers.texi
    M mythtv/external/FFmpeg/doc/outdevs.texi
    M mythtv/external/FFmpeg/doc/protocols.texi
    M mythtv/external/FFmpeg/doc/scaler.texi
    M mythtv/external/FFmpeg/doc/snow.txt
    M mythtv/external/FFmpeg/doc/writing_filters.txt
    M mythtv/external/FFmpeg/ffbuild/common.mak
    M mythtv/external/FFmpeg/fftools/Makefile
    M mythtv/external/FFmpeg/fftools/ffmpeg.c
    M mythtv/external/FFmpeg/fftools/ffmpeg.h
    M mythtv/external/FFmpeg/fftools/ffmpeg_filter.c
    M mythtv/external/FFmpeg/fftools/ffmpeg_hw.c
    M mythtv/external/FFmpeg/fftools/ffmpeg_opt.c
    M mythtv/external/FFmpeg/fftools/ffmpeg_videotoolbox.c
    M mythtv/external/FFmpeg/fftools/ffplay.c
    M mythtv/external/FFmpeg/fftools/ffprobe.c
    M mythtv/external/FFmpeg/libavcodec/4xm.c
    M mythtv/external/FFmpeg/libavcodec/Makefile
    M mythtv/external/FFmpeg/libavcodec/a64multienc.c
    M mythtv/external/FFmpeg/libavcodec/aac.h
    M mythtv/external/FFmpeg/libavcodec/aacdec.c
    M mythtv/external/FFmpeg/libavcodec/aacdec_fixed.c
    M mythtv/external/FFmpeg/libavcodec/aacdec_template.c
    M mythtv/external/FFmpeg/libavcodec/aacenc_ltp.c
    M mythtv/external/FFmpeg/libavcodec/aacps.c
    M mythtv/external/FFmpeg/libavcodec/aacpsdsp_template.c
    M mythtv/external/FFmpeg/libavcodec/aarch64/Makefile
    M mythtv/external/FFmpeg/libavcodec/aarch64/asm-offsets.h
    M mythtv/external/FFmpeg/libavcodec/aarch64/h264dsp_init_aarch64.c
    M mythtv/external/FFmpeg/libavcodec/aarch64/h264dsp_neon.S
    M mythtv/external/FFmpeg/libavcodec/aarch64/h264idct_neon.S
    A mythtv/external/FFmpeg/libavcodec/aarch64/opusdsp_init.c
    A mythtv/external/FFmpeg/libavcodec/aarch64/opusdsp_neon.S
    A mythtv/external/FFmpeg/libavcodec/aarch64/vp8dsp.h
    A mythtv/external/FFmpeg/libavcodec/aarch64/vp8dsp_init_aarch64.c
    A mythtv/external/FFmpeg/libavcodec/aarch64/vp8dsp_neon.S
    M mythtv/external/FFmpeg/libavcodec/ac3dec.c
    M mythtv/external/FFmpeg/libavcodec/ac3enc.c
    M mythtv/external/FFmpeg/libavcodec/acelp_pitch_delay.c
    M mythtv/external/FFmpeg/libavcodec/adpcm.c
    A mythtv/external/FFmpeg/libavcodec/agm.c
    M mythtv/external/FFmpeg/libavcodec/aic.c
    M mythtv/external/FFmpeg/libavcodec/alac.c
    M mythtv/external/FFmpeg/libavcodec/allcodecs.c
    M mythtv/external/FFmpeg/libavcodec/alsdec.c
    M mythtv/external/FFmpeg/libavcodec/anm.c
    M mythtv/external/FFmpeg/libavcodec/apedec.c
    A mythtv/external/FFmpeg/libavcodec/arbc.c
    M mythtv/external/FFmpeg/libavcodec/arm/h264dsp_init_arm.c
    M mythtv/external/FFmpeg/libavcodec/arm/h264dsp_neon.S
    M mythtv/external/FFmpeg/libavcodec/arm/vp8dsp_neon.S
    M mythtv/external/FFmpeg/libavcodec/ass_split.c
    M mythtv/external/FFmpeg/libavcodec/assdec.c
    M mythtv/external/FFmpeg/libavcodec/assenc.c
    M mythtv/external/FFmpeg/libavcodec/asvenc.c
    M mythtv/external/FFmpeg/libavcodec/atrac3plus.c
    M mythtv/external/FFmpeg/libavcodec/atrac3plusdsp.c
    M mythtv/external/FFmpeg/libavcodec/atrac9dec.c
    M mythtv/external/FFmpeg/libavcodec/av1.h
    A mythtv/external/FFmpeg/libavcodec/av1_frame_split_bsf.c
    M mythtv/external/FFmpeg/libavcodec/av1_metadata_bsf.c
    M mythtv/external/FFmpeg/libavcodec/av1_parser.c
    M mythtv/external/FFmpeg/libavcodec/avcodec.h
    M mythtv/external/FFmpeg/libavcodec/avpacket.c
    M mythtv/external/FFmpeg/libavcodec/bethsoftvideo.c
    M mythtv/external/FFmpeg/libavcodec/bfi.c
    M mythtv/external/FFmpeg/libavcodec/bgmc.c
    M mythtv/external/FFmpeg/libavcodec/bgmc.h
    M mythtv/external/FFmpeg/libavcodec/bink.c
    M mythtv/external/FFmpeg/libavcodec/binkaudio.c
    M mythtv/external/FFmpeg/libavcodec/binkdsp.c
    M mythtv/external/FFmpeg/libavcodec/bintext.c
    M mythtv/external/FFmpeg/libavcodec/bitstream.c
    M mythtv/external/FFmpeg/libavcodec/bitstream_filters.c
    M mythtv/external/FFmpeg/libavcodec/bmp.c
    M mythtv/external/FFmpeg/libavcodec/brenderpix.c
    M mythtv/external/FFmpeg/libavcodec/bsf.c
    M mythtv/external/FFmpeg/libavcodec/cavsdec.c
    M mythtv/external/FFmpeg/libavcodec/cbs.c
    M mythtv/external/FFmpeg/libavcodec/cbs.h
    M mythtv/external/FFmpeg/libavcodec/cbs_av1.c
    M mythtv/external/FFmpeg/libavcodec/cbs_av1.h
    M mythtv/external/FFmpeg/libavcodec/cbs_av1_syntax_template.c
    M mythtv/external/FFmpeg/libavcodec/cbs_h264.h
    M mythtv/external/FFmpeg/libavcodec/cbs_h2645.c
    M mythtv/external/FFmpeg/libavcodec/cbs_h264_syntax_template.c
    M mythtv/external/FFmpeg/libavcodec/cbs_h265.h
    M mythtv/external/FFmpeg/libavcodec/cbs_h265_syntax_template.c
    M mythtv/external/FFmpeg/libavcodec/cbs_internal.h
    M mythtv/external/FFmpeg/libavcodec/cbs_jpeg.c
    M mythtv/external/FFmpeg/libavcodec/cbs_mpeg2.c
    M mythtv/external/FFmpeg/libavcodec/cbs_mpeg2.h
    M mythtv/external/FFmpeg/libavcodec/cbs_mpeg2_syntax_template.c
    M mythtv/external/FFmpeg/libavcodec/cbs_vp9.c
    M mythtv/external/FFmpeg/libavcodec/cbs_vp9_syntax_template.c
    M mythtv/external/FFmpeg/libavcodec/ccaption_dec.c
    M mythtv/external/FFmpeg/libavcodec/cdgraphics.c
    M mythtv/external/FFmpeg/libavcodec/cfhd.c
    M mythtv/external/FFmpeg/libavcodec/cinepak.c
    M mythtv/external/FFmpeg/libavcodec/clearvideo.c
    M mythtv/external/FFmpeg/libavcodec/cngdec.c
    M mythtv/external/FFmpeg/libavcodec/codec_desc.c
    M mythtv/external/FFmpeg/libavcodec/cookdata.h
    M mythtv/external/FFmpeg/libavcodec/cpia.c
    M mythtv/external/FFmpeg/libavcodec/cuviddec.c
    M mythtv/external/FFmpeg/libavcodec/dcaenc.c
    M mythtv/external/FFmpeg/libavcodec/dct.c
    M mythtv/external/FFmpeg/libavcodec/dds.c
    M mythtv/external/FFmpeg/libavcodec/decode.c
    M mythtv/external/FFmpeg/libavcodec/dfa.c
    M mythtv/external/FFmpeg/libavcodec/dirac_arith.c
    M mythtv/external/FFmpeg/libavcodec/dirac_arith.h
    M mythtv/external/FFmpeg/libavcodec/dirac_parser.c
    M mythtv/external/FFmpeg/libavcodec/diracdec.c
    M mythtv/external/FFmpeg/libavcodec/dnxhd_parser.c
    M mythtv/external/FFmpeg/libavcodec/dnxhddec.c
    M mythtv/external/FFmpeg/libavcodec/dpx.c
    M mythtv/external/FFmpeg/libavcodec/dsicinvideo.c
    M mythtv/external/FFmpeg/libavcodec/dstdec.c
    M mythtv/external/FFmpeg/libavcodec/dump_extradata_bsf.c
    M mythtv/external/FFmpeg/libavcodec/dvbsub.c
    M mythtv/external/FFmpeg/libavcodec/dvbsubdec.c
    M mythtv/external/FFmpeg/libavcodec/dvdec.c
    M mythtv/external/FFmpeg/libavcodec/dvdsubdec.c
    M mythtv/external/FFmpeg/libavcodec/dxtory.c
    M mythtv/external/FFmpeg/libavcodec/dxv.c
    M mythtv/external/FFmpeg/libavcodec/eac3dec.c
    M mythtv/external/FFmpeg/libavcodec/eacmv.c
    M mythtv/external/FFmpeg/libavcodec/eatgv.c
    M mythtv/external/FFmpeg/libavcodec/eatqi.c
    M mythtv/external/FFmpeg/libavcodec/error_resilience.c
    M mythtv/external/FFmpeg/libavcodec/extract_extradata_bsf.c
    M mythtv/external/FFmpeg/libavcodec/fft_template.c
    M mythtv/external/FFmpeg/libavcodec/ffv1.h
    M mythtv/external/FFmpeg/libavcodec/ffv1dec_template.c
    M mythtv/external/FFmpeg/libavcodec/ffv1enc.c
    M mythtv/external/FFmpeg/libavcodec/ffwavesynth.c
    M mythtv/external/FFmpeg/libavcodec/fic.c
    M mythtv/external/FFmpeg/libavcodec/filter_units_bsf.c
    M mythtv/external/FFmpeg/libavcodec/fits.c
    M mythtv/external/FFmpeg/libavcodec/fitsdec.c
    M mythtv/external/FFmpeg/libavcodec/flashsv.c
    M mythtv/external/FFmpeg/libavcodec/flicvideo.c
    M mythtv/external/FFmpeg/libavcodec/fmvc.c
    M mythtv/external/FFmpeg/libavcodec/g722dec.c
    M mythtv/external/FFmpeg/libavcodec/g723_1.h
    A mythtv/external/FFmpeg/libavcodec/g723_1_parser.c
    M mythtv/external/FFmpeg/libavcodec/g723_1dec.c
    M mythtv/external/FFmpeg/libavcodec/g723_1enc.c
    M mythtv/external/FFmpeg/libavcodec/g729_parser.c
    M mythtv/external/FFmpeg/libavcodec/g729dec.c
    M mythtv/external/FFmpeg/libavcodec/gdv.c
    M mythtv/external/FFmpeg/libavcodec/get_bits.h
    M mythtv/external/FFmpeg/libavcodec/gif.c
    M mythtv/external/FFmpeg/libavcodec/gif.h
    A mythtv/external/FFmpeg/libavcodec/gif_parser.c
    M mythtv/external/FFmpeg/libavcodec/gifdec.c
    M mythtv/external/FFmpeg/libavcodec/golomb.h
    M mythtv/external/FFmpeg/libavcodec/h263dec.c
    M mythtv/external/FFmpeg/libavcodec/h2645_parse.c
    M mythtv/external/FFmpeg/libavcodec/h2645_parse.h
    M mythtv/external/FFmpeg/libavcodec/h264_cavlc.c
    M mythtv/external/FFmpeg/libavcodec/h264_direct.c
    M mythtv/external/FFmpeg/libavcodec/h264_levels.c
    M mythtv/external/FFmpeg/libavcodec/h264_levels.h
    M mythtv/external/FFmpeg/libavcodec/h264_metadata_bsf.c
    M mythtv/external/FFmpeg/libavcodec/h264_parse.c
    M mythtv/external/FFmpeg/libavcodec/h264_ps.c
    M mythtv/external/FFmpeg/libavcodec/h264_ps.h
    M mythtv/external/FFmpeg/libavcodec/h264_redundant_pps_bsf.c
    M mythtv/external/FFmpeg/libavcodec/h264_refs.c
    M mythtv/external/FFmpeg/libavcodec/h264_slice.c
    M mythtv/external/FFmpeg/libavcodec/h264dec.c
    M mythtv/external/FFmpeg/libavcodec/h264dsp.h
    M mythtv/external/FFmpeg/libavcodec/h264dsp_template.c
    M mythtv/external/FFmpeg/libavcodec/h265_metadata_bsf.c
    M mythtv/external/FFmpeg/libavcodec/h265_profile_level.c
    M mythtv/external/FFmpeg/libavcodec/h265_profile_level.h
    A mythtv/external/FFmpeg/libavcodec/hcom.c
    M mythtv/external/FFmpeg/libavcodec/hevc.h
    M mythtv/external/FFmpeg/libavcodec/hevc_parse.c
    M mythtv/external/FFmpeg/libavcodec/hevc_parser.c
    M mythtv/external/FFmpeg/libavcodec/hevc_ps.c
    M mythtv/external/FFmpeg/libavcodec/hevc_ps.h
    M mythtv/external/FFmpeg/libavcodec/hevc_ps_enc.c
    M mythtv/external/FFmpeg/libavcodec/hevc_refs.c
    M mythtv/external/FFmpeg/libavcodec/hevc_sei.h
    M mythtv/external/FFmpeg/libavcodec/hevcdec.c
    M mythtv/external/FFmpeg/libavcodec/hevcdec.h
    M mythtv/external/FFmpeg/libavcodec/hnm4video.c
    M mythtv/external/FFmpeg/libavcodec/hq_hqa.c
    M mythtv/external/FFmpeg/libavcodec/htmlsubtitles.c
    M mythtv/external/FFmpeg/libavcodec/huffyuvdec.c
    M mythtv/external/FFmpeg/libavcodec/huffyuvenc.c
    M mythtv/external/FFmpeg/libavcodec/idcinvideo.c
    M mythtv/external/FFmpeg/libavcodec/iff.c
    M mythtv/external/FFmpeg/libavcodec/ilbcdec.c
    M mythtv/external/FFmpeg/libavcodec/imc.c
    M mythtv/external/FFmpeg/libavcodec/imm4.c
    M mythtv/external/FFmpeg/libavcodec/indeo2.c
    M mythtv/external/FFmpeg/libavcodec/internal.h
    M mythtv/external/FFmpeg/libavcodec/interplayvideo.c
    M mythtv/external/FFmpeg/libavcodec/ivi.c
    M mythtv/external/FFmpeg/libavcodec/jpeg2000.c
    M mythtv/external/FFmpeg/libavcodec/jpeg2000dec.c
    M mythtv/external/FFmpeg/libavcodec/jpeg2000dwt.c
    M mythtv/external/FFmpeg/libavcodec/jrevdct.c
    M mythtv/external/FFmpeg/libavcodec/jvdec.c
    M mythtv/external/FFmpeg/libavcodec/lagarith.c
    M mythtv/external/FFmpeg/libavcodec/libaomenc.c
    A mythtv/external/FFmpeg/libavcodec/libaribb24.c
    A mythtv/external/FFmpeg/libavcodec/libdav1d.c
    M mythtv/external/FFmpeg/libavcodec/libdavs2.c
    M mythtv/external/FFmpeg/libavcodec/libgsmenc.c
    M mythtv/external/FFmpeg/libavcodec/libkvazaar.c
    M mythtv/external/FFmpeg/libavcodec/libopenh264dec.c
    M mythtv/external/FFmpeg/libavcodec/libopenh264enc.c
    M mythtv/external/FFmpeg/libavcodec/libopusdec.c
    M mythtv/external/FFmpeg/libavcodec/libvorbisdec.c
    M mythtv/external/FFmpeg/libavcodec/libvpxenc.c
    M mythtv/external/FFmpeg/libavcodec/libx264.c
    M mythtv/external/FFmpeg/libavcodec/libx265.c
    M mythtv/external/FFmpeg/libavcodec/libxavs2.c
    M mythtv/external/FFmpeg/libavcodec/loco.c
    M mythtv/external/FFmpeg/libavcodec/lzw.c
    M mythtv/external/FFmpeg/libavcodec/m101.c
    M mythtv/external/FFmpeg/libavcodec/magicyuv.c
    M mythtv/external/FFmpeg/libavcodec/mediacodec_wrapper.c
    M mythtv/external/FFmpeg/libavcodec/mediacodec_wrapper.h
    M mythtv/external/FFmpeg/libavcodec/mediacodecdec.c
    M mythtv/external/FFmpeg/libavcodec/mediacodecdec_common.c
    M mythtv/external/FFmpeg/libavcodec/mips/Makefile
    M mythtv/external/FFmpeg/libavcodec/mips/blockdsp_init_mips.c
    M mythtv/external/FFmpeg/libavcodec/mips/cabac.h
    M mythtv/external/FFmpeg/libavcodec/mips/h263dsp_msa.c
    M mythtv/external/FFmpeg/libavcodec/mips/h264chroma_init_mips.c
    M mythtv/external/FFmpeg/libavcodec/mips/h264chroma_mmi.c
    M mythtv/external/FFmpeg/libavcodec/mips/h264chroma_msa.c
    M mythtv/external/FFmpeg/libavcodec/mips/h264dsp_init_mips.c
    M mythtv/external/FFmpeg/libavcodec/mips/h264dsp_msa.c
    M mythtv/external/FFmpeg/libavcodec/mips/h264idct_msa.c
    M mythtv/external/FFmpeg/libavcodec/mips/h264pred_init_mips.c
    M mythtv/external/FFmpeg/libavcodec/mips/h264qpel_init_mips.c
    M mythtv/external/FFmpeg/libavcodec/mips/h264qpel_msa.c
    M mythtv/external/FFmpeg/libavcodec/mips/hevc_idct_msa.c
    M mythtv/external/FFmpeg/libavcodec/mips/hevc_lpf_sao_msa.c
    M mythtv/external/FFmpeg/libavcodec/mips/hevc_mc_bi_msa.c
    M mythtv/external/FFmpeg/libavcodec/mips/hevc_mc_biw_msa.c
    M mythtv/external/FFmpeg/libavcodec/mips/hevc_mc_uni_msa.c
    M mythtv/external/FFmpeg/libavcodec/mips/hevc_mc_uniw_msa.c
    M mythtv/external/FFmpeg/libavcodec/mips/hevcdsp_init_mips.c
    M mythtv/external/FFmpeg/libavcodec/mips/hevcdsp_mips.h
    A mythtv/external/FFmpeg/libavcodec/mips/hevcdsp_mmi.c
    M mythtv/external/FFmpeg/libavcodec/mips/hevcdsp_msa.c
    M mythtv/external/FFmpeg/libavcodec/mips/hevcpred_msa.c
    M mythtv/external/FFmpeg/libavcodec/mips/hpeldsp_init_mips.c
    M mythtv/external/FFmpeg/libavcodec/mips/hpeldsp_msa.c
    M mythtv/external/FFmpeg/libavcodec/mips/idctdsp_init_mips.c
    M mythtv/external/FFmpeg/libavcodec/mips/mpegvideo_init_mips.c
    M mythtv/external/FFmpeg/libavcodec/mips/mpegvideo_mmi.c
    M mythtv/external/FFmpeg/libavcodec/mips/pixblockdsp_init_mips.c
    M mythtv/external/FFmpeg/libavcodec/mips/qpeldsp_msa.c
    A mythtv/external/FFmpeg/libavcodec/mips/vp3dsp_idct_mmi.c
    A mythtv/external/FFmpeg/libavcodec/mips/vp3dsp_idct_msa.c
    A mythtv/external/FFmpeg/libavcodec/mips/vp3dsp_init_mips.c
    A mythtv/external/FFmpeg/libavcodec/mips/vp3dsp_mips.h
    M mythtv/external/FFmpeg/libavcodec/mips/vp8_idct_msa.c
    M mythtv/external/FFmpeg/libavcodec/mips/vp8_lpf_msa.c
    M mythtv/external/FFmpeg/libavcodec/mips/vp8_mc_msa.c
    M mythtv/external/FFmpeg/libavcodec/mips/vp8dsp_init_mips.c
    M mythtv/external/FFmpeg/libavcodec/mips/vp9_idct_msa.c
    M mythtv/external/FFmpeg/libavcodec/mips/vp9_intra_msa.c
    M mythtv/external/FFmpeg/libavcodec/mips/vp9_lpf_msa.c
    A mythtv/external/FFmpeg/libavcodec/mips/vp9_mc_mmi.c
    M mythtv/external/FFmpeg/libavcodec/mips/vp9_mc_msa.c
    M mythtv/external/FFmpeg/libavcodec/mips/vp9dsp_init_mips.c
    M mythtv/external/FFmpeg/libavcodec/mips/vp9dsp_mips.h
    M mythtv/external/FFmpeg/libavcodec/mjpegbdec.c
    M mythtv/external/FFmpeg/libavcodec/mjpegdec.c
    M mythtv/external/FFmpeg/libavcodec/mjpegenc.c
    A mythtv/external/FFmpeg/libavcodec/mlp_parse.c
    A mythtv/external/FFmpeg/libavcodec/mlp_parse.h
    M mythtv/external/FFmpeg/libavcodec/mlp_parser.c
    R mythtv/external/FFmpeg/libavcodec/mlp_parser.h
    M mythtv/external/FFmpeg/libavcodec/mlpdec.c
    M mythtv/external/FFmpeg/libavcodec/mlpenc.c
    M mythtv/external/FFmpeg/libavcodec/motion_est.c
    M mythtv/external/FFmpeg/libavcodec/motion_est_template.c
    M mythtv/external/FFmpeg/libavcodec/motionpixels.c
    M mythtv/external/FFmpeg/libavcodec/movsub_bsf.c
    M mythtv/external/FFmpeg/libavcodec/mpc8.c
    M mythtv/external/FFmpeg/libavcodec/mpeg12enc.c
    M mythtv/external/FFmpeg/libavcodec/mpeg2_metadata_bsf.c
    M mythtv/external/FFmpeg/libavcodec/mpeg4_unpack_bframes_bsf.c
    M mythtv/external/FFmpeg/libavcodec/mpeg4audio.c
    M mythtv/external/FFmpeg/libavcodec/mpeg4video.h
    M mythtv/external/FFmpeg/libavcodec/mpeg4video_parser.c
    M mythtv/external/FFmpeg/libavcodec/mpeg4videodec.c
    M mythtv/external/FFmpeg/libavcodec/mpegpicture.c
    M mythtv/external/FFmpeg/libavcodec/mpegvideo.c
    M mythtv/external/FFmpeg/libavcodec/mpegvideo.h
    M mythtv/external/FFmpeg/libavcodec/mpegvideo_enc.c
    M mythtv/external/FFmpeg/libavcodec/mss1.c
    M mythtv/external/FFmpeg/libavcodec/mss12.c
    M mythtv/external/FFmpeg/libavcodec/mss12.h
    M mythtv/external/FFmpeg/libavcodec/mss2.c
    M mythtv/external/FFmpeg/libavcodec/mss3.c
    M mythtv/external/FFmpeg/libavcodec/mss4.c
    M mythtv/external/FFmpeg/libavcodec/nuv.c
    M mythtv/external/FFmpeg/libavcodec/nvdec.c
    M mythtv/external/FFmpeg/libavcodec/nvdec.h
    M mythtv/external/FFmpeg/libavcodec/nvdec_h264.c
    M mythtv/external/FFmpeg/libavcodec/nvdec_hevc.c
    M mythtv/external/FFmpeg/libavcodec/nvdec_mjpeg.c
    M mythtv/external/FFmpeg/libavcodec/nvdec_mpeg12.c
    M mythtv/external/FFmpeg/libavcodec/nvdec_mpeg4.c
    M mythtv/external/FFmpeg/libavcodec/nvdec_vc1.c
    M mythtv/external/FFmpeg/libavcodec/nvdec_vp8.c
    M mythtv/external/FFmpeg/libavcodec/nvdec_vp9.c
    M mythtv/external/FFmpeg/libavcodec/nvenc.c
    M mythtv/external/FFmpeg/libavcodec/nvenc.h
    M mythtv/external/FFmpeg/libavcodec/nvenc_hevc.c
    M mythtv/external/FFmpeg/libavcodec/omx.c
    M mythtv/external/FFmpeg/libavcodec/options.c
    M mythtv/external/FFmpeg/libavcodec/options_table.h
    M mythtv/external/FFmpeg/libavcodec/opus.c
    M mythtv/external/FFmpeg/libavcodec/opus.h
    M mythtv/external/FFmpeg/libavcodec/opus_celt.c
    M mythtv/external/FFmpeg/libavcodec/opus_celt.h
    M mythtv/external/FFmpeg/libavcodec/opus_pvq.c
    M mythtv/external/FFmpeg/libavcodec/opus_pvq.h
    M mythtv/external/FFmpeg/libavcodec/opus_rc.c
    A mythtv/external/FFmpeg/libavcodec/opusdsp.c
    A mythtv/external/FFmpeg/libavcodec/opusdsp.h
    M mythtv/external/FFmpeg/libavcodec/opusenc.c
    M mythtv/external/FFmpeg/libavcodec/pafvideo.c
    M mythtv/external/FFmpeg/libavcodec/parser.c
    M mythtv/external/FFmpeg/libavcodec/parsers.c
    A mythtv/external/FFmpeg/libavcodec/pcm-dvdenc.c
    M mythtv/external/FFmpeg/libavcodec/pgssubdec.c
    M mythtv/external/FFmpeg/libavcodec/pictordec.c
    M mythtv/external/FFmpeg/libavcodec/pngdec.c
    M mythtv/external/FFmpeg/libavcodec/pngenc.c
    M mythtv/external/FFmpeg/libavcodec/pnm.c
    M mythtv/external/FFmpeg/libavcodec/pnm_parser.c
    M mythtv/external/FFmpeg/libavcodec/ppc/h264dsp.c
    M mythtv/external/FFmpeg/libavcodec/profiles.c
    M mythtv/external/FFmpeg/libavcodec/profiles.h
    A mythtv/external/FFmpeg/libavcodec/prores_metadata_bsf.c
    M mythtv/external/FFmpeg/libavcodec/proresdec.h
    M mythtv/external/FFmpeg/libavcodec/proresdec2.c
    M mythtv/external/FFmpeg/libavcodec/proresdsp.c
    M mythtv/external/FFmpeg/libavcodec/proresdsp.h
    M mythtv/external/FFmpeg/libavcodec/proresenc_anatoliy.c
    M mythtv/external/FFmpeg/libavcodec/proresenc_kostya.c
    M mythtv/external/FFmpeg/libavcodec/prosumer.c
    M mythtv/external/FFmpeg/libavcodec/psd.c
    M mythtv/external/FFmpeg/libavcodec/qdm2.c
    M mythtv/external/FFmpeg/libavcodec/qdmc.c
    M mythtv/external/FFmpeg/libavcodec/qpeg.c
    M mythtv/external/FFmpeg/libavcodec/qsv.c
    M mythtv/external/FFmpeg/libavcodec/qsv_internal.h
    M mythtv/external/FFmpeg/libavcodec/qsvdec.c
    M mythtv/external/FFmpeg/libavcodec/qsvdec.h
    M mythtv/external/FFmpeg/libavcodec/qsvdec_h2645.c
    M mythtv/external/FFmpeg/libavcodec/qsvdec_other.c
    M mythtv/external/FFmpeg/libavcodec/qsvenc.c
    M mythtv/external/FFmpeg/libavcodec/qsvenc.h
    M mythtv/external/FFmpeg/libavcodec/qsvenc_h264.c
    M mythtv/external/FFmpeg/libavcodec/qsvenc_hevc.c
    M mythtv/external/FFmpeg/libavcodec/qsvenc_jpeg.c
    M mythtv/external/FFmpeg/libavcodec/qsvenc_mpeg2.c
    M mythtv/external/FFmpeg/libavcodec/qtrle.c
    M mythtv/external/FFmpeg/libavcodec/r210dec.c
    M mythtv/external/FFmpeg/libavcodec/r210enc.c
    M mythtv/external/FFmpeg/libavcodec/ralf.c
    M mythtv/external/FFmpeg/libavcodec/rangecoder.c
    M mythtv/external/FFmpeg/libavcodec/rangecoder.h
    M mythtv/external/FFmpeg/libavcodec/rasc.c
    M mythtv/external/FFmpeg/libavcodec/raw.c
    M mythtv/external/FFmpeg/libavcodec/rl2.c
    M mythtv/external/FFmpeg/libavcodec/rscc.c
    M mythtv/external/FFmpeg/libavcodec/rv10.c
    M mythtv/external/FFmpeg/libavcodec/sanm.c
    M mythtv/external/FFmpeg/libavcodec/sbrdsp_fixed.c
    M mythtv/external/FFmpeg/libavcodec/scpr.c
    A mythtv/external/FFmpeg/libavcodec/scpr.h
    A mythtv/external/FFmpeg/libavcodec/scpr3.c
    A mythtv/external/FFmpeg/libavcodec/scpr3.h
    M mythtv/external/FFmpeg/libavcodec/simple_idct.c
    M mythtv/external/FFmpeg/libavcodec/simple_idct.h
    M mythtv/external/FFmpeg/libavcodec/simple_idct_template.c
    M mythtv/external/FFmpeg/libavcodec/snowenc.c
    M mythtv/external/FFmpeg/libavcodec/sonic.c
    M mythtv/external/FFmpeg/libavcodec/svq3.c
    M mythtv/external/FFmpeg/libavcodec/tableprint_vlc.h
    M mythtv/external/FFmpeg/libavcodec/tak_parser.c
    M mythtv/external/FFmpeg/libavcodec/tests/.gitignore
    M mythtv/external/FFmpeg/libavcodec/tests/dct.c
    M mythtv/external/FFmpeg/libavcodec/tests/h264_levels.c
    A mythtv/external/FFmpeg/libavcodec/tests/h265_levels.c
    M mythtv/external/FFmpeg/libavcodec/tests/rangecoder.c
    M mythtv/external/FFmpeg/libavcodec/tiff.c
    M mythtv/external/FFmpeg/libavcodec/tiff.h
    M mythtv/external/FFmpeg/libavcodec/trace_headers_bsf.c
    A mythtv/external/FFmpeg/libavcodec/truehd_core_bsf.c
    M mythtv/external/FFmpeg/libavcodec/truemotion2.c
    M mythtv/external/FFmpeg/libavcodec/tta.c
    M mythtv/external/FFmpeg/libavcodec/utils.c
    M mythtv/external/FFmpeg/libavcodec/utvideodec.c
    M mythtv/external/FFmpeg/libavcodec/v210dec.c
    M mythtv/external/FFmpeg/libavcodec/v210dec.h
    M mythtv/external/FFmpeg/libavcodec/v4l2_m2m_dec.c
    M mythtv/external/FFmpeg/libavcodec/vaapi_encode.c
    M mythtv/external/FFmpeg/libavcodec/vaapi_encode.h
    M mythtv/external/FFmpeg/libavcodec/vaapi_encode_h264.c
    M mythtv/external/FFmpeg/libavcodec/vaapi_encode_h265.c
    M mythtv/external/FFmpeg/libavcodec/vaapi_encode_mjpeg.c
    M mythtv/external/FFmpeg/libavcodec/vaapi_encode_mpeg2.c
    M mythtv/external/FFmpeg/libavcodec/vaapi_encode_vp8.c
    M mythtv/external/FFmpeg/libavcodec/vaapi_encode_vp9.c
    M mythtv/external/FFmpeg/libavcodec/vaapi_h264.c
    M mythtv/external/FFmpeg/libavcodec/vaapi_hevc.c
    M mythtv/external/FFmpeg/libavcodec/vb.c
    M mythtv/external/FFmpeg/libavcodec/vc1.c
    M mythtv/external/FFmpeg/libavcodec/vc1_block.c
    M mythtv/external/FFmpeg/libavcodec/vc1_parser.c
    M mythtv/external/FFmpeg/libavcodec/vc1_pred.c
    M mythtv/external/FFmpeg/libavcodec/vc1dec.c
    M mythtv/external/FFmpeg/libavcodec/vc1dsp.c
    M mythtv/external/FFmpeg/libavcodec/vdpau_hevc.c
    M mythtv/external/FFmpeg/libavcodec/vdpau_internal.h
    M mythtv/external/FFmpeg/libavcodec/version.h
    M mythtv/external/FFmpeg/libavcodec/videodsp_template.c
    M mythtv/external/FFmpeg/libavcodec/videotoolbox.c
    M mythtv/external/FFmpeg/libavcodec/videotoolboxenc.c
    M mythtv/external/FFmpeg/libavcodec/vmnc.c
    M mythtv/external/FFmpeg/libavcodec/vorbisdec.c
    M mythtv/external/FFmpeg/libavcodec/vp3.c
    M mythtv/external/FFmpeg/libavcodec/vp3data.h
    M mythtv/external/FFmpeg/libavcodec/vp3dsp.c
    M mythtv/external/FFmpeg/libavcodec/vp3dsp.h
    A mythtv/external/FFmpeg/libavcodec/vp4data.h
    M mythtv/external/FFmpeg/libavcodec/vp5.c
    M mythtv/external/FFmpeg/libavcodec/vp56.c
    M mythtv/external/FFmpeg/libavcodec/vp56.h
    M mythtv/external/FFmpeg/libavcodec/vp56dsp.c
    M mythtv/external/FFmpeg/libavcodec/vp6.c
    M mythtv/external/FFmpeg/libavcodec/vp8.c
    M mythtv/external/FFmpeg/libavcodec/vp8dsp.c
    M mythtv/external/FFmpeg/libavcodec/vp8dsp.h
    M mythtv/external/FFmpeg/libavcodec/vp9.c
    M mythtv/external/FFmpeg/libavcodec/vp9_metadata_bsf.c
    M mythtv/external/FFmpeg/libavcodec/vp9_raw_reorder_bsf.c
    M mythtv/external/FFmpeg/libavcodec/vp9_superframe_bsf.c
    M mythtv/external/FFmpeg/libavcodec/vqavideo.c
    M mythtv/external/FFmpeg/libavcodec/wavpack.c
    M mythtv/external/FFmpeg/libavcodec/wavpackenc.c
    M mythtv/external/FFmpeg/libavcodec/wavpackenc.h
    M mythtv/external/FFmpeg/libavcodec/wcmv.c
    M mythtv/external/FFmpeg/libavcodec/wmaprodec.c
    M mythtv/external/FFmpeg/libavcodec/wmavoice.c
    M mythtv/external/FFmpeg/libavcodec/wmv2dec.c
    M mythtv/external/FFmpeg/libavcodec/x86/Makefile
    A mythtv/external/FFmpeg/libavcodec/x86/celt_pvq_init.c
    A mythtv/external/FFmpeg/libavcodec/x86/celt_pvq_search.asm
    M mythtv/external/FFmpeg/libavcodec/x86/h264dsp_init.c
    R mythtv/external/FFmpeg/libavcodec/x86/opus_dsp_init.c
    R mythtv/external/FFmpeg/libavcodec/x86/opus_pvq_search.asm
    A mythtv/external/FFmpeg/libavcodec/x86/opusdsp.asm
    A mythtv/external/FFmpeg/libavcodec/x86/opusdsp_init.c
    M mythtv/external/FFmpeg/libavcodec/x86/proresdsp_init.c
    M mythtv/external/FFmpeg/libavcodec/x86/v210-init.c
    M mythtv/external/FFmpeg/libavcodec/x86/v210.asm
    M mythtv/external/FFmpeg/libavcodec/xfacedec.c
    M mythtv/external/FFmpeg/libavcodec/xpmdec.c
    M mythtv/external/FFmpeg/libavcodec/zmbv.c
    M mythtv/external/FFmpeg/libavcodec/zmbvenc.c
    M mythtv/external/FFmpeg/libavdevice/Makefile
    M mythtv/external/FFmpeg/libavdevice/alldevices.c
    M mythtv/external/FFmpeg/libavdevice/alsa.c
    M mythtv/external/FFmpeg/libavdevice/avfoundation.m
    M mythtv/external/FFmpeg/libavdevice/decklink_common.cpp
    M mythtv/external/FFmpeg/libavdevice/decklink_common.h
    M mythtv/external/FFmpeg/libavdevice/decklink_common_c.h
    M mythtv/external/FFmpeg/libavdevice/decklink_dec.cpp
    M mythtv/external/FFmpeg/libavdevice/decklink_enc.cpp
    M mythtv/external/FFmpeg/libavdevice/decklink_enc_c.c
    M mythtv/external/FFmpeg/libavdevice/dshow.c
    M mythtv/external/FFmpeg/libavdevice/dshow_pin.c
    M mythtv/external/FFmpeg/libavdevice/gdigrab.c
    M mythtv/external/FFmpeg/libavdevice/iec61883.c
    R mythtv/external/FFmpeg/libavdevice/libndi_newtek_common.h
    R mythtv/external/FFmpeg/libavdevice/libndi_newtek_dec.c
    R mythtv/external/FFmpeg/libavdevice/libndi_newtek_enc.c
    M mythtv/external/FFmpeg/libavdevice/opengl_enc.c
    M mythtv/external/FFmpeg/libavdevice/v4l2-common.c
    M mythtv/external/FFmpeg/libavdevice/v4l2.c
    M mythtv/external/FFmpeg/libavdevice/version.h
    M mythtv/external/FFmpeg/libavdevice/xcbgrab.c
    M mythtv/external/FFmpeg/libavfilter/Makefile
    M mythtv/external/FFmpeg/libavfilter/af_acrossover.c
    M mythtv/external/FFmpeg/libavfilter/af_adeclick.c
    M mythtv/external/FFmpeg/libavfilter/af_adelay.c
    M mythtv/external/FFmpeg/libavfilter/af_aecho.c
    M mythtv/external/FFmpeg/libavfilter/af_afade.c
    M mythtv/external/FFmpeg/libavfilter/af_afftdn.c
    M mythtv/external/FFmpeg/libavfilter/af_afftfilt.c
    M mythtv/external/FFmpeg/libavfilter/af_afir.c
    M mythtv/external/FFmpeg/libavfilter/af_afir.h
    M mythtv/external/FFmpeg/libavfilter/af_agate.c
    M mythtv/external/FFmpeg/libavfilter/af_aiir.c
    M mythtv/external/FFmpeg/libavfilter/af_amerge.c
    M mythtv/external/FFmpeg/libavfilter/af_amultiply.c
    A mythtv/external/FFmpeg/libavfilter/af_anlmdn.c
    A mythtv/external/FFmpeg/libavfilter/af_anlmdndsp.h
    M mythtv/external/FFmpeg/libavfilter/af_apad.c
    M mythtv/external/FFmpeg/libavfilter/af_asetnsamples.c
    A mythtv/external/FFmpeg/libavfilter/af_asoftclip.c
    A mythtv/external/FFmpeg/libavfilter/af_asr.c
    M mythtv/external/FFmpeg/libavfilter/af_astats.c
    M mythtv/external/FFmpeg/libavfilter/af_atempo.c
    M mythtv/external/FFmpeg/libavfilter/af_biquads.c
    M mythtv/external/FFmpeg/libavfilter/af_crossfeed.c
    A mythtv/external/FFmpeg/libavfilter/af_deesser.c
    M mythtv/external/FFmpeg/libavfilter/af_dynaudnorm.c
    M mythtv/external/FFmpeg/libavfilter/af_extrastereo.c
    M mythtv/external/FFmpeg/libavfilter/af_headphone.c
    M mythtv/external/FFmpeg/libavfilter/af_ladspa.c
    M mythtv/external/FFmpeg/libavfilter/af_rubberband.c
    M mythtv/external/FFmpeg/libavfilter/af_sidechaincompress.c
    M mythtv/external/FFmpeg/libavfilter/af_silenceremove.c
    M mythtv/external/FFmpeg/libavfilter/af_sofalizer.c
    M mythtv/external/FFmpeg/libavfilter/af_stereowiden.c
    M mythtv/external/FFmpeg/libavfilter/af_superequalizer.c
    M mythtv/external/FFmpeg/libavfilter/af_surround.c
    M mythtv/external/FFmpeg/libavfilter/allfilters.c
    M mythtv/external/FFmpeg/libavfilter/avf_abitscope.c
    M mythtv/external/FFmpeg/libavfilter/avf_ahistogram.c
    M mythtv/external/FFmpeg/libavfilter/avf_aphasemeter.c
    M mythtv/external/FFmpeg/libavfilter/avf_avectorscope.c
    M mythtv/external/FFmpeg/libavfilter/avf_showfreqs.c
    A mythtv/external/FFmpeg/libavfilter/avf_showspatial.c
    M mythtv/external/FFmpeg/libavfilter/avf_showspectrum.c
    M mythtv/external/FFmpeg/libavfilter/avf_showvolume.c
    M mythtv/external/FFmpeg/libavfilter/avf_showwaves.c
    M mythtv/external/FFmpeg/libavfilter/blend.h
    M mythtv/external/FFmpeg/libavfilter/buffersink.c
    M mythtv/external/FFmpeg/libavfilter/buffersrc.c
    M mythtv/external/FFmpeg/libavfilter/bwdif.h
    M mythtv/external/FFmpeg/libavfilter/colorspace.c
    M mythtv/external/FFmpeg/libavfilter/colorspace.h
    M mythtv/external/FFmpeg/libavfilter/dnn_backend_native.c
    M mythtv/external/FFmpeg/libavfilter/dnn_backend_native.h
    M mythtv/external/FFmpeg/libavfilter/dnn_backend_tf.c
    M mythtv/external/FFmpeg/libavfilter/dnn_backend_tf.h
    M mythtv/external/FFmpeg/libavfilter/dnn_interface.h
    M mythtv/external/FFmpeg/libavfilter/ebur128.c
    M mythtv/external/FFmpeg/libavfilter/f_drawgraph.c
    M mythtv/external/FFmpeg/libavfilter/f_ebur128.c
    M mythtv/external/FFmpeg/libavfilter/f_graphmonitor.c
    M mythtv/external/FFmpeg/libavfilter/f_interleave.c
    M mythtv/external/FFmpeg/libavfilter/f_loop.c
    M mythtv/external/FFmpeg/libavfilter/f_realtime.c
    M mythtv/external/FFmpeg/libavfilter/f_select.c
    M mythtv/external/FFmpeg/libavfilter/f_sidedata.c
    M mythtv/external/FFmpeg/libavfilter/framerate.h
    M mythtv/external/FFmpeg/libavfilter/framesync.c
    A mythtv/external/FFmpeg/libavfilter/gblur.h
    M mythtv/external/FFmpeg/libavfilter/opencl.c
    M mythtv/external/FFmpeg/libavfilter/opencl.h
    A mythtv/external/FFmpeg/libavfilter/opencl/colorkey.cl
    M mythtv/external/FFmpeg/libavfilter/opencl/colorspace_common.cl
    A mythtv/external/FFmpeg/libavfilter/opencl/nlmeans.cl
    A mythtv/external/FFmpeg/libavfilter/opencl/transpose.cl
    M mythtv/external/FFmpeg/libavfilter/opencl_source.h
    M mythtv/external/FFmpeg/libavfilter/qsvvpp.c
    M mythtv/external/FFmpeg/libavfilter/qsvvpp.h
    A mythtv/external/FFmpeg/libavfilter/scene_sad.c
    A mythtv/external/FFmpeg/libavfilter/scene_sad.h
    M mythtv/external/FFmpeg/libavfilter/split.c
    M mythtv/external/FFmpeg/libavfilter/tests/integral.c
    A mythtv/external/FFmpeg/libavfilter/transpose.h
    M mythtv/external/FFmpeg/libavfilter/unsharp.h
    M mythtv/external/FFmpeg/libavfilter/vaapi_vpp.c
    M mythtv/external/FFmpeg/libavfilter/vaapi_vpp.h
    M mythtv/external/FFmpeg/libavfilter/version.h
    M mythtv/external/FFmpeg/libavfilter/vf_alphamerge.c
    M mythtv/external/FFmpeg/libavfilter/vf_amplify.c
    M mythtv/external/FFmpeg/libavfilter/vf_blend.c
    M mythtv/external/FFmpeg/libavfilter/vf_bwdif.c
    M mythtv/external/FFmpeg/libavfilter/vf_chromakey.c
    A mythtv/external/FFmpeg/libavfilter/vf_chromashift.c
    M mythtv/external/FFmpeg/libavfilter/vf_colorkey.c
    A mythtv/external/FFmpeg/libavfilter/vf_colorkey_opencl.c
    M mythtv/external/FFmpeg/libavfilter/vf_colorlevels.c
    M mythtv/external/FFmpeg/libavfilter/vf_colorspace.c
    M mythtv/external/FFmpeg/libavfilter/vf_convolution.c
    M mythtv/external/FFmpeg/libavfilter/vf_cover_rect.c
    M mythtv/external/FFmpeg/libavfilter/vf_crop.c
    A mythtv/external/FFmpeg/libavfilter/vf_dedot.c
    M mythtv/external/FFmpeg/libavfilter/vf_deinterlace_qsv.c
    M mythtv/external/FFmpeg/libavfilter/vf_deinterlace_vaapi.c
    A mythtv/external/FFmpeg/libavfilter/vf_derain.c
    M mythtv/external/FFmpeg/libavfilter/vf_detelecine.c
    M mythtv/external/FFmpeg/libavfilter/vf_displace.c
    M mythtv/external/FFmpeg/libavfilter/vf_drawtext.c
    M mythtv/external/FFmpeg/libavfilter/vf_extractplanes.c
    M mythtv/external/FFmpeg/libavfilter/vf_fps.c
    M mythtv/external/FFmpeg/libavfilter/vf_framerate.c
    A mythtv/external/FFmpeg/libavfilter/vf_freezedetect.c
    M mythtv/external/FFmpeg/libavfilter/vf_frei0r.c
    M mythtv/external/FFmpeg/libavfilter/vf_fspp.h
    M mythtv/external/FFmpeg/libavfilter/vf_gblur.c
    M mythtv/external/FFmpeg/libavfilter/vf_hysteresis.c
    A mythtv/external/FFmpeg/libavfilter/vf_lagfun.c
    M mythtv/external/FFmpeg/libavfilter/vf_lensfun.c
    M mythtv/external/FFmpeg/libavfilter/vf_limiter.c
    M mythtv/external/FFmpeg/libavfilter/vf_lut.c
    M mythtv/external/FFmpeg/libavfilter/vf_lut2.c
    M mythtv/external/FFmpeg/libavfilter/vf_lut3d.c
    M mythtv/external/FFmpeg/libavfilter/vf_maskedclamp.c
    M mythtv/external/FFmpeg/libavfilter/vf_maskedmerge.c
    A mythtv/external/FFmpeg/libavfilter/vf_maskfun.c
    M mythtv/external/FFmpeg/libavfilter/vf_midequalizer.c
    M mythtv/external/FFmpeg/libavfilter/vf_minterpolate.c
    M mythtv/external/FFmpeg/libavfilter/vf_misc_vaapi.c
    M mythtv/external/FFmpeg/libavfilter/vf_mix.c
    M mythtv/external/FFmpeg/libavfilter/vf_neighbor.c
    M mythtv/external/FFmpeg/libavfilter/vf_nlmeans.c
    A mythtv/external/FFmpeg/libavfilter/vf_nlmeans_opencl.c
    M mythtv/external/FFmpeg/libavfilter/vf_normalize.c
    M mythtv/external/FFmpeg/libavfilter/vf_ocr.c
    M mythtv/external/FFmpeg/libavfilter/vf_overlay_qsv.c
    M mythtv/external/FFmpeg/libavfilter/vf_palettegen.c
    M mythtv/external/FFmpeg/libavfilter/vf_paletteuse.c
    M mythtv/external/FFmpeg/libavfilter/vf_procamp_vaapi.c
    M mythtv/external/FFmpeg/libavfilter/vf_program_opencl.c
    M mythtv/external/FFmpeg/libavfilter/vf_readeia608.c
    M mythtv/external/FFmpeg/libavfilter/vf_remap.c
    M mythtv/external/FFmpeg/libavfilter/vf_scale.c
    M mythtv/external/FFmpeg/libavfilter/vf_scale_cuda.c
    M mythtv/external/FFmpeg/libavfilter/vf_scale_cuda.cu
    M mythtv/external/FFmpeg/libavfilter/vf_scale_npp.c
    M mythtv/external/FFmpeg/libavfilter/vf_scale_qsv.c
    M mythtv/external/FFmpeg/libavfilter/vf_scale_vaapi.c
    M mythtv/external/FFmpeg/libavfilter/vf_separatefields.c
    M mythtv/external/FFmpeg/libavfilter/vf_showinfo.c
    M mythtv/external/FFmpeg/libavfilter/vf_signalstats.c
    M mythtv/external/FFmpeg/libavfilter/vf_sr.c
    M mythtv/external/FFmpeg/libavfilter/vf_stack.c
    M mythtv/external/FFmpeg/libavfilter/vf_threshold.c
    M mythtv/external/FFmpeg/libavfilter/vf_thumbnail_cuda.c
    M mythtv/external/FFmpeg/libavfilter/vf_thumbnail_cuda.cu
    M mythtv/external/FFmpeg/libavfilter/vf_tinterlace.c
    M mythtv/external/FFmpeg/libavfilter/vf_tonemap.c
    M mythtv/external/FFmpeg/libavfilter/vf_tonemap_opencl.c
    A mythtv/external/FFmpeg/libavfilter/vf_tpad.c
    M mythtv/external/FFmpeg/libavfilter/vf_transpose.c
    M mythtv/external/FFmpeg/libavfilter/vf_transpose_npp.c
    A mythtv/external/FFmpeg/libavfilter/vf_transpose_opencl.c
    A mythtv/external/FFmpeg/libavfilter/vf_transpose_vaapi.c
    M mythtv/external/FFmpeg/libavfilter/vf_unsharp.c
    M mythtv/external/FFmpeg/libavfilter/vf_vibrance.c
    M mythtv/external/FFmpeg/libavfilter/vf_vmafmotion.c
    M mythtv/external/FFmpeg/libavfilter/vf_vpp_qsv.c
    A mythtv/external/FFmpeg/libavfilter/vf_xmedian.c
    M mythtv/external/FFmpeg/libavfilter/vf_yadif_cuda.c
    M mythtv/external/FFmpeg/libavfilter/vf_zscale.c
    M mythtv/external/FFmpeg/libavfilter/x86/Makefile
    M mythtv/external/FFmpeg/libavfilter/x86/af_afir.asm
    M mythtv/external/FFmpeg/libavfilter/x86/af_afir_init.c
    A mythtv/external/FFmpeg/libavfilter/x86/af_anlmdn.asm
    A mythtv/external/FFmpeg/libavfilter/x86/af_anlmdn_init.c
    A mythtv/external/FFmpeg/libavfilter/x86/scene_sad.asm
    A mythtv/external/FFmpeg/libavfilter/x86/scene_sad_init.c
    M mythtv/external/FFmpeg/libavfilter/x86/vf_blend_init.c
    M mythtv/external/FFmpeg/libavfilter/x86/vf_bwdif_init.c
    A mythtv/external/FFmpeg/libavfilter/x86/vf_gblur.asm
    A mythtv/external/FFmpeg/libavfilter/x86/vf_gblur_init.c
    M mythtv/external/FFmpeg/libavfilter/yadif.h
    M mythtv/external/FFmpeg/libavfilter/yadif_common.c
    M mythtv/external/FFmpeg/libavformat/3dostr.c
    M mythtv/external/FFmpeg/libavformat/4xm.c
    M mythtv/external/FFmpeg/libavformat/Makefile
    M mythtv/external/FFmpeg/libavformat/aacdec.c
    M mythtv/external/FFmpeg/libavformat/aadec.c
    M mythtv/external/FFmpeg/libavformat/ac3dec.c
    M mythtv/external/FFmpeg/libavformat/acm.c
    M mythtv/external/FFmpeg/libavformat/act.c
    M mythtv/external/FFmpeg/libavformat/adp.c
    M mythtv/external/FFmpeg/libavformat/ads.c
    M mythtv/external/FFmpeg/libavformat/adxdec.c
    M mythtv/external/FFmpeg/libavformat/aea.c
    M mythtv/external/FFmpeg/libavformat/aiffdec.c
    M mythtv/external/FFmpeg/libavformat/aixdec.c
    M mythtv/external/FFmpeg/libavformat/allformats.c
    M mythtv/external/FFmpeg/libavformat/amr.c
    M mythtv/external/FFmpeg/libavformat/anm.c
    M mythtv/external/FFmpeg/libavformat/apc.c
    M mythtv/external/FFmpeg/libavformat/ape.c
    M mythtv/external/FFmpeg/libavformat/apetag.c
    M mythtv/external/FFmpeg/libavformat/apngdec.c
    M mythtv/external/FFmpeg/libavformat/aqtitledec.c
    M mythtv/external/FFmpeg/libavformat/asf.h
    M mythtv/external/FFmpeg/libavformat/asfdec_f.c
    M mythtv/external/FFmpeg/libavformat/asfdec_o.c
    M mythtv/external/FFmpeg/libavformat/assdec.c
    M mythtv/external/FFmpeg/libavformat/astdec.c
    M mythtv/external/FFmpeg/libavformat/async.c
    M mythtv/external/FFmpeg/libavformat/au.c
    M mythtv/external/FFmpeg/libavformat/av1.c
    M mythtv/external/FFmpeg/libavformat/av1.h
    M mythtv/external/FFmpeg/libavformat/avc.c
    M mythtv/external/FFmpeg/libavformat/avc.h
    M mythtv/external/FFmpeg/libavformat/avformat.h
    M mythtv/external/FFmpeg/libavformat/avidec.c
    M mythtv/external/FFmpeg/libavformat/avio.h
    M mythtv/external/FFmpeg/libavformat/aviobuf.c
    M mythtv/external/FFmpeg/libavformat/avisynth.c
    M mythtv/external/FFmpeg/libavformat/avr.c
    M mythtv/external/FFmpeg/libavformat/avs.c
    M mythtv/external/FFmpeg/libavformat/bethsoftvid.c
    M mythtv/external/FFmpeg/libavformat/bfi.c
    M mythtv/external/FFmpeg/libavformat/bink.c
    M mythtv/external/FFmpeg/libavformat/bintext.c
    M mythtv/external/FFmpeg/libavformat/bit.c
    M mythtv/external/FFmpeg/libavformat/boadec.c
    M mythtv/external/FFmpeg/libavformat/brstm.c
    M mythtv/external/FFmpeg/libavformat/c93.c
    M mythtv/external/FFmpeg/libavformat/cache.c
    M mythtv/external/FFmpeg/libavformat/cafdec.c
    M mythtv/external/FFmpeg/libavformat/cavsvideodec.c
    M mythtv/external/FFmpeg/libavformat/cdxl.c
    M mythtv/external/FFmpeg/libavformat/cinedec.c
    M mythtv/external/FFmpeg/libavformat/codec2.c
    M mythtv/external/FFmpeg/libavformat/concatdec.c
    M mythtv/external/FFmpeg/libavformat/dashdec.c
    M mythtv/external/FFmpeg/libavformat/dashenc.c
    M mythtv/external/FFmpeg/libavformat/davs2.c
    M mythtv/external/FFmpeg/libavformat/dcstr.c
    M mythtv/external/FFmpeg/libavformat/dfa.c
    A mythtv/external/FFmpeg/libavformat/dhav.c
    M mythtv/external/FFmpeg/libavformat/diracdec.c
    M mythtv/external/FFmpeg/libavformat/dnxhddec.c
    M mythtv/external/FFmpeg/libavformat/dsfdec.c
    M mythtv/external/FFmpeg/libavformat/dsicin.c
    M mythtv/external/FFmpeg/libavformat/dss.c
    M mythtv/external/FFmpeg/libavformat/dtsdec.c
    M mythtv/external/FFmpeg/libavformat/dtshddec.c
    M mythtv/external/FFmpeg/libavformat/dump.c
    M mythtv/external/FFmpeg/libavformat/dv.c
    M mythtv/external/FFmpeg/libavformat/dvbsub.c
    M mythtv/external/FFmpeg/libavformat/dvbtxt.c
    M mythtv/external/FFmpeg/libavformat/dxa.c
    M mythtv/external/FFmpeg/libavformat/eacdata.c
    M mythtv/external/FFmpeg/libavformat/electronicarts.c
    M mythtv/external/FFmpeg/libavformat/epafdec.c
    M mythtv/external/FFmpeg/libavformat/ffmetadec.c
    M mythtv/external/FFmpeg/libavformat/fifo.c
    M mythtv/external/FFmpeg/libavformat/file.c
    M mythtv/external/FFmpeg/libavformat/fitsdec.c
    M mythtv/external/FFmpeg/libavformat/flac_picture.c
    M mythtv/external/FFmpeg/libavformat/flacdec.c
    M mythtv/external/FFmpeg/libavformat/flacenc.c
    M mythtv/external/FFmpeg/libavformat/flic.c
    M mythtv/external/FFmpeg/libavformat/flv.h
    M mythtv/external/FFmpeg/libavformat/flvdec.c
    M mythtv/external/FFmpeg/libavformat/flvenc.c
    M mythtv/external/FFmpeg/libavformat/format.c
    M mythtv/external/FFmpeg/libavformat/frmdec.c
    M mythtv/external/FFmpeg/libavformat/fsb.c
    M mythtv/external/FFmpeg/libavformat/ftp.c
    M mythtv/external/FFmpeg/libavformat/g722.c
    M mythtv/external/FFmpeg/libavformat/gdv.c
    M mythtv/external/FFmpeg/libavformat/genh.c
    M mythtv/external/FFmpeg/libavformat/gif.c
    M mythtv/external/FFmpeg/libavformat/gifdec.c
    M mythtv/external/FFmpeg/libavformat/gsmdec.c
    M mythtv/external/FFmpeg/libavformat/gxf.c
    M mythtv/external/FFmpeg/libavformat/h261dec.c
    M mythtv/external/FFmpeg/libavformat/h263dec.c
    M mythtv/external/FFmpeg/libavformat/h264dec.c
    M mythtv/external/FFmpeg/libavformat/hashenc.c
    A mythtv/external/FFmpeg/libavformat/hcom.c
    M mythtv/external/FFmpeg/libavformat/hdsenc.c
    M mythtv/external/FFmpeg/libavformat/hevc.c
    M mythtv/external/FFmpeg/libavformat/hevcdec.c
    M mythtv/external/FFmpeg/libavformat/hls.c
    M mythtv/external/FFmpeg/libavformat/hlsenc.c
    M mythtv/external/FFmpeg/libavformat/hlsplaylist.c
    M mythtv/external/FFmpeg/libavformat/hlsplaylist.h
    M mythtv/external/FFmpeg/libavformat/hlsproto.c
    M mythtv/external/FFmpeg/libavformat/hnm.c
    M mythtv/external/FFmpeg/libavformat/http.c
    M mythtv/external/FFmpeg/libavformat/icecast.c
    M mythtv/external/FFmpeg/libavformat/icodec.c
    M mythtv/external/FFmpeg/libavformat/id3v2.c
    M mythtv/external/FFmpeg/libavformat/id3v2enc.c
    M mythtv/external/FFmpeg/libavformat/idcin.c
    M mythtv/external/FFmpeg/libavformat/idroqdec.c
    M mythtv/external/FFmpeg/libavformat/iff.c
    A mythtv/external/FFmpeg/libavformat/ifv.c
    M mythtv/external/FFmpeg/libavformat/ilbc.c
    M mythtv/external/FFmpeg/libavformat/img2.c
    M mythtv/external/FFmpeg/libavformat/img2_alias_pix.c
    M mythtv/external/FFmpeg/libavformat/img2_brender_pix.c
    M mythtv/external/FFmpeg/libavformat/img2dec.c
    M mythtv/external/FFmpeg/libavformat/img2enc.c
    M mythtv/external/FFmpeg/libavformat/ingenientdec.c
    M mythtv/external/FFmpeg/libavformat/internal.h
    M mythtv/external/FFmpeg/libavformat/ipmovie.c
    M mythtv/external/FFmpeg/libavformat/ircamdec.c
    M mythtv/external/FFmpeg/libavformat/isom.c
    M mythtv/external/FFmpeg/libavformat/isom.h
    M mythtv/external/FFmpeg/libavformat/iss.c
    M mythtv/external/FFmpeg/libavformat/iv8.c
    M mythtv/external/FFmpeg/libavformat/ivfdec.c
    M mythtv/external/FFmpeg/libavformat/jacosubdec.c
    M mythtv/external/FFmpeg/libavformat/jvdec.c
    M mythtv/external/FFmpeg/libavformat/latmenc.c
    M mythtv/external/FFmpeg/libavformat/libgme.c
    M mythtv/external/FFmpeg/libavformat/libmodplug.c
    M mythtv/external/FFmpeg/libavformat/libopenmpt.c
    M mythtv/external/FFmpeg/libavformat/libsrt.c
    M mythtv/external/FFmpeg/libavformat/lmlm4.c
    M mythtv/external/FFmpeg/libavformat/loasdec.c
    M mythtv/external/FFmpeg/libavformat/lrcdec.c
    M mythtv/external/FFmpeg/libavformat/lvfdec.c
    M mythtv/external/FFmpeg/libavformat/lxfdec.c
    M mythtv/external/FFmpeg/libavformat/m4vdec.c
    M mythtv/external/FFmpeg/libavformat/matroskadec.c
    M mythtv/external/FFmpeg/libavformat/matroskaenc.c
    M mythtv/external/FFmpeg/libavformat/mgsts.c
    M mythtv/external/FFmpeg/libavformat/microdvddec.c
    M mythtv/external/FFmpeg/libavformat/mj2kdec.c
    M mythtv/external/FFmpeg/libavformat/mlpdec.c
    M mythtv/external/FFmpeg/libavformat/mlvdec.c
    M mythtv/external/FFmpeg/libavformat/mm.c
    M mythtv/external/FFmpeg/libavformat/mmf.c
    M mythtv/external/FFmpeg/libavformat/mov.c
    M mythtv/external/FFmpeg/libavformat/movenc.c
    M mythtv/external/FFmpeg/libavformat/movenc.h
    M mythtv/external/FFmpeg/libavformat/mp3dec.c
    M mythtv/external/FFmpeg/libavformat/mp3enc.c
    M mythtv/external/FFmpeg/libavformat/mpc.c
    M mythtv/external/FFmpeg/libavformat/mpc8.c
    M mythtv/external/FFmpeg/libavformat/mpeg.c
    M mythtv/external/FFmpeg/libavformat/mpegenc.c
    M mythtv/external/FFmpeg/libavformat/mpegts.c
    M mythtv/external/FFmpeg/libavformat/mpegtsenc.c
    M mythtv/external/FFmpeg/libavformat/mpegvideodec.c
    M mythtv/external/FFmpeg/libavformat/mpjpegdec.c
    M mythtv/external/FFmpeg/libavformat/mpl2dec.c
    M mythtv/external/FFmpeg/libavformat/mpsubdec.c
    M mythtv/external/FFmpeg/libavformat/msf.c
    M mythtv/external/FFmpeg/libavformat/msnwc_tcp.c
    M mythtv/external/FFmpeg/libavformat/mtaf.c
    M mythtv/external/FFmpeg/libavformat/mtv.c
    M mythtv/external/FFmpeg/libavformat/musx.c
    M mythtv/external/FFmpeg/libavformat/mux.c
    M mythtv/external/FFmpeg/libavformat/mvdec.c
    M mythtv/external/FFmpeg/libavformat/mxf.h
    M mythtv/external/FFmpeg/libavformat/mxfdec.c
    M mythtv/external/FFmpeg/libavformat/mxfenc.c
    M mythtv/external/FFmpeg/libavformat/ncdec.c
    M mythtv/external/FFmpeg/libavformat/nistspheredec.c
    M mythtv/external/FFmpeg/libavformat/nspdec.c
    M mythtv/external/FFmpeg/libavformat/nsvdec.c
    M mythtv/external/FFmpeg/libavformat/nut.c
    M mythtv/external/FFmpeg/libavformat/nutdec.c
    M mythtv/external/FFmpeg/libavformat/nuv.c
    M mythtv/external/FFmpeg/libavformat/oggdec.c
    M mythtv/external/FFmpeg/libavformat/oggenc.c
    M mythtv/external/FFmpeg/libavformat/oggparseogm.c
    M mythtv/external/FFmpeg/libavformat/oggparsevorbis.c
    M mythtv/external/FFmpeg/libavformat/omadec.c
    M mythtv/external/FFmpeg/libavformat/os_support.h
    M mythtv/external/FFmpeg/libavformat/paf.c
    M mythtv/external/FFmpeg/libavformat/pcmdec.c
    M mythtv/external/FFmpeg/libavformat/pjsdec.c
    M mythtv/external/FFmpeg/libavformat/pmpdec.c
    M mythtv/external/FFmpeg/libavformat/psxstr.c
    M mythtv/external/FFmpeg/libavformat/pva.c
    M mythtv/external/FFmpeg/libavformat/pvfdec.c
    M mythtv/external/FFmpeg/libavformat/qcp.c
    M mythtv/external/FFmpeg/libavformat/r3d.c
    M mythtv/external/FFmpeg/libavformat/rawdec.c
    M mythtv/external/FFmpeg/libavformat/rawdec.h
    M mythtv/external/FFmpeg/libavformat/rawenc.c
    M mythtv/external/FFmpeg/libavformat/realtextdec.c
    M mythtv/external/FFmpeg/libavformat/redspark.c
    M mythtv/external/FFmpeg/libavformat/riff.c
    M mythtv/external/FFmpeg/libavformat/riff.h
    M mythtv/external/FFmpeg/libavformat/riffdec.c
    M mythtv/external/FFmpeg/libavformat/rl2.c
    M mythtv/external/FFmpeg/libavformat/rmdec.c
    M mythtv/external/FFmpeg/libavformat/rpl.c
    M mythtv/external/FFmpeg/libavformat/rsd.c
    M mythtv/external/FFmpeg/libavformat/rtp.c
    M mythtv/external/FFmpeg/libavformat/rtpdec.h
    M mythtv/external/FFmpeg/libavformat/rtpdec_asf.c
    M mythtv/external/FFmpeg/libavformat/rtpenc_chain.c
    M mythtv/external/FFmpeg/libavformat/rtpenc_mpegts.c
    M mythtv/external/FFmpeg/libavformat/rtpproto.c
    M mythtv/external/FFmpeg/libavformat/rtsp.c
    M mythtv/external/FFmpeg/libavformat/rtsp.h
    M mythtv/external/FFmpeg/libavformat/rtspdec.c
    M mythtv/external/FFmpeg/libavformat/s337m.c
    M mythtv/external/FFmpeg/libavformat/samidec.c
    M mythtv/external/FFmpeg/libavformat/sapdec.c
    M mythtv/external/FFmpeg/libavformat/sbcdec.c
    M mythtv/external/FFmpeg/libavformat/sbgdec.c
    M mythtv/external/FFmpeg/libavformat/sccdec.c
    M mythtv/external/FFmpeg/libavformat/sdp.c
    M mythtv/external/FFmpeg/libavformat/sdr2.c
    M mythtv/external/FFmpeg/libavformat/sdsdec.c
    M mythtv/external/FFmpeg/libavformat/sdxdec.c
    M mythtv/external/FFmpeg/libavformat/segafilm.c
    M mythtv/external/FFmpeg/libavformat/segment.c
    M mythtv/external/FFmpeg/libavformat/serdec.c
    M mythtv/external/FFmpeg/libavformat/shortendec.c
    M mythtv/external/FFmpeg/libavformat/sierravmd.c
    M mythtv/external/FFmpeg/libavformat/siff.c
    M mythtv/external/FFmpeg/libavformat/smacker.c
    M mythtv/external/FFmpeg/libavformat/smjpegdec.c
    M mythtv/external/FFmpeg/libavformat/smoothstreamingenc.c
    M mythtv/external/FFmpeg/libavformat/smush.c
    M mythtv/external/FFmpeg/libavformat/sol.c
    M mythtv/external/FFmpeg/libavformat/soxdec.c
    M mythtv/external/FFmpeg/libavformat/spdifdec.c
    M mythtv/external/FFmpeg/libavformat/spdifenc.c
    M mythtv/external/FFmpeg/libavformat/srtdec.c
    M mythtv/external/FFmpeg/libavformat/stldec.c
    M mythtv/external/FFmpeg/libavformat/subfile.c
    M mythtv/external/FFmpeg/libavformat/subtitles.c
    M mythtv/external/FFmpeg/libavformat/subtitles.h
    M mythtv/external/FFmpeg/libavformat/subviewer1dec.c
    M mythtv/external/FFmpeg/libavformat/subviewerdec.c
    M mythtv/external/FFmpeg/libavformat/supdec.c
    M mythtv/external/FFmpeg/libavformat/supenc.c
    M mythtv/external/FFmpeg/libavformat/svag.c
    M mythtv/external/FFmpeg/libavformat/swfdec.c
    M mythtv/external/FFmpeg/libavformat/takdec.c
    M mythtv/external/FFmpeg/libavformat/tedcaptionsdec.c
    M mythtv/external/FFmpeg/libavformat/tee.c
    M mythtv/external/FFmpeg/libavformat/thp.c
    M mythtv/external/FFmpeg/libavformat/tiertexseq.c
    M mythtv/external/FFmpeg/libavformat/tls_gnutls.c
    M mythtv/external/FFmpeg/libavformat/tmv.c
    M mythtv/external/FFmpeg/libavformat/tta.c
    M mythtv/external/FFmpeg/libavformat/txd.c
    M mythtv/external/FFmpeg/libavformat/ty.c
    M mythtv/external/FFmpeg/libavformat/utils.c
    M mythtv/external/FFmpeg/libavformat/vag.c
    M mythtv/external/FFmpeg/libavformat/vapoursynth.c
    M mythtv/external/FFmpeg/libavformat/vc1dec.c
    M mythtv/external/FFmpeg/libavformat/vc1test.c
    M mythtv/external/FFmpeg/libavformat/version.h
    A mythtv/external/FFmpeg/libavformat/vividas.c
    M mythtv/external/FFmpeg/libavformat/vivo.c
    M mythtv/external/FFmpeg/libavformat/vocdec.c
    M mythtv/external/FFmpeg/libavformat/vorbiscomment.c
    M mythtv/external/FFmpeg/libavformat/vorbiscomment.h
    M mythtv/external/FFmpeg/libavformat/vpk.c
    M mythtv/external/FFmpeg/libavformat/vplayerdec.c
    M mythtv/external/FFmpeg/libavformat/vqf.c
    M mythtv/external/FFmpeg/libavformat/wavdec.c
    M mythtv/external/FFmpeg/libavformat/wc3movie.c
    M mythtv/external/FFmpeg/libavformat/webm_chunk.c
    M mythtv/external/FFmpeg/libavformat/webmdashenc.c
    M mythtv/external/FFmpeg/libavformat/webvttdec.c
    M mythtv/external/FFmpeg/libavformat/westwood_aud.c
    M mythtv/external/FFmpeg/libavformat/westwood_vqa.c
    M mythtv/external/FFmpeg/libavformat/wsddec.c
    M mythtv/external/FFmpeg/libavformat/wtvdec.c
    M mythtv/external/FFmpeg/libavformat/wvdec.c
    M mythtv/external/FFmpeg/libavformat/wvedec.c
    M mythtv/external/FFmpeg/libavformat/xa.c
    M mythtv/external/FFmpeg/libavformat/xmv.c
    M mythtv/external/FFmpeg/libavformat/xvag.c
    M mythtv/external/FFmpeg/libavformat/xwma.c
    M mythtv/external/FFmpeg/libavformat/yop.c
    M mythtv/external/FFmpeg/libavformat/yuv4mpegdec.c
    M mythtv/external/FFmpeg/libavutil/Makefile
    M mythtv/external/FFmpeg/libavutil/aarch64/asm.S
    M mythtv/external/FFmpeg/libavutil/arm/asm.S
    A mythtv/external/FFmpeg/libavutil/avsscanf.c
    M mythtv/external/FFmpeg/libavutil/avstring.c
    M mythtv/external/FFmpeg/libavutil/avstring.h
    M mythtv/external/FFmpeg/libavutil/colorspace.h
    A mythtv/external/FFmpeg/libavutil/cuda_check.h
    M mythtv/external/FFmpeg/libavutil/dynarray.h
    M mythtv/external/FFmpeg/libavutil/file_open.c
    M mythtv/external/FFmpeg/libavutil/frame.c
    M mythtv/external/FFmpeg/libavutil/frame.h
    A mythtv/external/FFmpeg/libavutil/hdr_dynamic_metadata.c
    A mythtv/external/FFmpeg/libavutil/hdr_dynamic_metadata.h
    M mythtv/external/FFmpeg/libavutil/hwcontext_cuda.c
    M mythtv/external/FFmpeg/libavutil/hwcontext_d3d11va.c
    M mythtv/external/FFmpeg/libavutil/hwcontext_dxva2.c
    M mythtv/external/FFmpeg/libavutil/hwcontext_opencl.c
    M mythtv/external/FFmpeg/libavutil/hwcontext_qsv.c
    M mythtv/external/FFmpeg/libavutil/hwcontext_vaapi.c
    M mythtv/external/FFmpeg/libavutil/hwcontext_vdpau.c
    M mythtv/external/FFmpeg/libavutil/hwcontext_videotoolbox.c
    M mythtv/external/FFmpeg/libavutil/imgutils.c
    M mythtv/external/FFmpeg/libavutil/internal.h
    M mythtv/external/FFmpeg/libavutil/intreadwrite.h
    M mythtv/external/FFmpeg/libavutil/mem.h
    M mythtv/external/FFmpeg/libavutil/mips/generic_macros_msa.h
    M mythtv/external/FFmpeg/libavutil/mips/mmiutils.h
    M mythtv/external/FFmpeg/libavutil/parseutils.c
    M mythtv/external/FFmpeg/libavutil/pixdesc.c
    M mythtv/external/FFmpeg/libavutil/pixfmt.h
    M mythtv/external/FFmpeg/libavutil/ppc/cpu.c
    M mythtv/external/FFmpeg/libavutil/softfloat_ieee754.h
    M mythtv/external/FFmpeg/libavutil/tests/pixfmt_best.c
    M mythtv/external/FFmpeg/libavutil/tests/random_seed.c
    M mythtv/external/FFmpeg/libavutil/time_internal.h
    A mythtv/external/FFmpeg/libavutil/tx.c
    A mythtv/external/FFmpeg/libavutil/tx.h
    M mythtv/external/FFmpeg/libavutil/version.h
    M mythtv/external/FFmpeg/libpostproc/version.h
    M mythtv/external/FFmpeg/libswresample/swresample.c
    M mythtv/external/FFmpeg/libswresample/version.h
    M mythtv/external/FFmpeg/libswscale/input.c
    M mythtv/external/FFmpeg/libswscale/output.c
    M mythtv/external/FFmpeg/libswscale/ppc/Makefile
    M mythtv/external/FFmpeg/libswscale/ppc/swscale_altivec.c
    A mythtv/external/FFmpeg/libswscale/ppc/swscale_ppc_template.c
    A mythtv/external/FFmpeg/libswscale/ppc/swscale_vsx.c
    M mythtv/external/FFmpeg/libswscale/swscale_internal.h
    M mythtv/external/FFmpeg/libswscale/swscale_unscaled.c
    M mythtv/external/FFmpeg/libswscale/tests/pixdesc_query.c
    M mythtv/external/FFmpeg/libswscale/tests/swscale.c
    M mythtv/external/FFmpeg/libswscale/utils.c
    M mythtv/external/FFmpeg/libswscale/version.h
    M mythtv/external/FFmpeg/libswscale/x86/swscale_template.c
    M mythtv/external/FFmpeg/libswscale/yuv2rgb.c
    M mythtv/external/FFmpeg/tests/Makefile
    M mythtv/external/FFmpeg/tests/api/api-flac-test.c
    M mythtv/external/FFmpeg/tests/api/api-h264-slice-test.c
    M mythtv/external/FFmpeg/tests/api/api-h264-test.c
    M mythtv/external/FFmpeg/tests/checkasm/Makefile
    A mythtv/external/FFmpeg/tests/checkasm/af_afir.c
    M mythtv/external/FFmpeg/tests/checkasm/checkasm.c
    M mythtv/external/FFmpeg/tests/checkasm/checkasm.h
    M mythtv/external/FFmpeg/tests/checkasm/h264dsp.c
    A mythtv/external/FFmpeg/tests/checkasm/v210dec.c
    A mythtv/external/FFmpeg/tests/checkasm/vf_gblur.c
    M mythtv/external/FFmpeg/tests/fate-run.sh
    M mythtv/external/FFmpeg/tests/fate/api.mak
    M mythtv/external/FFmpeg/tests/fate/audio.mak
    R mythtv/external/FFmpeg/tests/fate/avformat.mak
    M mythtv/external/FFmpeg/tests/fate/cbs.mak
    M mythtv/external/FFmpeg/tests/fate/checkasm.mak
    M mythtv/external/FFmpeg/tests/fate/ffmpeg.mak
    M mythtv/external/FFmpeg/tests/fate/fft.mak
    M mythtv/external/FFmpeg/tests/fate/filter-audio.mak
    M mythtv/external/FFmpeg/tests/fate/hevc.mak
    A mythtv/external/FFmpeg/tests/fate/hlsenc.mak
    M mythtv/external/FFmpeg/tests/fate/hw.mak
    A mythtv/external/FFmpeg/tests/fate/lavf-audio.mak
    A mythtv/external/FFmpeg/tests/fate/lavf-container.mak
    A mythtv/external/FFmpeg/tests/fate/lavf-image.mak
    A mythtv/external/FFmpeg/tests/fate/lavf-image2pipe.mak
    A mythtv/external/FFmpeg/tests/fate/lavf-video.mak
    M mythtv/external/FFmpeg/tests/fate/libavcodec.mak
    M mythtv/external/FFmpeg/tests/fate/libavformat.mak
    M mythtv/external/FFmpeg/tests/fate/libavutil.mak
    M mythtv/external/FFmpeg/tests/fate/libswscale.mak
    M mythtv/external/FFmpeg/tests/fate/matroska.mak
    M mythtv/external/FFmpeg/tests/fate/microsoft.mak
    M mythtv/external/FFmpeg/tests/fate/mov.mak
    M mythtv/external/FFmpeg/tests/fate/mxf.mak
    M mythtv/external/FFmpeg/tests/fate/opus.mak
    A mythtv/external/FFmpeg/tests/fate/pixfmt.mak
    M mythtv/external/FFmpeg/tests/fate/prores.mak
    M mythtv/external/FFmpeg/tests/fate/qtrle.mak
    M mythtv/external/FFmpeg/tests/fate/seek.mak
    A mythtv/external/FFmpeg/tests/fate/segment.mak
    M mythtv/external/FFmpeg/tests/fate/vcodec.mak
    M mythtv/external/FFmpeg/tests/fate/video.mak
    M mythtv/external/FFmpeg/tests/fate/vpx.mak
    M mythtv/external/FFmpeg/tests/fate/wavpack.mak
    R mythtv/external/FFmpeg/tests/lavf-regression.sh
    M mythtv/external/FFmpeg/tests/ref/acodec/alac
    M mythtv/external/FFmpeg/tests/ref/acodec/pcm-s16be
    M mythtv/external/FFmpeg/tests/ref/acodec/pcm-s24be
    M mythtv/external/FFmpeg/tests/ref/acodec/pcm-s32be
    M mythtv/external/FFmpeg/tests/ref/acodec/pcm-s8
    M mythtv/external/FFmpeg/tests/ref/fate/aac-autobsf-adtstoasc
    M mythtv/external/FFmpeg/tests/ref/fate/adtstoasc_ticket3715
    M mythtv/external/FFmpeg/tests/ref/fate/api-mjpeg-codec-param
    M mythtv/external/FFmpeg/tests/ref/fate/api-png-codec-param
    M mythtv/external/FFmpeg/tests/ref/fate/binsub-mksenc
    A mythtv/external/FFmpeg/tests/ref/fate/cbs-hevc-SLPPLP_A_VIDYO_2
    A mythtv/external/FFmpeg/tests/ref/fate/copy-apng
    M mythtv/external/FFmpeg/tests/ref/fate/filter-palettegen-2
    A mythtv/external/FFmpeg/tests/ref/fate/filter-pixdesc-nv24
    A mythtv/external/FFmpeg/tests/ref/fate/filter-pixdesc-nv42
    A mythtv/external/FFmpeg/tests/ref/fate/filter-pixdesc-yuva422p12be
    A mythtv/external/FFmpeg/tests/ref/fate/filter-pixdesc-yuva422p12le
    A mythtv/external/FFmpeg/tests/ref/fate/filter-pixdesc-yuva444p12be
    A mythtv/external/FFmpeg/tests/ref/fate/filter-pixdesc-yuva444p12le
    M mythtv/external/FFmpeg/tests/ref/fate/filter-pixfmts-copy
    M mythtv/external/FFmpeg/tests/ref/fate/filter-pixfmts-crop
    M mythtv/external/FFmpeg/tests/ref/fate/filter-pixfmts-field
    M mythtv/external/FFmpeg/tests/ref/fate/filter-pixfmts-fieldorder
    M mythtv/external/FFmpeg/tests/ref/fate/filter-pixfmts-hflip
    M mythtv/external/FFmpeg/tests/ref/fate/filter-pixfmts-il
    M mythtv/external/FFmpeg/tests/ref/fate/filter-pixfmts-null
    M mythtv/external/FFmpeg/tests/ref/fate/filter-pixfmts-pad
    M mythtv/external/FFmpeg/tests/ref/fate/filter-pixfmts-scale
    M mythtv/external/FFmpeg/tests/ref/fate/filter-pixfmts-swapuv
    M mythtv/external/FFmpeg/tests/ref/fate/filter-pixfmts-transpose
    M mythtv/external/FFmpeg/tests/ref/fate/filter-pixfmts-vflip
    M mythtv/external/FFmpeg/tests/ref/fate/gifenc-bgr4_byte
    M mythtv/external/FFmpeg/tests/ref/fate/gifenc-bgr8
    M mythtv/external/FFmpeg/tests/ref/fate/gifenc-gray
    M mythtv/external/FFmpeg/tests/ref/fate/gifenc-pal8
    M mythtv/external/FFmpeg/tests/ref/fate/gifenc-rgb4_byte
    M mythtv/external/FFmpeg/tests/ref/fate/gifenc-rgb8
    A mythtv/external/FFmpeg/tests/ref/fate/hevc-two-first-slice
    A mythtv/external/FFmpeg/tests/ref/fate/hls-fmp4
    A mythtv/external/FFmpeg/tests/ref/fate/hls-init-time
    A mythtv/external/FFmpeg/tests/ref/fate/hls-list-size
    A mythtv/external/FFmpeg/tests/ref/fate/hls-segment-size
    M mythtv/external/FFmpeg/tests/ref/fate/limited_input_seek
    M mythtv/external/FFmpeg/tests/ref/fate/limited_input_seek-copyts
    A mythtv/external/FFmpeg/tests/ref/fate/mxf-d10-user-comments
    A mythtv/external/FFmpeg/tests/ref/fate/mxf-opatom-user-comments
    M mythtv/external/FFmpeg/tests/ref/fate/mxf-probe-d10
    M mythtv/external/FFmpeg/tests/ref/fate/mxf-probe-dnxhd
    M mythtv/external/FFmpeg/tests/ref/fate/mxf-probe-dv25
    A mythtv/external/FFmpeg/tests/ref/fate/mxf-user-comments
    M mythtv/external/FFmpeg/tests/ref/fate/nuv-rtjpeg
    M mythtv/external/FFmpeg/tests/ref/fate/pixfmt_best
    M mythtv/external/FFmpeg/tests/ref/fate/prores-alpha
    M mythtv/external/FFmpeg/tests/ref/fate/prores-alpha_skip
    A mythtv/external/FFmpeg/tests/ref/fate/prores-metadata
    M mythtv/external/FFmpeg/tests/ref/fate/prores-transparency
    M mythtv/external/FFmpeg/tests/ref/fate/prores-transparency_skip
    M mythtv/external/FFmpeg/tests/ref/fate/qtrle-32bit
    M mythtv/external/FFmpeg/tests/ref/fate/rgb24-mkv
    M mythtv/external/FFmpeg/tests/ref/fate/source
    M mythtv/external/FFmpeg/tests/ref/fate/sub-jacosub
    M mythtv/external/FFmpeg/tests/ref/fate/sws-pixdesc-query
    A mythtv/external/FFmpeg/tests/ref/fate/vc1test_smm0005
    A mythtv/external/FFmpeg/tests/ref/fate/vc1test_smm0015
    A mythtv/external/FFmpeg/tests/ref/fate/vp4
    M mythtv/external/FFmpeg/tests/ref/fate/vp60
    M mythtv/external/FFmpeg/tests/ref/fate/vp61
    M mythtv/external/FFmpeg/tests/ref/fate/vp6a
    M mythtv/external/FFmpeg/tests/ref/fate/vp6a-skip_alpha
    M mythtv/external/FFmpeg/tests/ref/fate/vp6f
    R mythtv/external/FFmpeg/tests/ref/lavf-fate/avi_cram
    A mythtv/external/FFmpeg/tests/ref/lavf-fate/cram.avi
    M mythtv/external/FFmpeg/tests/ref/lavf-fate/latm
    R mythtv/external/FFmpeg/tests/ref/lavf-fate/mov_qtrle_mace6
    M mythtv/external/FFmpeg/tests/ref/lavf-fate/mp3
    R mythtv/external/FFmpeg/tests/ref/lavf-fate/ogg_vp3
    R mythtv/external/FFmpeg/tests/ref/lavf-fate/ogg_vp8
    A mythtv/external/FFmpeg/tests/ref/lavf-fate/qtrle_mace6.mov
    A mythtv/external/FFmpeg/tests/ref/lavf-fate/vp3.ogg
    A mythtv/external/FFmpeg/tests/ref/lavf-fate/vp8.ogg
    M mythtv/external/FFmpeg/tests/ref/lavf/aiff
    A mythtv/external/FFmpeg/tests/ref/lavf/al
    R mythtv/external/FFmpeg/tests/ref/lavf/alaw
    M mythtv/external/FFmpeg/tests/ref/lavf/apng
    A mythtv/external/FFmpeg/tests/ref/lavf/apng.png
    M mythtv/external/FFmpeg/tests/ref/lavf/asf
    M mythtv/external/FFmpeg/tests/ref/lavf/ast
    M mythtv/external/FFmpeg/tests/ref/lavf/au
    M mythtv/external/FFmpeg/tests/ref/lavf/avi
    M mythtv/external/FFmpeg/tests/ref/lavf/bmp
    M mythtv/external/FFmpeg/tests/ref/lavf/caf
    M mythtv/external/FFmpeg/tests/ref/lavf/dpx
    A mythtv/external/FFmpeg/tests/ref/lavf/dv
    R mythtv/external/FFmpeg/tests/ref/lavf/dv_fmt
    A mythtv/external/FFmpeg/tests/ref/lavf/dv_ntsc
    A mythtv/external/FFmpeg/tests/ref/lavf/dv_pal
    M mythtv/external/FFmpeg/tests/ref/lavf/flm
    A mythtv/external/FFmpeg/tests/ref/lavf/flv
    R mythtv/external/FFmpeg/tests/ref/lavf/flv_fmt
    A mythtv/external/FFmpeg/tests/ref/lavf/gbrap.fits
    A mythtv/external/FFmpeg/tests/ref/lavf/gbrap16be.fits
    A mythtv/external/FFmpeg/tests/ref/lavf/gbrp.fits
    A mythtv/external/FFmpeg/tests/ref/lavf/gbrp10le.dpx
    A mythtv/external/FFmpeg/tests/ref/lavf/gbrp12le.dpx
    A mythtv/external/FFmpeg/tests/ref/lavf/gbrp16be.fits
    M mythtv/external/FFmpeg/tests/ref/lavf/gif
    A mythtv/external/FFmpeg/tests/ref/lavf/gray.fits
    A mythtv/external/FFmpeg/tests/ref/lavf/gray.pam
    A mythtv/external/FFmpeg/tests/ref/lavf/gray.xwd
    A mythtv/external/FFmpeg/tests/ref/lavf/gray16be.fits
    A mythtv/external/FFmpeg/tests/ref/lavf/gray16be.pam
    A mythtv/external/FFmpeg/tests/ref/lavf/gray16be.png
    M mythtv/external/FFmpeg/tests/ref/lavf/gxf
    A mythtv/external/FFmpeg/tests/ref/lavf/gxf_ntsc
    A mythtv/external/FFmpeg/tests/ref/lavf/gxf_pal
    M mythtv/external/FFmpeg/tests/ref/lavf/ircam
    M mythtv/external/FFmpeg/tests/ref/lavf/ismv
    M mythtv/external/FFmpeg/tests/ref/lavf/jpg
    M mythtv/external/FFmpeg/tests/ref/lavf/mka
    M mythtv/external/FFmpeg/tests/ref/lavf/mkv
    A mythtv/external/FFmpeg/tests/ref/lavf/mkv_attachment
    M mythtv/external/FFmpeg/tests/ref/lavf/mmf
    A mythtv/external/FFmpeg/tests/ref/lavf/monob.pam
    A mythtv/external/FFmpeg/tests/ref/lavf/monow.xwd
    M mythtv/external/FFmpeg/tests/ref/lavf/mov
    A mythtv/external/FFmpeg/tests/ref/lavf/mov_rtphint
    A mythtv/external/FFmpeg/tests/ref/lavf/mp4
    M mythtv/external/FFmpeg/tests/ref/lavf/mpg
    R mythtv/external/FFmpeg/tests/ref/lavf/mulaw
    M mythtv/external/FFmpeg/tests/ref/lavf/mxf
    M mythtv/external/FFmpeg/tests/ref/lavf/mxf_d10
    M mythtv/external/FFmpeg/tests/ref/lavf/mxf_dv25
    M mythtv/external/FFmpeg/tests/ref/lavf/mxf_dvcpro50
    M mythtv/external/FFmpeg/tests/ref/lavf/mxf_opatom
    M mythtv/external/FFmpeg/tests/ref/lavf/mxf_opatom_audio
    M mythtv/external/FFmpeg/tests/ref/lavf/nut
    M mythtv/external/FFmpeg/tests/ref/lavf/ogg
    M mythtv/external/FFmpeg/tests/ref/lavf/pam
    M mythtv/external/FFmpeg/tests/ref/lavf/pbmpipe
    M mythtv/external/FFmpeg/tests/ref/lavf/pcx
    A mythtv/external/FFmpeg/tests/ref/lavf/peak.wav
    A mythtv/external/FFmpeg/tests/ref/lavf/peak_only.wav
    M mythtv/external/FFmpeg/tests/ref/lavf/pgm
    M mythtv/external/FFmpeg/tests/ref/lavf/pgmpipe
    R mythtv/external/FFmpeg/tests/ref/lavf/pixfmt
    M mythtv/external/FFmpeg/tests/ref/lavf/png
    M mythtv/external/FFmpeg/tests/ref/lavf/ppm
    M mythtv/external/FFmpeg/tests/ref/lavf/ppmpipe
    A mythtv/external/FFmpeg/tests/ref/lavf/rgb48be.pam
    A mythtv/external/FFmpeg/tests/ref/lavf/rgb48be.png
    A mythtv/external/FFmpeg/tests/ref/lavf/rgb48le.dpx
    A mythtv/external/FFmpeg/tests/ref/lavf/rgb48le_10.dpx
    A mythtv/external/FFmpeg/tests/ref/lavf/rgb4_byte.xwd
    A mythtv/external/FFmpeg/tests/ref/lavf/rgb555be.xwd
    A mythtv/external/FFmpeg/tests/ref/lavf/rgb565be.xwd
    A mythtv/external/FFmpeg/tests/ref/lavf/rgb8.xwd
    A mythtv/external/FFmpeg/tests/ref/lavf/rgba.pam
    A mythtv/external/FFmpeg/tests/ref/lavf/rgba.xwd
    A mythtv/external/FFmpeg/tests/ref/lavf/rgba64le.dpx
    M mythtv/external/FFmpeg/tests/ref/lavf/rm
    M mythtv/external/FFmpeg/tests/ref/lavf/rso
    A mythtv/external/FFmpeg/tests/ref/lavf/s16.voc
    M mythtv/external/FFmpeg/tests/ref/lavf/sgi
    M mythtv/external/FFmpeg/tests/ref/lavf/smjpeg
    M mythtv/external/FFmpeg/tests/ref/lavf/sox
    A mythtv/external/FFmpeg/tests/ref/lavf/sun
    R mythtv/external/FFmpeg/tests/ref/lavf/sunrast
    M mythtv/external/FFmpeg/tests/ref/lavf/swf
    M mythtv/external/FFmpeg/tests/ref/lavf/tga
    M mythtv/external/FFmpeg/tests/ref/lavf/tiff
    M mythtv/external/FFmpeg/tests/ref/lavf/ts
    M mythtv/external/FFmpeg/tests/ref/lavf/tta
    A mythtv/external/FFmpeg/tests/ref/lavf/ul
    M mythtv/external/FFmpeg/tests/ref/lavf/voc
    R mythtv/external/FFmpeg/tests/ref/lavf/voc_s16
    M mythtv/external/FFmpeg/tests/ref/lavf/w64
    M mythtv/external/FFmpeg/tests/ref/lavf/wav
    R mythtv/external/FFmpeg/tests/ref/lavf/wav_peak
    R mythtv/external/FFmpeg/tests/ref/lavf/wav_peak_only
    M mythtv/external/FFmpeg/tests/ref/lavf/wtv
    M mythtv/external/FFmpeg/tests/ref/lavf/wv
    M mythtv/external/FFmpeg/tests/ref/lavf/xbm
    M mythtv/external/FFmpeg/tests/ref/lavf/xwd
    A mythtv/external/FFmpeg/tests/ref/lavf/y4m
    R mythtv/external/FFmpeg/tests/ref/lavf/yuv4mpeg
    A mythtv/external/FFmpeg/tests/ref/pixfmt/bgr24
    A mythtv/external/FFmpeg/tests/ref/pixfmt/gray
    A mythtv/external/FFmpeg/tests/ref/pixfmt/monob
    A mythtv/external/FFmpeg/tests/ref/pixfmt/monow
    A mythtv/external/FFmpeg/tests/ref/pixfmt/rgb24
    A mythtv/external/FFmpeg/tests/ref/pixfmt/rgb32
    A mythtv/external/FFmpeg/tests/ref/pixfmt/rgb555
    A mythtv/external/FFmpeg/tests/ref/pixfmt/rgb565
    A mythtv/external/FFmpeg/tests/ref/pixfmt/yuv410p
    A mythtv/external/FFmpeg/tests/ref/pixfmt/yuv411p
    A mythtv/external/FFmpeg/tests/ref/pixfmt/yuv420p
    A mythtv/external/FFmpeg/tests/ref/pixfmt/yuv422p
    A mythtv/external/FFmpeg/tests/ref/pixfmt/yuv440p
    A mythtv/external/FFmpeg/tests/ref/pixfmt/yuv444p
    A mythtv/external/FFmpeg/tests/ref/pixfmt/yuvj420p
    A mythtv/external/FFmpeg/tests/ref/pixfmt/yuvj422p
    A mythtv/external/FFmpeg/tests/ref/pixfmt/yuvj440p
    A mythtv/external/FFmpeg/tests/ref/pixfmt/yuvj444p
    A mythtv/external/FFmpeg/tests/ref/pixfmt/yuyv422
    A mythtv/external/FFmpeg/tests/ref/seek/lavf-al
    R mythtv/external/FFmpeg/tests/ref/seek/lavf-alaw
    A mythtv/external/FFmpeg/tests/ref/seek/lavf-dv
    R mythtv/external/FFmpeg/tests/ref/seek/lavf-dv_fmt
    A mythtv/external/FFmpeg/tests/ref/seek/lavf-flv
    R mythtv/external/FFmpeg/tests/ref/seek/lavf-flv_fmt
    M mythtv/external/FFmpeg/tests/ref/seek/lavf-mkv
    R mythtv/external/FFmpeg/tests/ref/seek/lavf-mulaw
    A mythtv/external/FFmpeg/tests/ref/seek/lavf-ul
    A mythtv/external/FFmpeg/tests/ref/seek/lavf-y4m
    R mythtv/external/FFmpeg/tests/ref/seek/lavf-yuv4mpeg
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-avui
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-dnxhd-1080i
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-dnxhd-1080i-10bit
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-dnxhd-1080i-colr
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-dnxhd-hr-hq-mov
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-dnxhd-hr-lb-mov
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-dnxhd-hr-sq-mov
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-mov-bgr24
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-mov-bpp15
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-mov-bpp16
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-prores
    A mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-prores_444
    A mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-prores_444_int
    A mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-prores_int
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-prores_ks
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-qtrle
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-qtrlegray
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-r210
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-svq1
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-vc2-420p
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-vc2-420p10
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-vc2-420p12
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-vc2-422p
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-vc2-422p10
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-vc2-422p12
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-vc2-444p
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-vc2-444p10
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-vc2-444p12
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-vc2-t5_3
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth1-vc2-thaar
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-avui
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-dnxhd-1080i
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-dnxhd-1080i-10bit
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-dnxhd-1080i-colr
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-dnxhd-hr-hq-mov
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-dnxhd-hr-lb-mov
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-dnxhd-hr-sq-mov
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-mov-bgr24
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-mov-bpp15
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-mov-bpp16
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-prores
    A mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-prores_444
    A mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-prores_444_int
    A mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-prores_int
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-prores_ks
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-qtrle
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-qtrlegray
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-r210
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-svq1
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-vc2-420p
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-vc2-420p10
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-vc2-420p12
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-vc2-422p
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-vc2-422p10
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-vc2-422p12
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-vc2-444p
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-vc2-444p10
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-vc2-444p12
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-vc2-t5_3
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth2-vc2-thaar
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth3-dnxhd-1080i-10bit
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth3-dnxhd-1080i-colr
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth3-dnxhd-hr-hq-mov
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth3-dnxhd-hr-lb-mov
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth3-dnxhd-hr-sq-mov
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth3-mov-bgr24
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth3-mov-bpp15
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth3-mov-bpp16
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth3-prores
    A mythtv/external/FFmpeg/tests/ref/vsynth/vsynth3-prores_444
    A mythtv/external/FFmpeg/tests/ref/vsynth/vsynth3-prores_444_int
    A mythtv/external/FFmpeg/tests/ref/vsynth/vsynth3-prores_int
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth3-prores_ks
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth3-qtrle
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth3-r210
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth3-svq1
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-avui
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-dnxhd-1080i
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-dnxhd-1080i-10bit
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-dnxhd-1080i-colr
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-dnxhd-hr-hq-mov
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-dnxhd-hr-lb-mov
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-dnxhd-hr-sq-mov
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-mov-bgr24
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-mov-bpp15
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-mov-bpp16
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-prores
    A mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-prores_444
    A mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-prores_444_int
    A mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-prores_int
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-prores_ks
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-qtrle
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-qtrlegray
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-r210
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-svq1
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-vc2-420p
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-vc2-420p10
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-vc2-420p12
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-vc2-422p
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-vc2-422p10
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-vc2-422p12
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-vc2-444p
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-vc2-444p10
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-vc2-444p12
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-vc2-t5_3
    M mythtv/external/FFmpeg/tests/ref/vsynth/vsynth_lena-vc2-thaar
    R mythtv/external/FFmpeg/tests/regression-funcs.sh
    M mythtv/external/FFmpeg/tools/Makefile
    M mythtv/external/FFmpeg/tools/crypto_bench.c
    A mythtv/external/FFmpeg/tools/python/convert.py
    A mythtv/external/FFmpeg/tools/python/convert_from_tensorflow.py
    A mythtv/external/FFmpeg/tools/target_dec_fate.list
    A mythtv/external/FFmpeg/tools/target_dec_fate.sh
    M mythtv/external/FFmpeg/tools/target_dec_fuzzer.c
    A mythtv/external/FFmpeg/tools/target_dem_fuzzer.c
    M mythtv/external/nv-codec-headers/ffnvcodec.pc.in
    M mythtv/external/nv-codec-headers/include/ffnvcodec/dynlink_cuda.h
    M mythtv/external/nv-codec-headers/include/ffnvcodec/dynlink_loader.h
    M mythtv/html/setup/js/guidedatasources.js
    M mythtv/libs/libmythbase/mythversion.h
    M mythtv/libs/libmythmetadata/metadatadownload.cpp
    M mythtv/libs/libmythservicecontracts/datacontracts/logMessageList.h
    M mythtv/libs/libmythservicecontracts/datacontracts/programAndChannel.h
    M mythtv/libs/libmythservicecontracts/datacontracts/videoSource.h
    M mythtv/libs/libmythservicecontracts/services/channelServices.h
    M mythtv/libs/libmythservicecontracts/services/mythServices.h
    M mythtv/libs/libmythtv/cardutil.cpp
    M mythtv/libs/libmythtv/cardutil.h
    M mythtv/libs/libmythtv/channelinfo.cpp
    M mythtv/libs/libmythtv/channelinfo.h
    M mythtv/libs/libmythtv/channelscan/channelimporter.cpp
    M mythtv/libs/libmythtv/channelscan/channelscan_sm.cpp
    M mythtv/libs/libmythtv/channelscan/channelscan_sm.h
    M mythtv/libs/libmythtv/channelscan/channelscanmiscsettings.h
    M mythtv/libs/libmythtv/channelscan/inputselectorsetting.cpp
    M mythtv/libs/libmythtv/channelscan/iptvchannelfetcher.cpp
    M mythtv/libs/libmythtv/channelscan/scaninfo.cpp
    M mythtv/libs/libmythtv/channelscan/scanwizardconfig.cpp
    M mythtv/libs/libmythtv/channelutil.cpp
    M mythtv/libs/libmythtv/channelutil.h
    M mythtv/libs/libmythtv/dbcheck.cpp
    M mythtv/libs/libmythtv/diseqc.cpp
    M mythtv/libs/libmythtv/dtvmultiplex.cpp
    M mythtv/libs/libmythtv/frequencytables.h
    M mythtv/libs/libmythtv/mpeg/dvbdescriptors.cpp
    M mythtv/libs/libmythtv/mpeg/dvbdescriptors.h
    M mythtv/libs/libmythtv/mpeg/dvbstreamdata.cpp
    M mythtv/libs/libmythtv/mpeg/mpegdescriptors.cpp
    M mythtv/libs/libmythtv/mpeg/mpegdescriptors.h
    M mythtv/libs/libmythtv/mpeg/mpegstreamdata.cpp
    M mythtv/libs/libmythtv/mpeg/mpegtables.h
    M mythtv/libs/libmythtv/mpeg/scanstreamdata.cpp
    M mythtv/libs/libmythtv/mpeg/tspacket.h
    M mythtv/libs/libmythtv/recorders/dvbstreamhandler.cpp
    M mythtv/libs/libmythtv/recorders/hdhrchannel.cpp
    M mythtv/libs/libmythtv/recorders/hdhrstreamhandler.cpp
    M mythtv/libs/libmythtv/recorders/linuxfirewiredevice.cpp
    M mythtv/libs/libmythtv/recorders/vbitext/lang.h
    M mythtv/libs/libmythtv/sourceutil.cpp
    M mythtv/libs/libmythtv/sourceutil.h
    M mythtv/libs/libmythtv/test/test_iptvrecorder/test_iptvrecorder.h
    M mythtv/libs/libmythtv/videosource.cpp
    M mythtv/programs/mythbackend/scheduler.cpp
    M mythtv/programs/mythbackend/scheduler.h
    M mythtv/programs/mythbackend/services/channel.cpp
    M mythtv/programs/mythbackend/services/channel.h
    M mythtv/programs/mythbackend/services/dvr.cpp
    M mythtv/programs/mythbackend/services/myth.cpp
    M mythtv/programs/mythbackend/services/myth.h
    M mythtv/programs/mythbackend/services/serviceUtil.cpp
    M mythtv/programs/mythcommflag/ClassicLogoDetector.cpp

  Log Message:
  -----------
  Merge branch 'master' into clang-tidy cleanups branch.


  Commit: 5d0f23ad8f09bb7b5d0b0f2f28575679d366f19c
      https://github.com/MythTV/mythtv/commit/5d0f23ad8f09bb7b5d0b0f2f28575679d366f19c
  Author: David Hampton <mythtv at love2code.net>
  Date:   2019-11-11 (Mon, 11 Nov 2019)

  Changed paths:
    M .clang-tidy
    M mythplugins/mytharchive/mytharchive/archiveutil.cpp
    M mythplugins/mytharchive/mytharchive/fileselector.cpp
    M mythplugins/mytharchive/mytharchive/logviewer.h
    M mythplugins/mytharchive/mytharchive/main.cpp
    M mythplugins/mytharchive/mytharchive/mythburn.cpp
    M mythplugins/mytharchive/mytharchive/mythburn.h
    M mythplugins/mytharchive/mytharchive/recordingselector.cpp
    M mythplugins/mytharchive/mytharchive/selectdestination.cpp
    M mythplugins/mytharchive/mytharchive/selectdestination.h
    M mythplugins/mytharchive/mytharchive/themeselector.h
    M mythplugins/mytharchive/mytharchive/thumbfinder.cpp
    M mythplugins/mytharchive/mytharchive/thumbfinder.h
    M mythplugins/mytharchive/mytharchive/videoselector.cpp
    M mythplugins/mytharchive/mytharchive/videoselector.h
    M mythplugins/mytharchive/mytharchivehelper/external/pxsup2dast.c
    M mythplugins/mytharchive/mytharchivehelper/main.cpp
    M mythplugins/mythbrowser/mythbrowser/bookmarkmanager.cpp
    M mythplugins/mythbrowser/mythbrowser/bookmarkmanager.h
    M mythplugins/mythbrowser/mythbrowser/main.cpp
    M mythplugins/mythbrowser/mythbrowser/mythflashplayer.cpp
    M mythplugins/mythgame/mythgame/gamehandler.cpp
    M mythplugins/mythgame/mythgame/gamehandler.h
    M mythplugins/mythgame/mythgame/gamescan.h
    M mythplugins/mythgame/mythgame/gameui.cpp
    M mythplugins/mythgame/mythgame/gameui.h
    M mythplugins/mythgame/mythgame/main.cpp
    M mythplugins/mythgame/mythgame/rom_metadata.cpp
    M mythplugins/mythgame/mythgame/romedit.cpp
    M mythplugins/mythgame/mythgame/rominfo.h
    M mythplugins/mythmusic/mythmusic/avfdecoder.cpp
    M mythplugins/mythmusic/mythmusic/bumpscope.cpp
    M mythplugins/mythmusic/mythmusic/bumpscope.h
    M mythplugins/mythmusic/mythmusic/cdrip.cpp
    M mythplugins/mythmusic/mythmusic/dbcheck.cpp
    M mythplugins/mythmusic/mythmusic/decoderhandler.cpp
    M mythplugins/mythmusic/mythmusic/editmetadata.cpp
    M mythplugins/mythmusic/mythmusic/editmetadata.h
    M mythplugins/mythmusic/mythmusic/encoder.cpp
    M mythplugins/mythmusic/mythmusic/encoder.h
    M mythplugins/mythmusic/mythmusic/generalsettings.h
    M mythplugins/mythmusic/mythmusic/importmusic.cpp
    M mythplugins/mythmusic/mythmusic/importmusic.h
    M mythplugins/mythmusic/mythmusic/lameencoder.h
    M mythplugins/mythmusic/mythmusic/lyricsview.cpp
    M mythplugins/mythmusic/mythmusic/main.cpp
    M mythplugins/mythmusic/mythmusic/mainvisual.cpp
    M mythplugins/mythmusic/mythmusic/musiccommon.cpp
    M mythplugins/mythmusic/mythmusic/musiccommon.h
    M mythplugins/mythmusic/mythmusic/musicdata.h
    M mythplugins/mythmusic/mythmusic/musicplayer.cpp
    M mythplugins/mythmusic/mythmusic/musicplayer.h
    M mythplugins/mythmusic/mythmusic/playlist.cpp
    M mythplugins/mythmusic/mythmusic/playlist.h
    M mythplugins/mythmusic/mythmusic/playlistcontainer.cpp
    M mythplugins/mythmusic/mythmusic/playlistcontainer.h
    M mythplugins/mythmusic/mythmusic/playlisteditorview.cpp
    M mythplugins/mythmusic/mythmusic/playlisteditorview.h
    M mythplugins/mythmusic/mythmusic/searchview.cpp
    M mythplugins/mythmusic/mythmusic/searchview.h
    M mythplugins/mythmusic/mythmusic/smartplaylist.cpp
    M mythplugins/mythmusic/mythmusic/smartplaylist.h
    M mythplugins/mythmusic/mythmusic/streamview.cpp
    M mythplugins/mythmusic/mythmusic/streamview.h
    M mythplugins/mythmusic/mythmusic/synaesthesia.cpp
    M mythplugins/mythmusic/mythmusic/synaesthesia.h
    M mythplugins/mythmusic/mythmusic/visualize.cpp
    M mythplugins/mythmusic/mythmusic/visualize.h
    M mythplugins/mythmusic/mythmusic/visualizerview.h
    M mythplugins/mythmusic/mythmusic/vorbisencoder.cpp
    M mythplugins/mythnetvision/mythfillnetvision/main.cpp
    M mythplugins/mythnetvision/mythnetvision/main.cpp
    M mythplugins/mythnetvision/mythnetvision/netbase.cpp
    M mythplugins/mythnetvision/mythnetvision/netbase.h
    M mythplugins/mythnetvision/mythnetvision/neteditorbase.cpp
    M mythplugins/mythnetvision/mythnetvision/netsearch.cpp
    M mythplugins/mythnetvision/mythnetvision/nettree.cpp
    M mythplugins/mythnetvision/mythnetvision/nettree.h
    M mythplugins/mythnetvision/mythnetvision/rsseditor.cpp
    M mythplugins/mythnetvision/mythnetvision/rsseditor.h
    M mythplugins/mythnews/mythnews/main.cpp
    M mythplugins/mythnews/mythnews/mythnews.cpp
    M mythplugins/mythnews/mythnews/mythnews.h
    M mythplugins/mythnews/mythnews/newsarticle.cpp
    M mythplugins/mythnews/mythnews/newsarticle.h
    M mythplugins/mythnews/mythnews/newssite.cpp
    M mythplugins/mythnews/mythnews/newssite.h
    M mythplugins/mythweather/mythweather/main.cpp
    M mythplugins/mythweather/mythweather/sourceManager.cpp
    M mythplugins/mythweather/mythweather/weatherScreen.cpp
    M mythplugins/mythweather/mythweather/weatherScreen.h
    M mythplugins/mythweather/mythweather/weatherSetup.cpp
    M mythplugins/mythzoneminder/mythzmserver/main.cpp
    M mythplugins/mythzoneminder/mythzmserver/zmserver.cpp
    M mythplugins/mythzoneminder/mythzmserver/zmserver.h
    M mythplugins/mythzoneminder/mythzoneminder/main.cpp
    M mythplugins/mythzoneminder/mythzoneminder/zmclient.cpp
    M mythplugins/mythzoneminder/mythzoneminder/zmevents.h
    M mythplugins/mythzoneminder/mythzoneminder/zmliveplayer.cpp
    M mythplugins/mythzoneminder/mythzoneminder/zmminiplayer.cpp
    M mythtv/configure
    M mythtv/external/qjsonwrapper/qjsonwrapper/Json.cpp
    M mythtv/filters/adjust/filter_adjust.c
    M mythtv/filters/bobdeint/filter_bobdeint.c
    M mythtv/filters/crop/filter_crop.c
    M mythtv/filters/denoise3d/filter_denoise3d.c
    M mythtv/filters/fieldorder/filter_fieldorder.c
    M mythtv/filters/force/filter_force.c
    M mythtv/filters/greedyhdeint/color.c
    M mythtv/filters/greedyhdeint/filter_greedyhdeint.c
    M mythtv/filters/invert/filter_invert.c
    M mythtv/filters/ivtc/filter_ivtc.c
    M mythtv/filters/ivtc/pullup.c
    M mythtv/filters/kerneldeint/filter_kerneldeint.c
    M mythtv/filters/linearblend/filter_linearblend.c
    M mythtv/filters/onefield/filter_onefield.c
    M mythtv/filters/postprocess/filter_postprocess.c
    M mythtv/filters/quickdnr/filter_quickdnr.c
    M mythtv/filters/vflip/filter_vflip.c
    M mythtv/filters/yadif/filter_yadif.c
    M mythtv/libs/libmyth/audio/audioconvert.cpp
    M mythtv/libs/libmyth/audio/audiooutput.cpp
    M mythtv/libs/libmyth/audio/audiooutput_omx.cpp
    M mythtv/libs/libmyth/audio/audiooutputalsa.cpp
    M mythtv/libs/libmyth/audio/audiooutputalsa.h
    M mythtv/libs/libmyth/audio/audiooutputbase.cpp
    M mythtv/libs/libmyth/audio/audiooutputbase.h
    M mythtv/libs/libmyth/audio/audiooutputca.cpp
    M mythtv/libs/libmyth/audio/audiooutputdigitalencoder.cpp
    M mythtv/libs/libmyth/audio/audiooutputdigitalencoder.h
    M mythtv/libs/libmyth/audio/audiooutputdownmix.cpp
    M mythtv/libs/libmyth/audio/audiooutputgraph.cpp
    M mythtv/libs/libmyth/audio/audiooutputjack.cpp
    M mythtv/libs/libmyth/audio/audiooutputjack.h
    M mythtv/libs/libmyth/audio/audiooutputnull.cpp
    M mythtv/libs/libmyth/audio/audiooutputnull.h
    M mythtv/libs/libmyth/audio/audiooutputoss.cpp
    M mythtv/libs/libmyth/audio/audiooutputpulse.cpp
    M mythtv/libs/libmyth/audio/audiooutputpulse.h
    M mythtv/libs/libmyth/audio/audiooutputsettings.cpp
    M mythtv/libs/libmyth/audio/audiooutputsettings.h
    M mythtv/libs/libmyth/audio/audiooutpututil.cpp
    M mythtv/libs/libmyth/audio/audiopulsehandler.cpp
    M mythtv/libs/libmyth/audio/audiosettings.cpp
    M mythtv/libs/libmyth/audio/audiosettings.h
    M mythtv/libs/libmyth/audio/eldutils.cpp
    M mythtv/libs/libmyth/audio/eldutils.h
    M mythtv/libs/libmyth/audio/pink.c
    M mythtv/libs/libmyth/audio/spdifencoder.cpp
    M mythtv/libs/libmyth/audio/spdifencoder.h
    M mythtv/libs/libmyth/backendselect.cpp
    M mythtv/libs/libmyth/guistartup.cpp
    M mythtv/libs/libmyth/langsettings.cpp
    M mythtv/libs/libmyth/mediamonitor-unix.cpp
    M mythtv/libs/libmyth/mythcontext.cpp
    M mythtv/libs/libmyth/mythcontext.h
    M mythtv/libs/libmyth/mythmediamonitor.cpp
    M mythtv/libs/libmyth/mythmediamonitor.h
    M mythtv/libs/libmyth/mythrssmanager.cpp
    M mythtv/libs/libmyth/mythrssmanager.h
    M mythtv/libs/libmyth/netgrabbermanager.cpp
    M mythtv/libs/libmyth/omxcontext.cpp
    M mythtv/libs/libmyth/programinfo.cpp
    M mythtv/libs/libmyth/programinfo.h
    M mythtv/libs/libmyth/programinfoupdater.cpp
    M mythtv/libs/libmyth/rawsettingseditor.cpp
    M mythtv/libs/libmyth/rssparse.cpp
    M mythtv/libs/libmyth/rssparse.h
    M mythtv/libs/libmyth/schemawizard.cpp
    M mythtv/libs/libmyth/schemawizard.h
    M mythtv/libs/libmyth/standardsettings.cpp
    M mythtv/libs/libmyth/standardsettings.h
    M mythtv/libs/libmyth/storagegroupeditor.cpp
    M mythtv/libs/libmyth/storagegroupeditor.h
    M mythtv/libs/libmythbase/dbutil.cpp
    M mythtv/libs/libmythbase/dbutil.h
    M mythtv/libs/libmythbase/filesysteminfo.cpp
    M mythtv/libs/libmythbase/hardwareprofile.cpp
    M mythtv/libs/libmythbase/hardwareprofile.h
    M mythtv/libs/libmythbase/housekeeper.cpp
    M mythtv/libs/libmythbase/housekeeper.h
    M mythtv/libs/libmythbase/lcddevice.cpp
    M mythtv/libs/libmythbase/lcddevice.h
    M mythtv/libs/libmythbase/logging.cpp
    M mythtv/libs/libmythbase/logging.h
    M mythtv/libs/libmythbase/loggingserver.cpp
    M mythtv/libs/libmythbase/loggingserver.h
    M mythtv/libs/libmythbase/mthreadpool.cpp
    M mythtv/libs/libmythbase/mthreadpool.h
    M mythtv/libs/libmythbase/mythcdrom-linux.cpp
    M mythtv/libs/libmythbase/mythcommandlineparser.cpp
    M mythtv/libs/libmythbase/mythcommandlineparser.h
    M mythtv/libs/libmythbase/mythcorecontext.cpp
    M mythtv/libs/libmythbase/mythcorecontext.h
    M mythtv/libs/libmythbase/mythcoreutil.cpp
    M mythtv/libs/libmythbase/mythdbcon.cpp
    M mythtv/libs/libmythbase/mythdbcon.h
    M mythtv/libs/libmythbase/mythdownloadmanager.cpp
    M mythtv/libs/libmythbase/mythdownloadmanager.h
    M mythtv/libs/libmythbase/mythmiscutil.cpp
    M mythtv/libs/libmythbase/mythsession.cpp
    M mythtv/libs/libmythbase/mythsession.h
    M mythtv/libs/libmythbase/mythsorthelper.cpp
    M mythtv/libs/libmythbase/mythsorthelper.h
    M mythtv/libs/libmythbase/mythstorage.cpp
    M mythtv/libs/libmythbase/mythstorage.h
    M mythtv/libs/libmythbase/mythsystem.cpp
    M mythtv/libs/libmythbase/mythsystem.h
    M mythtv/libs/libmythbase/mythsystemlegacy.cpp
    M mythtv/libs/libmythbase/mythsystemlegacy.h
    M mythtv/libs/libmythbase/mythsystemunix.cpp
    M mythtv/libs/libmythbase/mythsystemunix.h
    M mythtv/libs/libmythbase/mythtimezone.cpp
    M mythtv/libs/libmythbase/plist.h
    M mythtv/libs/libmythbase/portchecker.h
    M mythtv/libs/libmythbase/remotefile.cpp
    M mythtv/libs/libmythbase/remotefile.h
    M mythtv/libs/libmythbase/serverpool.cpp
    M mythtv/libs/libmythbase/signalhandling.cpp
    M mythtv/libs/libmythbase/storagegroup.cpp
    M mythtv/libs/libmythbase/storagegroup.h
    M mythtv/libs/libmythbase/test/test_mythsorthelper/test_mythsorthelper.h
    M mythtv/libs/libmythbase/unzip.cpp
    M mythtv/libs/libmythbase/unzip.h
    M mythtv/libs/libmythbase/unzip_p.h
    M mythtv/libs/libmythfreemheg/Actions.cpp
    M mythtv/libs/libmythfreemheg/BaseClasses.cpp
    M mythtv/libs/libmythfreemheg/Engine.cpp
    M mythtv/libs/libmythfreemheg/Groups.cpp
    M mythtv/libs/libmythfreemheg/Ingredients.cpp
    M mythtv/libs/libmythfreemheg/Link.cpp
    M mythtv/libs/libmythfreemheg/ParseBinary.cpp
    M mythtv/libs/libmythfreemheg/ParseNode.h
    M mythtv/libs/libmythfreemheg/Programs.cpp
    M mythtv/libs/libmythfreemheg/Text.cpp
    M mythtv/libs/libmythfreemheg/TokenGroup.cpp
    M mythtv/libs/libmythfreemheg/Visible.cpp
    M mythtv/libs/libmythfreemheg/Visible.h
    M mythtv/libs/libmythfreesurround/el_processor.cpp
    M mythtv/libs/libmythfreesurround/freesurround.cpp
    M mythtv/libs/libmythfreesurround/freesurround.h
    M mythtv/libs/libmythmetadata/dbaccess.cpp
    M mythtv/libs/libmythmetadata/imagemanager.cpp
    M mythtv/libs/libmythmetadata/imagemanager.h
    M mythtv/libs/libmythmetadata/imagemetadata.cpp
    M mythtv/libs/libmythmetadata/imagescanner.cpp
    M mythtv/libs/libmythmetadata/lyricsdata.cpp
    M mythtv/libs/libmythmetadata/metadatacommon.cpp
    M mythtv/libs/libmythmetadata/metadatacommon.h
    M mythtv/libs/libmythmetadata/metadatadownload.cpp
    M mythtv/libs/libmythmetadata/metadatadownload.h
    M mythtv/libs/libmythmetadata/metadatafactory.cpp
    M mythtv/libs/libmythmetadata/metadatagrabber.cpp
    M mythtv/libs/libmythmetadata/metadatagrabber.h
    M mythtv/libs/libmythmetadata/metadataimagedownload.cpp
    M mythtv/libs/libmythmetadata/metaio.cpp
    M mythtv/libs/libmythmetadata/metaio.h
    M mythtv/libs/libmythmetadata/metaioavfcomment.h
    M mythtv/libs/libmythmetadata/metaioflacvorbis.h
    M mythtv/libs/libmythmetadata/metaioid3.cpp
    M mythtv/libs/libmythmetadata/metaioid3.h
    M mythtv/libs/libmythmetadata/metaiomp4.h
    M mythtv/libs/libmythmetadata/metaiooggvorbis.h
    M mythtv/libs/libmythmetadata/metaiotaglib.h
    M mythtv/libs/libmythmetadata/metaiowavpack.h
    M mythtv/libs/libmythmetadata/musicfilescanner.cpp
    M mythtv/libs/libmythmetadata/musicfilescanner.h
    M mythtv/libs/libmythmetadata/musicmetadata.cpp
    M mythtv/libs/libmythmetadata/mythuiimageresults.cpp
    M mythtv/libs/libmythmetadata/mythuiimageresults.h
    M mythtv/libs/libmythmetadata/mythuimetadataresults.cpp
    M mythtv/libs/libmythmetadata/mythuimetadataresults.h
    M mythtv/libs/libmythmetadata/parentalcontrols.h
    M mythtv/libs/libmythmetadata/videometadata.cpp
    M mythtv/libs/libmythmetadata/videometadatalistmanager.cpp
    M mythtv/libs/libmythmetadata/videometadatalistmanager.h
    M mythtv/libs/libmythmetadata/videoscan.cpp
    M mythtv/libs/libmythmpeg2/alloc.c
    M mythtv/libs/libmythmpeg2/cpu_accel.c
    M mythtv/libs/libmythmpeg2/decode.c
    M mythtv/libs/libmythmpeg2/header.c
    M mythtv/libs/libmythmpeg2/idct.c
    M mythtv/libs/libmythmpeg2/idct_mmx.c
    M mythtv/libs/libmythmpeg2/slice.c
    M mythtv/libs/libmythprotoserver/mythsocketmanager.h
    M mythtv/libs/libmythprotoserver/requesthandler/basehandler.cpp
    M mythtv/libs/libmythprotoserver/requesthandler/basehandler.h
    M mythtv/libs/libmythprotoserver/requesthandler/deletethread.cpp
    M mythtv/libs/libmythprotoserver/requesthandler/fileserverhandler.cpp
    M mythtv/libs/libmythprotoserver/requesthandler/fileserverhandler.h
    M mythtv/libs/libmythprotoserver/requesthandler/messagehandler.h
    M mythtv/libs/libmythprotoserver/requesthandler/outboundhandler.cpp
    M mythtv/libs/libmythprotoserver/sockethandler/filetransfer.cpp
    M mythtv/libs/libmythservicecontracts/test/test_datacontracts/test_datacontracts.h
    M mythtv/libs/libmythtv/AirPlay/mythairplayserver.cpp
    M mythtv/libs/libmythtv/AirPlay/mythraopconnection.cpp
    M mythtv/libs/libmythtv/Bluray/bdringbuffer.h
    M mythtv/libs/libmythtv/DVD/dvdringbuffer.cpp
    M mythtv/libs/libmythtv/DVD/dvdringbuffer.h
    M mythtv/libs/libmythtv/HLS/httplivestreambuffer.cpp
    M mythtv/libs/libmythtv/avformatdecoder.cpp
    M mythtv/libs/libmythtv/avformatdecoder.h
    M mythtv/libs/libmythtv/avformatwriter.cpp
    M mythtv/libs/libmythtv/avformatwriter.h
    M mythtv/libs/libmythtv/cardutil.cpp
    M mythtv/libs/libmythtv/cc608decoder.cpp
    M mythtv/libs/libmythtv/cc608decoder.h
    M mythtv/libs/libmythtv/cc608reader.cpp
    M mythtv/libs/libmythtv/cc608reader.h
    M mythtv/libs/libmythtv/cc708decoder.cpp
    M mythtv/libs/libmythtv/channelscan/channelscan_sm.h
    M mythtv/libs/libmythtv/channelscan/scanmonitor.cpp
    M mythtv/libs/libmythtv/channelutil.cpp
    M mythtv/libs/libmythtv/channelutil.h
    M mythtv/libs/libmythtv/dbcheck.cpp
    M mythtv/libs/libmythtv/diseqc.cpp
    M mythtv/libs/libmythtv/diseqcsettings.cpp
    M mythtv/libs/libmythtv/dsmcc.cpp
    M mythtv/libs/libmythtv/dtvmultiplex.cpp
    M mythtv/libs/libmythtv/dtvmultiplex.h
    M mythtv/libs/libmythtv/fileringbuffer.cpp
    M mythtv/libs/libmythtv/frequencytables.cpp
    M mythtv/libs/libmythtv/frequencytables.h
    M mythtv/libs/libmythtv/inputinfo.cpp
    M mythtv/libs/libmythtv/inputinfo.h
    M mythtv/libs/libmythtv/interactivetv.cpp
    M mythtv/libs/libmythtv/interactivetv.h
    M mythtv/libs/libmythtv/jitterometer.cpp
    M mythtv/libs/libmythtv/jitterometer.h
    M mythtv/libs/libmythtv/jobqueue.cpp
    M mythtv/libs/libmythtv/mpeg/H264Parser.cpp
    M mythtv/libs/libmythtv/mpeg/H264Parser.h
    M mythtv/libs/libmythtv/mpeg/atsc_huffman.cpp
    M mythtv/libs/libmythtv/mpeg/iso6937tables.cpp
    M mythtv/libs/libmythtv/mpeg/mpegstreamdata.cpp
    M mythtv/libs/libmythtv/mpeg/mpegstreamdata.h
    M mythtv/libs/libmythtv/mythavutil.cpp
    M mythtv/libs/libmythtv/mythiowrapper.cpp
    M mythtv/libs/libmythtv/mythplayer.cpp
    M mythtv/libs/libmythtv/mythplayer.h
    M mythtv/libs/libmythtv/mythsystemevent.cpp
    M mythtv/libs/libmythtv/nuppeldecoder.cpp
    M mythtv/libs/libmythtv/osd.cpp
    M mythtv/libs/libmythtv/previewgenerator.cpp
    M mythtv/libs/libmythtv/previewgeneratorqueue.cpp
    M mythtv/libs/libmythtv/privatedecoder_crystalhd.cpp
    M mythtv/libs/libmythtv/recorders/DeviceReadBuffer.cpp
    M mythtv/libs/libmythtv/recorders/DeviceReadBuffer.h
    M mythtv/libs/libmythtv/recorders/ExternalStreamHandler.h
    M mythtv/libs/libmythtv/recorders/HLS/HLSReader.cpp
    M mythtv/libs/libmythtv/recorders/HLS/HLSStream.cpp
    M mythtv/libs/libmythtv/recorders/HLS/HLSStream.h
    M mythtv/libs/libmythtv/recorders/NuppelVideoRecorder.cpp
    M mythtv/libs/libmythtv/recorders/NuppelVideoRecorder.h
    M mythtv/libs/libmythtv/recorders/RTjpegN.cpp
    M mythtv/libs/libmythtv/recorders/RTjpegN.h
    M mythtv/libs/libmythtv/recorders/analogsignalmonitor.cpp
    M mythtv/libs/libmythtv/recorders/channelbase.cpp
    M mythtv/libs/libmythtv/recorders/dtvchannel.cpp
    M mythtv/libs/libmythtv/recorders/dtvchannel.h
    M mythtv/libs/libmythtv/recorders/dtvrecorder.cpp
    M mythtv/libs/libmythtv/recorders/dtvrecorder.h
    M mythtv/libs/libmythtv/recorders/dvbchannel.cpp
    M mythtv/libs/libmythtv/recorders/dvbdev/dvbci.cpp
    M mythtv/libs/libmythtv/recorders/dvbdev/dvbci.h
    M mythtv/libs/libmythtv/recorders/dvbstreamhandler.cpp
    M mythtv/libs/libmythtv/recorders/hdhrsignalmonitor.cpp
    M mythtv/libs/libmythtv/recorders/hdhrstreamhandler.cpp
    M mythtv/libs/libmythtv/recorders/iptvstreamhandler.cpp
    M mythtv/libs/libmythtv/recorders/iptvstreamhandler.h
    M mythtv/libs/libmythtv/recorders/linuxfirewiredevice.cpp
    M mythtv/libs/libmythtv/recorders/mpegrecorder.cpp
    M mythtv/libs/libmythtv/recorders/v4l2encstreamhandler.h
    M mythtv/libs/libmythtv/recorders/v4lchannel.cpp
    M mythtv/libs/libmythtv/recorders/v4lrecorder.cpp
    M mythtv/libs/libmythtv/recordingprofile.cpp
    M mythtv/libs/libmythtv/ringbuffer.cpp
    M mythtv/libs/libmythtv/scanwizard.cpp
    M mythtv/libs/libmythtv/scanwizard.h
    M mythtv/libs/libmythtv/teletextreader.cpp
    M mythtv/libs/libmythtv/teletextreader.h
    M mythtv/libs/libmythtv/test/test_avcinfo/test_avcinfo.h
    M mythtv/libs/libmythtv/test/test_eitfixups/test_eitfixups.h
    M mythtv/libs/libmythtv/test/test_mpegtables/test_mpegtables.h
    M mythtv/libs/libmythtv/test/test_mythiowrapper/test_mythiowrapper.h
    M mythtv/libs/libmythtv/textsubtitleparser.cpp
    M mythtv/libs/libmythtv/transporteditor.cpp
    M mythtv/libs/libmythtv/transporteditor.h
    M mythtv/libs/libmythtv/tv_play.cpp
    M mythtv/libs/libmythtv/tv_play.h
    M mythtv/libs/libmythtv/v4l2util.cpp
    M mythtv/libs/libmythtv/vaapicontext.cpp
    M mythtv/libs/libmythtv/vbi608extractor.cpp
    M mythtv/libs/libmythtv/vbi608extractor.h
    M mythtv/libs/libmythtv/videodbcheck.cpp
    M mythtv/libs/libmythtv/videodisplayprofile.cpp
    M mythtv/libs/libmythtv/videodisplayprofile.h
    M mythtv/libs/libmythtv/videoout_opengl.cpp
    M mythtv/libs/libmythtv/videosource.cpp
    M mythtv/libs/libmythtv/videosource.h
    M mythtv/libs/libmythtv/visualisations/goom/filters.c
    M mythtv/libs/libmythtv/visualisations/goom/goom_core.c
    M mythtv/libs/libmythtv/visualisations/videovisualgoom.cpp
    M mythtv/libs/libmythtv/vsync.cpp
    M mythtv/libs/libmythui/DisplayRes.cpp
    M mythtv/libs/libmythui/DisplayResScreen.cpp
    M mythtv/libs/libmythui/DisplayResScreen.h
    M mythtv/libs/libmythui/DisplayResX.cpp
    M mythtv/libs/libmythui/cecadapter.cpp
    M mythtv/libs/libmythui/jsmenu.cpp
    M mythtv/libs/libmythui/lirc.cpp
    M mythtv/libs/libmythui/lirc.h
    M mythtv/libs/libmythui/lirc_client.c
    M mythtv/libs/libmythui/mythdialogbox.cpp
    M mythtv/libs/libmythui/mythdialogbox.h
    M mythtv/libs/libmythui/mythdisplay.cpp
    M mythtv/libs/libmythui/mythfontmanager.cpp
    M mythtv/libs/libmythui/mythfontproperties.cpp
    M mythtv/libs/libmythui/mythgenerictree.cpp
    M mythtv/libs/libmythui/mythgesture.cpp
    M mythtv/libs/libmythui/mythimage.cpp
    M mythtv/libs/libmythui/mythimage.h
    M mythtv/libs/libmythui/mythmainwindow.cpp
    M mythtv/libs/libmythui/mythmainwindow.h
    M mythtv/libs/libmythui/mythnotificationcenter.cpp
    M mythtv/libs/libmythui/mythnotificationcenter.h
    M mythtv/libs/libmythui/mythpainter.cpp
    M mythtv/libs/libmythui/mythpainter.h
    M mythtv/libs/libmythui/mythpainter_qimage.cpp
    M mythtv/libs/libmythui/mythpainter_yuva.cpp
    M mythtv/libs/libmythui/mythrect.cpp
    M mythtv/libs/libmythui/mythrect.h
    M mythtv/libs/libmythui/mythrender_opengl.cpp
    M mythtv/libs/libmythui/mythrender_opengl.h
    M mythtv/libs/libmythui/mythrender_opengl1.cpp
    M mythtv/libs/libmythui/mythrender_opengl2.cpp
    M mythtv/libs/libmythui/mythrender_vdpau.cpp
    M mythtv/libs/libmythui/mythscreenstack.cpp
    M mythtv/libs/libmythui/mythscreenstack.h
    M mythtv/libs/libmythui/mythscreentype.cpp
    M mythtv/libs/libmythui/mythscreentype.h
    M mythtv/libs/libmythui/myththemedmenu.h
    M mythtv/libs/libmythui/mythudplistener.cpp
    M mythtv/libs/libmythui/mythudplistener.h
    M mythtv/libs/libmythui/mythuibuttonlist.cpp
    M mythtv/libs/libmythui/mythuibuttonlist.h
    M mythtv/libs/libmythui/mythuifilebrowser.cpp
    M mythtv/libs/libmythui/mythuifilebrowser.h
    M mythtv/libs/libmythui/mythuiguidegrid.cpp
    M mythtv/libs/libmythui/mythuiguidegrid.h
    M mythtv/libs/libmythui/mythuihelper.cpp
    M mythtv/libs/libmythui/mythuihelper.h
    M mythtv/libs/libmythui/mythuiimage.cpp
    M mythtv/libs/libmythui/mythuispinbox.cpp
    M mythtv/libs/libmythui/mythuitext.cpp
    M mythtv/libs/libmythui/mythuitype.h
    M mythtv/libs/libmythui/mythuiwebbrowser.h
    M mythtv/libs/libmythui/mythvirtualkeyboard.cpp
    M mythtv/libs/libmythui/mythvirtualkeyboard.h
    M mythtv/libs/libmythui/mythxdisplay.cpp
    M mythtv/libs/libmythui/screensaver-x11.cpp
    M mythtv/libs/libmythui/screensaver.cpp
    M mythtv/libs/libmythui/util-nvctrl.cpp
    M mythtv/libs/libmythui/xmlparsebase.cpp
    M mythtv/libs/libmythupnp/bufferedsocketdevice.cpp
    M mythtv/libs/libmythupnp/bufferedsocketdevice.h
    M mythtv/libs/libmythupnp/eventing.cpp
    M mythtv/libs/libmythupnp/eventing.h
    M mythtv/libs/libmythupnp/httprequest.cpp
    M mythtv/libs/libmythupnp/httprequest.h
    M mythtv/libs/libmythupnp/httpserver.cpp
    M mythtv/libs/libmythupnp/mmembuf.cpp
    M mythtv/libs/libmythupnp/mmulticastsocketdevice.h
    M mythtv/libs/libmythupnp/msocketdevice.h
    M mythtv/libs/libmythupnp/msocketdevice_unix.cpp
    M mythtv/libs/libmythupnp/serializers/jsonSerializer.h
    M mythtv/libs/libmythupnp/serializers/serializer.h
    M mythtv/libs/libmythupnp/serializers/xmlSerializer.h
    M mythtv/libs/libmythupnp/serverSideScripting.cpp
    M mythtv/libs/libmythupnp/serverSideScripting.h
    M mythtv/libs/libmythupnp/servicehost.cpp
    M mythtv/libs/libmythupnp/servicehost.h
    M mythtv/libs/libmythupnp/soapclient.cpp
    M mythtv/libs/libmythupnp/soapclient.h
    M mythtv/libs/libmythupnp/ssdp.cpp
    M mythtv/libs/libmythupnp/ssdp.h
    M mythtv/libs/libmythupnp/taskqueue.cpp
    M mythtv/libs/libmythupnp/upnp.cpp
    M mythtv/libs/libmythupnp/upnp.h
    M mythtv/libs/libmythupnp/upnpcds.cpp
    M mythtv/libs/libmythupnp/upnpcds.h
    M mythtv/libs/libmythupnp/upnpcdsobjects.cpp
    M mythtv/libs/libmythupnp/upnpcdsobjects.h
    M mythtv/libs/libmythupnp/upnpcmgr.h
    M mythtv/libs/libmythupnp/upnpdevice.h
    M mythtv/libs/libmythupnp/upnpmsrr.h
    M mythtv/libs/libmythupnp/websocket.h
    M mythtv/libs/libmythupnp/wsdl.cpp
    M mythtv/libs/libmythupnp/wsdl.h
    M mythtv/libs/libmythupnp/xsd.cpp
    M mythtv/libs/libmythupnp/xsd.h
    M mythtv/programs/mythavtest/main.cpp
    M mythtv/programs/mythbackend/autoexpire.cpp
    M mythtv/programs/mythbackend/autoexpire.h
    M mythtv/programs/mythbackend/backendhousekeeper.h
    M mythtv/programs/mythbackend/encoderlink.cpp
    M mythtv/programs/mythbackend/encoderlink.h
    M mythtv/programs/mythbackend/filetransfer.cpp
    M mythtv/programs/mythbackend/httpconfig.cpp
    M mythtv/programs/mythbackend/httpstatus.h
    M mythtv/programs/mythbackend/internetContent.h
    M mythtv/programs/mythbackend/main.cpp
    M mythtv/programs/mythbackend/main_helpers.cpp
    M mythtv/programs/mythbackend/mainserver.cpp
    M mythtv/programs/mythbackend/mainserver.h
    M mythtv/programs/mythbackend/mediaserver.cpp
    M mythtv/programs/mythbackend/mythsettings.cpp
    M mythtv/programs/mythbackend/playbacksock.cpp
    M mythtv/programs/mythbackend/scheduler.cpp
    M mythtv/programs/mythbackend/scheduler.h
    M mythtv/programs/mythbackend/services/content.cpp
    M mythtv/programs/mythbackend/services/dvr.cpp
    M mythtv/programs/mythbackend/services/myth.cpp
    M mythtv/programs/mythbackend/services/serviceUtil.cpp
    M mythtv/programs/mythbackend/upnpcdsmusic.cpp
    M mythtv/programs/mythbackend/upnpcdsmusic.h
    M mythtv/programs/mythbackend/upnpcdstv.cpp
    M mythtv/programs/mythbackend/upnpcdstv.h
    M mythtv/programs/mythbackend/upnpcdsvideo.cpp
    M mythtv/programs/mythbackend/upnpcdsvideo.h
    M mythtv/programs/mythccextractor/main.cpp
    M mythtv/programs/mythcommflag/BlankFrameDetector.cpp
    M mythtv/programs/mythcommflag/BlankFrameDetector.h
    M mythtv/programs/mythcommflag/BorderDetector.cpp
    M mythtv/programs/mythcommflag/BorderDetector.h
    M mythtv/programs/mythcommflag/CannyEdgeDetector.cpp
    M mythtv/programs/mythcommflag/CannyEdgeDetector.h
    M mythtv/programs/mythcommflag/ClassicCommDetector.cpp
    M mythtv/programs/mythcommflag/ClassicCommDetector.h
    M mythtv/programs/mythcommflag/ClassicLogoDetector.cpp
    M mythtv/programs/mythcommflag/CommDetector2.cpp
    M mythtv/programs/mythcommflag/CommDetector2.h
    M mythtv/programs/mythcommflag/CommDetectorFactory.h
    M mythtv/programs/mythcommflag/EdgeDetector.cpp
    M mythtv/programs/mythcommflag/FrameAnalyzer.cpp
    M mythtv/programs/mythcommflag/Histogram.cpp
    M mythtv/programs/mythcommflag/Histogram.h
    M mythtv/programs/mythcommflag/HistogramAnalyzer.cpp
    M mythtv/programs/mythcommflag/HistogramAnalyzer.h
    M mythtv/programs/mythcommflag/PGMConverter.cpp
    M mythtv/programs/mythcommflag/PGMConverter.h
    M mythtv/programs/mythcommflag/PrePostRollFlagger.cpp
    M mythtv/programs/mythcommflag/SceneChangeDetector.cpp
    M mythtv/programs/mythcommflag/TemplateFinder.cpp
    M mythtv/programs/mythcommflag/TemplateFinder.h
    M mythtv/programs/mythcommflag/TemplateMatcher.cpp
    M mythtv/programs/mythcommflag/TemplateMatcher.h
    M mythtv/programs/mythcommflag/main.cpp
    M mythtv/programs/mythcommflag/pgm.cpp
    M mythtv/programs/mythcommflag/quickselect.c
    M mythtv/programs/mythexternrecorder/MythExternControl.cpp
    M mythtv/programs/mythexternrecorder/MythExternRecApp.cpp
    M mythtv/programs/mythexternrecorder/MythExternRecApp.h
    M mythtv/programs/mythexternrecorder/main.cpp
    M mythtv/programs/mythfilerecorder/mythfilerecorder.cpp
    M mythtv/programs/mythfilerecorder/mythfilerecorder.h
    M mythtv/programs/mythfilldatabase/channeldata.cpp
    M mythtv/programs/mythfilldatabase/channeldata.h
    M mythtv/programs/mythfilldatabase/filldata.cpp
    M mythtv/programs/mythfilldatabase/main.cpp
    M mythtv/programs/mythfilldatabase/xmltvparser.cpp
    M mythtv/programs/mythfilldatabase/xmltvparser.h
    M mythtv/programs/mythfrontend/action.cpp
    M mythtv/programs/mythfrontend/action.h
    M mythtv/programs/mythfrontend/audiogeneralsettings.cpp
    M mythtv/programs/mythfrontend/audiogeneralsettings.h
    M mythtv/programs/mythfrontend/channelrecpriority.cpp
    M mythtv/programs/mythfrontend/channelrecpriority.h
    M mythtv/programs/mythfrontend/exitprompt.h
    M mythtv/programs/mythfrontend/galleryinfo.cpp
    M mythtv/programs/mythfrontend/galleryslideview.cpp
    M mythtv/programs/mythfrontend/gallerythumbview.cpp
    M mythtv/programs/mythfrontend/gallerythumbview.h
    M mythtv/programs/mythfrontend/gallerytransitions.cpp
    M mythtv/programs/mythfrontend/gallerytransitions.h
    M mythtv/programs/mythfrontend/galleryviews.cpp
    M mythtv/programs/mythfrontend/globalsettings.cpp
    M mythtv/programs/mythfrontend/globalsettings.h
    M mythtv/programs/mythfrontend/guidegrid.cpp
    M mythtv/programs/mythfrontend/guidegrid.h
    M mythtv/programs/mythfrontend/idlescreen.cpp
    M mythtv/programs/mythfrontend/keybindings.cpp
    M mythtv/programs/mythfrontend/keybindings.h
    M mythtv/programs/mythfrontend/main.cpp
    M mythtv/programs/mythfrontend/mythcontrols.cpp
    M mythtv/programs/mythfrontend/mythcontrols.h
    M mythtv/programs/mythfrontend/mythfexml.h
    M mythtv/programs/mythfrontend/networkcontrol.cpp
    M mythtv/programs/mythfrontend/networkcontrol.h
    M mythtv/programs/mythfrontend/playbackbox.cpp
    M mythtv/programs/mythfrontend/playbackbox.h
    M mythtv/programs/mythfrontend/prevreclist.cpp
    M mythtv/programs/mythfrontend/prevreclist.h
    M mythtv/programs/mythfrontend/progdetails.cpp
    M mythtv/programs/mythfrontend/progdetails.h
    M mythtv/programs/mythfrontend/proglist.cpp
    M mythtv/programs/mythfrontend/proglist.h
    M mythtv/programs/mythfrontend/proglist_helpers.cpp
    M mythtv/programs/mythfrontend/programrecpriority.cpp
    M mythtv/programs/mythfrontend/schedulecommon.cpp
    M mythtv/programs/mythfrontend/schedulecommon.h
    M mythtv/programs/mythfrontend/scheduleeditor.cpp
    M mythtv/programs/mythfrontend/scheduleeditor.h
    M mythtv/programs/mythfrontend/services/frontend.cpp
    M mythtv/programs/mythfrontend/setupwizard_general.cpp
    M mythtv/programs/mythfrontend/statusbox.cpp
    M mythtv/programs/mythfrontend/themechooser.cpp
    M mythtv/programs/mythfrontend/themechooser.h
    M mythtv/programs/mythfrontend/upnpscanner.h
    M mythtv/programs/mythfrontend/videodlg.cpp
    M mythtv/programs/mythfrontend/videodlg.h
    M mythtv/programs/mythfrontend/videofileassoc.cpp
    M mythtv/programs/mythfrontend/videofileassoc.h
    M mythtv/programs/mythfrontend/videofilter.cpp
    M mythtv/programs/mythfrontend/videolist.cpp
    M mythtv/programs/mythfrontend/videoplayercommand.cpp
    M mythtv/programs/mythfrontend/viewscheduled.cpp
    M mythtv/programs/mythfrontend/viewschedulediff.cpp
    M mythtv/programs/mythjobqueue/main.cpp
    M mythtv/programs/mythlcdserver/lcdprocclient.cpp
    M mythtv/programs/mythlcdserver/lcdprocclient.h
    M mythtv/programs/mythlcdserver/lcdserver.cpp
    M mythtv/programs/mythlcdserver/lcdserver.h
    M mythtv/programs/mythlcdserver/main.cpp
    M mythtv/programs/mythmediaserver/main.cpp
    M mythtv/programs/mythmetadatalookup/lookup.h
    M mythtv/programs/mythmetadatalookup/main.cpp
    M mythtv/programs/mythpreviewgen/main.cpp
    M mythtv/programs/mythscreenwizard/main.cpp
    M mythtv/programs/mythscreenwizard/screenwizard.h
    M mythtv/programs/mythshutdown/main.cpp
    M mythtv/programs/mythtranscode/audioreencodebuffer.h
    M mythtv/programs/mythtranscode/cutter.cpp
    M mythtv/programs/mythtranscode/external/replex/element.c
    M mythtv/programs/mythtranscode/external/replex/mpg_common.c
    M mythtv/programs/mythtranscode/external/replex/multiplex.c
    M mythtv/programs/mythtranscode/external/replex/pes.c
    M mythtv/programs/mythtranscode/external/replex/ringbuffer.c
    M mythtv/programs/mythtranscode/external/replex/ts.c
    M mythtv/programs/mythtranscode/main.cpp
    M mythtv/programs/mythtranscode/mpeg2fix.cpp
    M mythtv/programs/mythtranscode/mpeg2fix.h
    M mythtv/programs/mythtranscode/transcode.cpp
    M mythtv/programs/mythtv-setup/backendsettings.cpp
    M mythtv/programs/mythtv-setup/channeleditor.cpp
    M mythtv/programs/mythtv-setup/exitprompt.cpp
    M mythtv/programs/mythtv-setup/exitprompt.h
    M mythtv/programs/mythtv-setup/importicons.cpp
    M mythtv/programs/mythtv-setup/importicons.h
    M mythtv/programs/mythtv-setup/main.cpp
    M mythtv/programs/mythtv-setup/startprompt.cpp
    M mythtv/programs/mythtv-setup/startprompt.h
    M mythtv/programs/mythutil/fileutils.cpp
    M mythtv/programs/mythutil/main.cpp
    M mythtv/programs/mythutil/markuputils.cpp
    M mythtv/programs/mythutil/mpegutils.cpp
    M mythtv/programs/mythutil/musicmetautils.cpp
    M mythtv/programs/mythutil/recordingutils.cpp
    M mythtv/programs/mythwelcome/main.cpp
    M mythtv/programs/mythwelcome/welcomedialog.cpp
    M mythtv/programs/mythwelcome/welcomedialog.h

  Log Message:
  -----------
  Merge 'clang-tidy' branch back into master.


Compare: https://github.com/MythTV/mythtv/compare/309a9151093e...5d0f23ad8f09



More information about the mythtv-commits mailing list