Commit 7f0421c2 authored by Antoine Cellerier's avatar Antoine Cellerier

Remove unused types and fix indentation.

parent 57d88c82
...@@ -68,12 +68,6 @@ ...@@ -68,12 +68,6 @@
/* Counter for statistics and profiling */ /* Counter for statistics and profiling */
typedef unsigned long count_t; typedef unsigned long count_t;
/* DCT elements types */
typedef int16_t dctelem_t;
/* Video buffer types */
typedef uint8_t yuv_data_t;
/* Audio volume */ /* Audio volume */
typedef uint16_t audio_volume_t; typedef uint16_t audio_volume_t;
...@@ -388,7 +382,7 @@ struct stat; ...@@ -388,7 +382,7 @@ struct stat;
typedef union typedef union
{ {
int i_int; int i_int;
bool b_bool; bool b_bool;
float f_float; float f_float;
char * psz_string; char * psz_string;
void * p_address; void * p_address;
...@@ -558,7 +552,7 @@ typedef struct vlc_object_internals_t vlc_object_internals_t; ...@@ -558,7 +552,7 @@ typedef struct vlc_object_internals_t vlc_object_internals_t;
struct gc_object_t struct gc_object_t
{ {
VLC_GC_MEMBERS VLC_GC_MEMBERS
}; };
static inline void __vlc_gc_incref( gc_object_t * p_gc ) static inline void __vlc_gc_incref( gc_object_t * p_gc )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment