[vlc-commits] VCD: avoid macro redefinition

Jean-Baptiste Kempf git at videolan.org
Fri Jan 2 12:39:47 CET 2015


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Jan  2 12:39:25 2015 +0100| [98b17ddf8232a77f841ee1577275f97c6667d496] | committer: Jean-Baptiste Kempf

VCD: avoid macro redefinition

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=98b17ddf8232a77f841ee1577275f97c6667d496
---

 modules/access/vcd/cdrom_internals.h |    9 ---------
 1 file changed, 9 deletions(-)

diff --git a/modules/access/vcd/cdrom_internals.h b/modules/access/vcd/cdrom_internals.h
index bfef07e..6fa6aa7 100644
--- a/modules/access/vcd/cdrom_internals.h
+++ b/modules/access/vcd/cdrom_internals.h
@@ -46,15 +46,6 @@ struct vcddev_s
 
 };
 
-
-/*****************************************************************************
- * Misc. Macros
- *****************************************************************************/
-/* LBA = msf.frame + 75 * ( msf.second + 60 * msf.minute ) */
-#define MSF_TO_LBA(min, sec, frame) ((int)frame + 75 * (sec + 60 * min))
-/* LBA = msf.frame + 75 * ( msf.second - 2 + 60 * msf.minute ) */
-#define MSF_TO_LBA2(min, sec, frame) ((int)frame + 75 * (sec -2 + 60 * min))
-
 #ifndef O_BINARY
 #   define O_BINARY 0
 #endif



More information about the vlc-commits mailing list