]> git.sesse.net Git - vlc/commitdiff
Remove unused types and fix indentation.
authorAntoine Cellerier <dionoea@videolan.org>
Tue, 3 Jun 2008 20:48:45 +0000 (22:48 +0200)
committerAntoine Cellerier <dionoea@videolan.org>
Wed, 4 Jun 2008 11:14:12 +0000 (13:14 +0200)
include/vlc_common.h

index 0ce00eb8147483fa3c7cfae96e122d026c571398..d44837134574a2232692cc2f7b25ab66e689ddff 100644 (file)
 /* Counter for statistics and profiling */
 typedef unsigned long       count_t;
 
-/* DCT elements types */
-typedef int16_t             dctelem_t;
-
-/* Video buffer types */
-typedef uint8_t             yuv_data_t;
-
 /* Audio volume */
 typedef uint16_t            audio_volume_t;
 
@@ -388,7 +382,7 @@ struct stat;
 typedef union
 {
     int             i_int;
-    bool      b_bool;
+    bool            b_bool;
     float           f_float;
     char *          psz_string;
     void *          p_address;
@@ -558,7 +552,7 @@ typedef struct vlc_object_internals_t vlc_object_internals_t;
 
 struct gc_object_t
 {
-            VLC_GC_MEMBERS
+    VLC_GC_MEMBERS
 };
 
 static inline void __vlc_gc_incref( gc_object_t * p_gc )