Commit 54ad8e06 authored by Stefano Sabatini's avatar Stefano Sabatini

ffplay: name ShowMode enum

Help debugging with GDB, maybe cleaner/safer.
Signed-off-by: 's avatarStefano Sabatini <stefano.sabatini-lala@poste.it>
parent 03a91c74
...@@ -167,7 +167,7 @@ typedef struct VideoState { ...@@ -167,7 +167,7 @@ typedef struct VideoState {
enum AVSampleFormat audio_src_fmt; enum AVSampleFormat audio_src_fmt;
AVAudioConvert *reformat_ctx; AVAudioConvert *reformat_ctx;
enum { enum ShowMode {
SHOW_MODE_VIDEO = 0, SHOW_MODE_WAVES, SHOW_MODE_RDFT, SHOW_MODE_NB SHOW_MODE_VIDEO = 0, SHOW_MODE_WAVES, SHOW_MODE_RDFT, SHOW_MODE_NB
} show_mode; } show_mode;
int16_t sample_array[SAMPLE_ARRAY_SIZE]; int16_t sample_array[SAMPLE_ARRAY_SIZE];
...@@ -264,7 +264,7 @@ static int exit_on_keydown; ...@@ -264,7 +264,7 @@ static int exit_on_keydown;
static int exit_on_mousedown; static int exit_on_mousedown;
static int loop=1; static int loop=1;
static int framedrop=1; static int framedrop=1;
static int show_mode = SHOW_MODE_VIDEO; static enum ShowMode show_mode = SHOW_MODE_VIDEO;
static int rdftspeed=20; static int rdftspeed=20;
#if CONFIG_AVFILTER #if CONFIG_AVFILTER
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment