From b9c8b4fbcd0ec0a41f8a579014e7b3992ac50bf2 Mon Sep 17 00:00:00 2001 From: reimar Date: Fri, 27 Jul 2007 19:25:51 +0000 Subject: Remove completely pointless extra return statements git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23883 b3059339-0415-0410-9bf9-f77b7e298cf2 --- stream/vcd_read_darwin.h | 9 --------- 1 file changed, 9 deletions(-) (limited to 'stream/vcd_read_darwin.h') diff --git a/stream/vcd_read_darwin.h b/stream/vcd_read_darwin.h index 81853d08c2..d237569e5d 100644 --- a/stream/vcd_read_darwin.h +++ b/stream/vcd_read_darwin.h @@ -39,8 +39,6 @@ static inline unsigned int vcd_get_msf(mp_vcd_priv_t* vcd) return vcd->msf.frame + (vcd->msf.second+ vcd->msf.minute*60)*75; - -return 0; } int vcd_seek_to_track(mp_vcd_priv_t* vcd, int track) @@ -59,8 +57,6 @@ int vcd_seek_to_track(mp_vcd_priv_t* vcd, int track) return -1; } return VCD_SECTOR_DATA*vcd_get_msf(vcd); - -return -1; } int vcd_get_track_end(mp_vcd_priv_t* vcd, int track) @@ -94,8 +90,6 @@ int vcd_get_track_end(mp_vcd_priv_t* vcd, int track) return -1; } return VCD_SECTOR_DATA*vcd_get_msf(vcd); - -return -1; } mp_vcd_priv_t* vcd_read_toc(int fd) @@ -181,8 +175,6 @@ mp_vcd_priv_t* vcd_read_toc(int fd) vcd->fd = fd; vcd->msf = trackMSF; return vcd; - - return NULL; } static int vcd_read(mp_vcd_priv_t* vcd,char *mem) @@ -205,6 +197,5 @@ static int vcd_read(mp_vcd_priv_t* vcd,char *mem) memcpy(mem,vcd->buf.data,VCD_SECTOR_DATA); return VCD_SECTOR_DATA; -return 0; } -- cgit v1.2.3