Commit 469f433c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove unused typedefs

parent d8ff730f
...@@ -33,7 +33,7 @@ function VlcSyntax() ...@@ -33,7 +33,7 @@ function VlcSyntax()
syn keyword cType module_bank_t module_t module_config_t module_symbols_t syn keyword cType module_bank_t module_t module_config_t module_symbols_t
syn keyword cType module_cache_t config_category_t syn keyword cType module_cache_t config_category_t
" Playlist " Playlist
syn keyword cType playlist_t playlist_item_t playlist_view_t syn keyword cType playlist_t playlist_item_t
syn keyword cType services_discovery_t services_discovery_sys_t syn keyword cType services_discovery_t services_discovery_sys_t
syn keyword cType playlist_add_t playlist_preparse_t syn keyword cType playlist_add_t playlist_preparse_t
syn keyword cType item_info_t item_info_category_t syn keyword cType item_info_t item_info_category_t
...@@ -53,7 +53,7 @@ function VlcSyntax() ...@@ -53,7 +53,7 @@ function VlcSyntax()
syn keyword cType es_format_t video_palette_t syn keyword cType es_format_t video_palette_t
" Aout " Aout
syn keyword cType audio_output_t aout_sys_t syn keyword cType audio_output_t aout_sys_t
syn keyword cType aout_fifo_t aout_input_t audio_sample_format_t syn keyword cType aout_fifo_t audio_sample_format_t
syn keyword cType aout_mixer_sys_t aout_filter_sys_t audio_volume_t syn keyword cType aout_mixer_sys_t aout_filter_sys_t audio_volume_t
syn keyword cType aout_mixer_t aout_output_t audio_date_t syn keyword cType aout_mixer_t aout_output_t audio_date_t
syn keyword cType aout_filter_t syn keyword cType aout_filter_t
...@@ -62,12 +62,12 @@ function VlcSyntax() ...@@ -62,12 +62,12 @@ function VlcSyntax()
syn keyword cType chroma_sys_t picture_t picture_sys_t picture_heap_t syn keyword cType chroma_sys_t picture_t picture_sys_t picture_heap_t
syn keyword cType video_frame_format_t syn keyword cType video_frame_format_t
" SPU " SPU
syn keyword cType spu_t subpicture_t subpicture_sys_t syn keyword cType spu_t subpicture_t
syn keyword cType subpicture_region_t text_style_t syn keyword cType subpicture_region_t text_style_t
" Images " Images
syn keyword cType image_handler_t syn keyword cType image_handler_t
" Sout " Sout
syn keyword cType sout_instance_t sout_instance_sys_t sout_cfg_t syn keyword cType sout_instance_t sout_cfg_t
syn keyword cType sout_input_t sout_packetizer_input_t syn keyword cType sout_input_t sout_packetizer_input_t
syn keyword cType sout_access_out_t sout_access_out_sys_t syn keyword cType sout_access_out_t sout_access_out_sys_t
syn keyword cType sout_mux_t sout_mux_sys_t syn keyword cType sout_mux_t sout_mux_sys_t
......
...@@ -218,7 +218,6 @@ typedef enum { ...@@ -218,7 +218,6 @@ typedef enum {
typedef struct playlist_t playlist_t; typedef struct playlist_t playlist_t;
typedef struct playlist_item_t playlist_item_t; typedef struct playlist_item_t playlist_item_t;
typedef struct playlist_view_t playlist_view_t;
typedef struct services_discovery_t services_discovery_t; typedef struct services_discovery_t services_discovery_t;
typedef struct services_discovery_sys_t services_discovery_sys_t; typedef struct services_discovery_sys_t services_discovery_sys_t;
typedef struct playlist_add_t playlist_add_t; typedef struct playlist_add_t playlist_add_t;
...@@ -258,7 +257,6 @@ typedef struct video_palette_t video_palette_t; ...@@ -258,7 +257,6 @@ typedef struct video_palette_t video_palette_t;
typedef struct audio_output audio_output_t; typedef struct audio_output audio_output_t;
typedef struct aout_sys_t aout_sys_t; typedef struct aout_sys_t aout_sys_t;
typedef struct aout_fifo_t aout_fifo_t; typedef struct aout_fifo_t aout_fifo_t;
typedef struct aout_input_t aout_input_t;
typedef audio_format_t audio_sample_format_t; typedef audio_format_t audio_sample_format_t;
/* Video */ /* Video */
...@@ -271,14 +269,12 @@ typedef struct picture_sys_t picture_sys_t; ...@@ -271,14 +269,12 @@ typedef struct picture_sys_t picture_sys_t;
/* Subpictures */ /* Subpictures */
typedef struct spu_t spu_t; typedef struct spu_t spu_t;
typedef struct subpicture_t subpicture_t; typedef struct subpicture_t subpicture_t;
typedef struct subpicture_sys_t subpicture_sys_t;
typedef struct subpicture_region_t subpicture_region_t; typedef struct subpicture_region_t subpicture_region_t;
typedef struct image_handler_t image_handler_t; typedef struct image_handler_t image_handler_t;
/* Stream output */ /* Stream output */
typedef struct sout_instance_t sout_instance_t; typedef struct sout_instance_t sout_instance_t;
typedef struct sout_instance_sys_t sout_instance_sys_t;
typedef struct sout_input_t sout_input_t; typedef struct sout_input_t sout_input_t;
typedef struct sout_packetizer_input_t sout_packetizer_input_t; typedef struct sout_packetizer_input_t sout_packetizer_input_t;
...@@ -343,10 +339,6 @@ typedef struct input_stats_t input_stats_t; ...@@ -343,10 +339,6 @@ typedef struct input_stats_t input_stats_t;
/* Update */ /* Update */
typedef struct update_t update_t; typedef struct update_t update_t;
typedef struct update_iterator_t update_iterator_t;
/* Meta engine */
typedef struct meta_engine_t meta_engine_t;
/** /**
* VLC value structure * VLC value structure
......
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