~ci-train-bot/media-hub/media-hub-ubuntu-yakkety-1823

« back to all changes in this revision

Viewing changes to src/core/media/player_skeleton.h

  • Committer: Jim Hodapp
  • Date: 2016-08-15 19:27:29 UTC
  • mto: This revision was merged to the branch mainline in revision 204.
  • Revision ID: jim.hodapp@canonical.com-20160815192729-0nxsgwdg80tm588x
Expose the backend selection to the stub side

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
    virtual const core::Property<bool>& is_video_source() const;
76
76
    virtual const core::Property<bool>& is_audio_source() const;
77
77
    virtual const core::Property<PlaybackStatus>& playback_status() const;
 
78
    virtual const core::Property<AVBackend::Backend>& backend() const;
78
79
    virtual const core::Property<LoopStatus>& loop_status() const;
79
80
    virtual const core::Property<PlaybackRate>& playback_rate() const;
80
81
    virtual const core::Property<bool>& shuffle() const;
105
106
    // These properties are not exposed to the client, but still need to be
106
107
    // able to be settable from within the Player:
107
108
    virtual core::Property<PlaybackStatus>& playback_status();
 
109
    virtual core::Property<AVBackend::Backend>& backend();
108
110
    virtual core::Property<bool>& can_play();
109
111
    virtual core::Property<bool>& can_pause();
110
112
    virtual core::Property<bool>& can_seek();