Implement BMediaRoster::RollNode().

Fixes #9083.

Signed-off-by: Adrien Destugues <[email protected]>
This commit is contained in:
Dario Casalinuovo
2015-01-08 08:57:01 +01:00
committed by Adrien Destugues
parent 67d5656fab
commit 14896b937a
3 changed files with 39 additions and 2 deletions
+7
View File
@@ -88,6 +88,7 @@ enum {
NODE_SET_RUN_MODE,
NODE_TIME_WARP,
NODE_PREROLL,
NODE_ROLL,
NODE_SET_TIMESOURCE,
NODE_GET_TIMESOURCE,
NODE_REQUEST_COMPLETED,
@@ -899,6 +900,12 @@ struct node_seek_command : command_data {
bigtime_t performance_time;
};
struct node_roll_command : command_data {
bigtime_t start_performance_time;
bigtime_t stop_performance_time;
bigtime_t seek_media_time;
};
struct node_set_run_mode_command : command_data {
BMediaNode::run_mode mode;
};