[FFmpeg-cvslog] ffplay: name ShowMode enum
Stefano Sabatini
git at videolan.org
Mon Apr 25 22:48:12 CEST 2011
ffmpeg | branch: master | Stefano Sabatini <stefano.sabatini-lala at poste.it> | Mon Apr 25 00:31:59 2011 +0200| [54ad8e06f48392332a3fedc468eba38d823c60ea] | committer: Stefano Sabatini
ffplay: name ShowMode enum
Help debugging with GDB, maybe cleaner/safer.
Signed-off-by: Stefano Sabatini <stefano.sabatini-lala at poste.it>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=54ad8e06f48392332a3fedc468eba38d823c60ea
---
ffplay.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/ffplay.c b/ffplay.c
index b342732..063cf37 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -167,7 +167,7 @@ typedef struct VideoState {
enum AVSampleFormat audio_src_fmt;
AVAudioConvert *reformat_ctx;
- enum {
+ enum ShowMode {
SHOW_MODE_VIDEO = 0, SHOW_MODE_WAVES, SHOW_MODE_RDFT, SHOW_MODE_NB
} show_mode;
int16_t sample_array[SAMPLE_ARRAY_SIZE];
@@ -264,7 +264,7 @@ static int exit_on_keydown;
static int exit_on_mousedown;
static int loop=1;
static int framedrop=1;
-static int show_mode = SHOW_MODE_VIDEO;
+static enum ShowMode show_mode = SHOW_MODE_VIDEO;
static int rdftspeed=20;
#if CONFIG_AVFILTER
More information about the ffmpeg-cvslog
mailing list