summaryrefslogtreecommitdiffstats
path: root/libmpdemux/mp3_hdr.h
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-03-05 23:32:01 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-03-05 23:32:01 +0000
commit67d7fb201568b6f9e081012a1faa1af0cc3d96cb (patch)
treefd3ccf5ae00a1bbfccb07cc67cfbee28639282d9 /libmpdemux/mp3_hdr.h
parent5d3c5c26f6b42561b043fccf9b87b4dc9c2b6093 (diff)
downloadmpv-67d7fb201568b6f9e081012a1faa1af0cc3d96cb.tar.bz2
mpv-67d7fb201568b6f9e081012a1faa1af0cc3d96cb.tar.xz
Add missing header #includes to fix 'make checkheaders'.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26175 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/mp3_hdr.h')
-rw-r--r--libmpdemux/mp3_hdr.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libmpdemux/mp3_hdr.h b/libmpdemux/mp3_hdr.h
index d5aa70b651..3e6fb7f6bd 100644
--- a/libmpdemux/mp3_hdr.h
+++ b/libmpdemux/mp3_hdr.h
@@ -1,6 +1,8 @@
#ifndef MPLAYER_MP3_HDR_H
#define MPLAYER_MP3_HDR_H
+#include <stddef.h>
+
int mp_get_mp3_header(unsigned char* hbuf,int* chans, int* freq, int* spf, int* mpa_layer, int* br);
#define mp_decode_mp3_header(hbuf) mp_get_mp3_header(hbuf,NULL,NULL,NULL,NULL,NULL)