diff --git a/doc/ffplay.texi b/doc/ffplay.texi
index c465af7c86ae47e50d5e42a5d78baca3462cb988..54b6f19a48cd392be2c60d243f559094b5a4c4f2 100644
--- a/doc/ffplay.texi
+++ b/doc/ffplay.texi
@@ -174,13 +174,16 @@ Toggle full screen.
 Pause.
 
 @item a
-Cycle audio channel.
+Cycle audio channel in the curret program.
 
 @item v
 Cycle video channel.
 
 @item t
-Cycle subtitle channel.
+Cycle subtitle channel in the current program.
+
+@item c
+Cycle program.
 
 @item w
 Show audio waves.
diff --git a/ffplay.c b/ffplay.c
index 8c0c415b4ff75317939c2a99d8ae161fb12fcb37..2930234a9946ee676108e285cd35eeeb5c6cfb68 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -3500,9 +3500,9 @@ void show_help_default(const char *opt, const char *arg)
            "q, ESC              quit\n"
            "f                   toggle full screen\n"
            "p, SPC              pause\n"
-           "a                   cycle audio channel\n"
+           "a                   cycle audio channel in the current program\n"
            "v                   cycle video channel\n"
-           "t                   cycle subtitle channel\n"
+           "t                   cycle subtitle channel in the current program\n"
            "c                   cycle program\n"
            "w                   show audio waves\n"
            "s                   activate frame-step mode\n"