[mythtv-commits] mythtv branch fixes/0.28 updated by jpoet. v0.28-62-g0f005f4

Git Repo Owner noreply at mythtv.org
Sun Sep 25 20:38:31 UTC 2016


The branch, fixes/0.28 has been updated on the
mythtv repository by gitolite user jpoet.
       via  0f005f4be5487e3b4859723e64e9313534cd40ca (commit)
       via  0fa7674c3815dd025f9dcfdfb4324ca79a881926 (commit)
       via  6a9d7b5131f36f257fb7b622ff1b1568b213f39a (commit)
       via  75587f08e7da9c86a3f781ccefb3860786018686 (commit)
       via  b575f9e1fd6149590ba2b78235a7b7b31f022fff (commit)
       via  44cf853213184e6ce75d7f40e590b70058395343 (commit)
      from  5c18d3f91b3d30ca70f8b98de6117429c4cb9c8e (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 0f005f4be5487e3b4859723e64e9313534cd40ca
Author:    John Poet <jpoet at mythtv.org> at Thu, 22 Sep 2016 13:40:33 -0600
Committer: John Poet <jpoet at mythtv.org> at Sun, 25 Sep 2016 14:37:54 -0600
URL:       http://code.mythtv.org/cgit/mythtv/commit/?id=0f005f4be5487e3b4859723e64e9313534cd40ca

ServicesAPI: Add ability to Stop/Reactivate a recording.
(cherry picked from commit 38d9ba259110e6495759897d4a3f25d961347eb0)



commit 0fa7674c3815dd025f9dcfdfb4324ca79a881926
Author:    John Poet <jpoet at mythtv.org> at Thu, 22 Sep 2016 16:46:41 -0600
Committer: John Poet <jpoet at mythtv.org> at Sun, 25 Sep 2016 14:37:48 -0600
URL:       http://code.mythtv.org/cgit/mythtv/commit/?id=0fa7674c3815dd025f9dcfdfb4324ca79a881926

TVRec::TuningNewRecorder: On failure, make sure scheduler knows about it.
(cherry picked from commit fe296d93b34360c26301abeb3108a5b5513ba21f)



commit 6a9d7b5131f36f257fb7b622ff1b1568b213f39a
Author:    John Poet <jpoet at mythtv.org> at Thu, 22 Sep 2016 19:36:39 -0600
Committer: John Poet <jpoet at mythtv.org> at Sun, 25 Sep 2016 14:37:42 -0600
URL:       http://code.mythtv.org/cgit/mythtv/commit/?id=6a9d7b5131f36f257fb7b622ff1b1568b213f39a

Scheduler::FillRecordingDir: Fix a race condition trying to start a recording before being fulling initialized.
If a recording is 'in progress' when mythbackend starts up, it could fail to
record because the scheduler tries to start it up before it knows what
directory to store it in.

(cherry picked from commit 96415b4c7ce110e59080f3cf4fa8461308117fad)



commit 75587f08e7da9c86a3f781ccefb3860786018686
Author:    John Poet <jpoet at mythtv.org> at Thu, 22 Sep 2016 13:30:42 -0600
Committer: John Poet <jpoet at mythtv.org> at Sun, 25 Sep 2016 14:37:36 -0600
URL:       http://code.mythtv.org/cgit/mythtv/commit/?id=75587f08e7da9c86a3f781ccefb3860786018686

ServicesAPI: Add RecodIdForFilename()
(cherry picked from commit 359a20a5ec7310715ffa79754c45554744e01b63)



commit b575f9e1fd6149590ba2b78235a7b7b31f022fff
Author:    John Poet <jpoet at mythtv.org> at Thu, 22 Sep 2016 13:30:42 -0600
Committer: John Poet <jpoet at mythtv.org> at Sun, 25 Sep 2016 14:37:29 -0600
URL:       http://code.mythtv.org/cgit/mythtv/commit/?id=b575f9e1fd6149590ba2b78235a7b7b31f022fff

Add a Service API method for returning seektable information.
(cherry picked from commit 98f7b5dd5ea5c9781600ef1389f95639c6b20be9)



commit 44cf853213184e6ce75d7f40e590b70058395343
Author:    John Poet <jpoet at mythtv.org> at Thu, 22 Sep 2016 13:30:41 -0600
Committer: John Poet <jpoet at mythtv.org> at Sun, 25 Sep 2016 14:37:22 -0600
URL:       http://code.mythtv.org/cgit/mythtv/commit/?id=44cf853213184e6ce75d7f40e590b70058395343

Cleanup whitespace in some of the Services API files.
(cherry picked from commit 1c32299486693355c18ecd14901e522d3dbe341f)



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

Summary of changes:
 mythtv/libs/libmyth/programinfo.cpp                |   24 ++++-
 mythtv/libs/libmyth/programinfo.h                  |    4 +-
 .../services/captureServices.h                     |    1 -
 .../services/channelServices.h                     |    1 -
 .../services/contentServices.h                     |    9 +-
 .../libmythservicecontracts/services/dvrServices.h |   20 +++-
 .../services/guideServices.h                       |    5 +-
 .../services/mythServices.h                        |    5 +-
 .../services/rttiServices.h                        |    5 +-
 .../services/videoServices.h                       |    1 -
 mythtv/libs/libmythtv/tv_rec.cpp                   |   20 ++++-
 mythtv/programs/mythbackend/mainserver.cpp         |   44 ++++++--
 mythtv/programs/mythbackend/scheduler.cpp          |    8 ++
 mythtv/programs/mythbackend/services/capture.cpp   |    3 +-
 mythtv/programs/mythbackend/services/content.cpp   |    4 +-
 mythtv/programs/mythbackend/services/content.h     |    2 -
 mythtv/programs/mythbackend/services/dvr.cpp       |  113 ++++++++++++++++++--
 mythtv/programs/mythbackend/services/dvr.h         |   11 ++
 mythtv/programs/mythbackend/services/guide.cpp     |   13 +--
 mythtv/programs/mythbackend/services/guide.h       |   10 +-
 .../programs/mythbackend/services/serviceUtil.cpp  |   22 ++++
 mythtv/programs/mythbackend/services/serviceUtil.h |    3 +
 22 files changed, 266 insertions(+), 62 deletions(-)

-- 



More information about the mythtv-commits mailing list