summaryrefslogtreecommitdiffstats
path: root/libmpdemux/mp3_hdr.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-17 22:52:31 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-17 22:52:31 +0000
commit2d776c8c768349798412a6121e581a3078fff4e6 (patch)
treee535fa7c58f9daafbd39fbf37133a63fb2471441 /libmpdemux/mp3_hdr.c
parentc66aa21366043b81d263e453dda28ac50d573114 (diff)
downloadmpv-2d776c8c768349798412a6121e581a3078fff4e6.tar.bz2
mpv-2d776c8c768349798412a6121e581a3078fff4e6.tar.xz
libmpdemux: Remove pointless leftover '#if 1' preprocessor instructions.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30620 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/mp3_hdr.c')
-rw-r--r--libmpdemux/mp3_hdr.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libmpdemux/mp3_hdr.c b/libmpdemux/mp3_hdr.c
index ee7d8211df..d2520f1d8d 100644
--- a/libmpdemux/mp3_hdr.c
+++ b/libmpdemux/mp3_hdr.c
@@ -65,13 +65,11 @@ int mp_get_mp3_header(unsigned char* hbuf,int* chans, int* srate, int* spf, int*
// printf("head=0x%08X\n",newhead);
-#if 1
// head_check:
if( (newhead & 0xffe00000) != 0xffe00000 ){
mp_msg(MSGT_DEMUXER,MSGL_DBG2,"head_check failed\n");
return -1;
}
-#endif
layer = 4-((newhead>>17)&3);
if(layer==4){