summaryrefslogtreecommitdiff
path: root/ffplay.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-03-19 09:37:33 +0000
committerPaul B Mahol <onemda@gmail.com>2013-03-19 09:39:28 +0000
commit4d16ba2dd87868bdf02b4c4d35719fb551685b22 (patch)
tree1c8fe69194bdba00a430d9abafd43840319ecc49 /ffplay.c
parent69e93792d6079b4e3b1e6eaf6e52b3858afe1e8e (diff)
ffplay: silence warning of mixed enumeration types
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffplay.c b/ffplay.c
index d4ffba1d27..535798d62a 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -1808,7 +1808,7 @@ fail:
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 };
int64_t channel_layouts[2] = { 0, -1 };
int channels[2] = { 0, -1 };