Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarton Balint <cus@passwd.hu>2013-10-06 22:23:34 +0400
committerMarton Balint <cus@passwd.hu>2013-10-13 14:46:14 +0400
commit3130416aecc8f3596f993d7768b0001ea2b85e24 (patch)
treee7850f75674c73f5f2d390af16f2e97fa058eb6c /ffplay.c
parent543d81a7072c2a267495a61c1b22ee6d041a8993 (diff)
ffplay: add support for changing the channel by the C key
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/ffplay.c b/ffplay.c
index 4b88146d60..8c0c415b4f 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -3194,6 +3194,11 @@ static void event_loop(VideoState *cur_stream)
case SDLK_v:
stream_cycle_channel(cur_stream, AVMEDIA_TYPE_VIDEO);
break;
+ case SDLK_c:
+ stream_cycle_channel(cur_stream, AVMEDIA_TYPE_VIDEO);
+ stream_cycle_channel(cur_stream, AVMEDIA_TYPE_AUDIO);
+ stream_cycle_channel(cur_stream, AVMEDIA_TYPE_SUBTITLE);
+ break;
case SDLK_t:
stream_cycle_channel(cur_stream, AVMEDIA_TYPE_SUBTITLE);
break;
@@ -3498,6 +3503,7 @@ void show_help_default(const char *opt, const char *arg)
"a cycle audio channel\n"
"v cycle video channel\n"
"t cycle subtitle channel\n"
+ "c cycle program\n"
"w show audio waves\n"
"s activate frame-step mode\n"
"left/right seek backward/forward 10 seconds\n"