summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authoruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-08 18:31:04 +0000
committeruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-08 18:31:04 +0000
commit0f6d5e4fd967468f813daf359123b2047f9dc167 (patch)
treea12700d1d1863694b0789760ed8b43843c130c79 /mplayer.c
parentd9a87e081ec260bcbd626ac990f2685a3b0fcbc2 (diff)
downloadmpv-0f6d5e4fd967468f813daf359123b2047f9dc167.tar.bz2
mpv-0f6d5e4fd967468f813daf359123b2047f9dc167.tar.xz
Change value used to indicate "unknown audio format" from 0 to -1.
0 collided with a valid format value. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20787 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mplayer.c b/mplayer.c
index a9d947fac5..8ef879021c 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -311,7 +311,7 @@ static int softsleep=0;
float force_fps=0;
static int force_srate=0;
-static int audio_output_format=0;
+static int audio_output_format=-1; // AF_FORMAT_UNKNOWN
int frame_dropping=0; // option 0=no drop 1= drop vo 2= drop decode
static int play_n_frames=-1;
static int play_n_frames_mf=-1;