diff options
author | Jonathan McCrohan <jmccrohan@gmail.com> | 2013-09-17 00:36:06 +0100 |
---|---|---|
committer | Jonathan McCrohan <jmccrohan@gmail.com> | 2013-09-17 00:36:06 +0100 |
commit | 1516b6d1f29a58a818c1bea4ea255a8b782b7360 (patch) | |
tree | b6b72a56db2eb9bf1fba96634ea69222cb1d321f /test/test_video.c | |
parent | ba777477e09e25a9e106d843440b84c420254d05 (diff) | |
parent | 60584e13787af008063469fba29334090d56d8d4 (diff) | |
download | linux-dvb-apps-1516b6d1f29a58a818c1bea4ea255a8b782b7360.tar.gz |
Merge tag 'upstream/1.1.1+rev1500'
Upstream version 1.1.1+rev1500
Diffstat (limited to '')
-rw-r--r-- | test/test_video.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/test_video.c b/test/test_video.c index fe2f440..286b1d1 100644 --- a/test/test_video.c +++ b/test/test_video.c @@ -229,7 +229,7 @@ void play_file_video(int filefd, int fd) int count; int written; struct pollfd pfd[NFD]; - int stopped = 0; +// int stopped = 0; pfd[0].fd = STDIN_FILENO; pfd[0].events = POLLIN; @@ -258,37 +258,37 @@ void play_file_video(int filefd, int fd) case 'z': videoFreeze(fd); printf("playback frozen\n"); - stopped = 1; +// stopped = 1; break; case 's': videoStop(fd); printf("playback stopped\n"); - stopped = 1; +// stopped = 1; break; case 'c': videoContinue(fd); printf("playback continued\n"); - stopped = 0; +// stopped = 0; break; case 'p': videoPlay(fd); printf("playback started\n"); - stopped = 0; +// stopped = 0; break; case 'f': videoFastForward(fd,0); printf("fastforward\n"); - stopped = 0; +// stopped = 0; break; case 'm': videoSlowMotion(fd,2); printf("slowmotion\n"); - stopped = 0; +// stopped = 0; break; case 'q': |