Commit 4d16ba2d authored by Paul B Mahol's avatar Paul B Mahol

ffplay: silence warning of mixed enumeration types

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 69e93792
...@@ -1808,7 +1808,7 @@ fail: ...@@ -1808,7 +1808,7 @@ fail:
static int configure_audio_filters(VideoState *is, const char *afilters, int force_output_format) static int configure_audio_filters(VideoState *is, const char *afilters, int force_output_format)
{ {
static const enum AVSampleFormat sample_fmts[] = { AV_SAMPLE_FMT_S16, PIX_FMT_NONE }; static const enum AVSampleFormat sample_fmts[] = { AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_NONE };
int sample_rates[2] = { 0, -1 }; int sample_rates[2] = { 0, -1 };
int64_t channel_layouts[2] = { 0, -1 }; int64_t channel_layouts[2] = { 0, -1 };
int channels[2] = { 0, -1 }; int channels[2] = { 0, -1 };
......
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