[mythtv-firehose] mythtv branch master updated by dhampton. v30-Pre-505-g3b0ac50

Git Repo Owner noreply at mythtv.org
Wed Feb 14 23:21:31 UTC 2018


The branch, master has been updated on the
mythtv repository by gitolite user dhampton.
       via  3b0ac502a57237bdd30316a4a37a7e226d2c7793 (commit)
       via  cadee49a417edc121d6babaacfabef63e508809e (commit)
       via  95313627783dd5345032ffd156a8bfc05d23040a (commit)
       via  c4fea709bfe978c1c0c75b84961483310971b841 (commit)
       via  573da6c56e96f94247766a0d6e38d28a9675fb18 (commit)
      from  c126b7e1fea52373cbf74db37f3e2b1925f126d0 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 3b0ac502a57237bdd30316a4a37a7e226d2c7793
Author:    David Hampton <mythtv at love2code.net> at Wed, 14 Feb 2018 18:07:30 -0500
Committer: David Hampton <mythtv at love2code.net> at Wed, 14 Feb 2018 18:09:07 -0500
URL:       http://code.mythtv.org/cgit/mythtv/commit/?id=3b0ac502a57237bdd30316a4a37a7e226d2c7793

Remove unused files.
These files were pointed out by a cppcheck complaint about a missing
copy constructor.  On inspection it was revealed that the files were
never referenced in the Qt project file.



commit cadee49a417edc121d6babaacfabef63e508809e
Author:    David Hampton <mythtv at love2code.net> at Wed, 14 Feb 2018 18:01:07 -0500
Committer: David Hampton <mythtv at love2code.net> at Wed, 14 Feb 2018 18:05:24 -0500
URL:       http://code.mythtv.org/cgit/mythtv/commit/?id=cadee49a417edc121d6babaacfabef63e508809e

Fix compiler warnings when compiling with USING_ASI.
Mostly commenting out the names of unused variables.  One function was
missing a variable in the function definition, and one had to have a
fixup added because of the cleanups to the DTV tuner definitions.



commit 95313627783dd5345032ffd156a8bfc05d23040a
Author:    David Hampton <mythtv at love2code.net> at Wed, 14 Feb 2018 17:57:40 -0500
Committer: David Hampton <mythtv at love2code.net> at Wed, 14 Feb 2018 18:05:24 -0500
URL:       http://code.mythtv.org/cgit/mythtv/commit/?id=95313627783dd5345032ffd156a8bfc05d23040a

Replace the deprecated readdir_r() function.
The glibc library deprecated this function in version 2.24, and the
manual pages for the function recommend the use of readdir() and state
the reasons for deprecating readdir_r().



commit c4fea709bfe978c1c0c75b84961483310971b841
Author:    David Hampton <mythtv at love2code.net> at Tue, 13 Feb 2018 19:02:29 -0500
Committer: David Hampton <mythtv at love2code.net> at Wed, 14 Feb 2018 18:05:24 -0500
URL:       http://code.mythtv.org/cgit/mythtv/commit/?id=c4fea709bfe978c1c0c75b84961483310971b841

Fix a recent 'statement has no effect [-Wunused-value]' warning.
This was recently introduced by commit c6e922f0.  It appears that the
'bestid' variable should still be set to 'betterid' if is still unset
at this point in the code.  If not, there is no point in calculating
'betterid'.



commit 573da6c56e96f94247766a0d6e38d28a9675fb18
Author:    David Hampton <mythtv at love2code.net> at Tue, 13 Feb 2018 18:56:34 -0500
Committer: David Hampton <mythtv at love2code.net> at Wed, 14 Feb 2018 18:05:24 -0500
URL:       http://code.mythtv.org/cgit/mythtv/commit/?id=573da6c56e96f94247766a0d6e38d28a9675fb18

Conditionally quiet an unused variable warning.
The willsuspendpa argument to AudioOutput::OpenAudio only gets used
when the file is compiled with the USING_PULSE define.  Add a line to
prevent an 'unused variable' warning when compiling without PulseAudio
support.



-----------------------------------------------------------------------

Summary of changes:
 mythplugins/mythmusic/mythmusic/decoder.h          |    1 -
 mythplugins/mythmusic/mythmusic/recycler.cpp       |  104 --------------------
 mythplugins/mythmusic/mythmusic/recycler.h         |   49 ---------
 mythtv/configure                                   |    4 +-
 mythtv/libs/libmyth/audio/audiooutput.cpp          |    3 +
 mythtv/libs/libmythtv/mythiowrapper.cpp            |   21 ++--
 mythtv/libs/libmythtv/recorders/asichannel.cpp     |    2 +-
 mythtv/libs/libmythtv/recorders/asirecorder.cpp    |    4 +-
 .../libs/libmythtv/recorders/asistreamhandler.cpp  |    4 +-
 mythtv/libs/libmythtv/recorders/asistreamhandler.h |    4 +-
 .../libmythtv/test/test_mythiowrapper/.gitignore   |    5 +
 .../test/test_mythiowrapper/test_mythiowrapper.cpp |   58 +++++++++++
 .../test/test_mythiowrapper/test_mythiowrapper.h   |   31 ++++++
 .../test/test_mythiowrapper/test_mythiowrapper.pro |   41 ++++++++
 .../test/test_mythiowrapper/testfiles/bar          |    0
 .../test/test_mythiowrapper/testfiles/baz          |    0
 .../test/test_mythiowrapper/testfiles/foo          |    0
 mythtv/programs/mythbackend/scheduler.cpp          |    2 +-
 18 files changed, 158 insertions(+), 175 deletions(-)
 delete mode 100644 mythplugins/mythmusic/mythmusic/recycler.cpp
 delete mode 100644 mythplugins/mythmusic/mythmusic/recycler.h
 create mode 100644 mythtv/libs/libmythtv/test/test_mythiowrapper/.gitignore
 create mode 100644 mythtv/libs/libmythtv/test/test_mythiowrapper/test_mythiowrapper.cpp
 create mode 100644 mythtv/libs/libmythtv/test/test_mythiowrapper/test_mythiowrapper.h
 create mode 100644 mythtv/libs/libmythtv/test/test_mythiowrapper/test_mythiowrapper.pro
 copy mythplugins/mythgame/mythgame/scripts/giantbomb/__init__.py => mythtv/libs/libmythtv/test/test_mythiowrapper/testfiles/bar (100%)
 copy mythplugins/mythgame/mythgame/scripts/giantbomb/__init__.py => mythtv/libs/libmythtv/test/test_mythiowrapper/testfiles/baz (100%)
 copy mythplugins/mythgame/mythgame/scripts/giantbomb/__init__.py => mythtv/libs/libmythtv/test/test_mythiowrapper/testfiles/foo (100%)

-- 



More information about the mythtv-firehose mailing list