diff options
author | Yonit Halperin <yhalperi@redhat.com> | 2013-01-21 14:29:21 -0500 |
---|---|---|
committer | Yonit Halperin <yhalperi@redhat.com> | 2013-02-18 14:52:34 -0500 |
commit | 04e66a3ab8c805d3934f80cec3d14d1d749ec3bc (patch) | |
tree | a71974872e0e3f94d0f1a8577be09cfe711d4949 | |
parent | 95c4e58868f6821112e9cd30385f0112eb6d5ea3 (diff) |
add SPICE_MSG_PLAYBACK_LATENCYvideo.adaptive_bit_rate
SPICE_MSG_PLAYBACK_LATENCY is intended for adjusting the latency
of the audio playback. It is used for synchronizing the audio and video
playback.
The corresponding capability is SPICE_PLAYBACK_CAP_LATENCY.
-rw-r--r-- | spice/enums.h | 1 | ||||
-rw-r--r-- | spice/protocol.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/spice/enums.h b/spice/enums.h index 3c89f2e..8c731e9 100644 --- a/spice/enums.h +++ b/spice/enums.h @@ -523,6 +523,7 @@ enum { SPICE_MSG_PLAYBACK_STOP, SPICE_MSG_PLAYBACK_VOLUME, SPICE_MSG_PLAYBACK_MUTE, + SPICE_MSG_PLAYBACK_LATENCY, SPICE_MSG_END_PLAYBACK }; diff --git a/spice/protocol.h b/spice/protocol.h index 028cade..e11f384 100644 --- a/spice/protocol.h +++ b/spice/protocol.h @@ -110,6 +110,7 @@ typedef struct SPICE_ATTR_PACKED SpiceSubMessageList { enum { SPICE_PLAYBACK_CAP_CELT_0_5_1, SPICE_PLAYBACK_CAP_VOLUME, + SPICE_PLAYBACK_CAP_LATENCY, }; enum { |