summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authoruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-06-14 13:47:11 +0000
committeruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-06-14 13:47:11 +0000
commita4850512c0942fe92a2cb9f9bc3525d5e0d8e2b5 (patch)
treeb6081fd9a4fa266e361677335ab109d4cb3c9ed2 /libmpdemux
parente9d882a6a3d94fd4cecf3d642b28d2bf886f3784 (diff)
downloadmpv-a4850512c0942fe92a2cb9f9bc3525d5e0d8e2b5.tar.bz2
mpv-a4850512c0942fe92a2cb9f9bc3525d5e0d8e2b5.tar.xz
Remove extern declaration for free_sh_audio() that is both unused and
already present from stheader.h. (Would cause a compile error after my next change.) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18710 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/demux_mpc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libmpdemux/demux_mpc.c b/libmpdemux/demux_mpc.c
index 0f7b18da2f..cb4eda3604 100644
--- a/libmpdemux/demux_mpc.c
+++ b/libmpdemux/demux_mpc.c
@@ -27,8 +27,6 @@ typedef struct da_priv {
float length;
} da_priv_t;
-extern void free_sh_audio(sh_audio_t* sh);
-
static uint32_t get_bits(da_priv_t* priv, stream_t* s, int bits) {
uint32_t out = priv->dword;
uint32_t mask = (1 << bits) - 1;