1 /* hbtypes.h
2 
3    Copyright (c) 2003-2021 HandBrake Team
4    This file is part of the HandBrake source code
5    Homepage: <http://handbrake.fr/>.
6    It may be used under the terms of the GNU General Public License v2.
7    For full terms see the file COPYING file or visit http://www.gnu.org/licenses/gpl-2.0.html
8  */
9 
10 #ifndef HANDBRAKE_TYPES_H
11 #define HANDBRAKE_TYPES_H
12 
13 typedef struct hb_handle_s hb_handle_t;
14 typedef struct hb_list_s hb_list_t;
15 typedef struct hb_buffer_list_s hb_buffer_list_t;
16 typedef struct hb_rate_s hb_rate_t;
17 typedef struct hb_dither_s hb_dither_t;
18 typedef struct hb_mixdown_s hb_mixdown_t;
19 typedef struct hb_encoder_s hb_encoder_t;
20 typedef struct hb_container_s hb_container_t;
21 typedef struct hb_rational_s hb_rational_t;
22 typedef struct hb_geometry_s hb_geometry_t;
23 typedef struct hb_geometry_crop_s hb_geometry_crop_t;
24 typedef struct hb_geometry_settings_s hb_geometry_settings_t;
25 typedef struct hb_image_s hb_image_t;
26 typedef struct hb_job_s  hb_job_t;
27 typedef struct hb_title_set_s hb_title_set_t;
28 typedef struct hb_title_s hb_title_t;
29 typedef struct hb_chapter_s hb_chapter_t;
30 typedef struct hb_audio_s hb_audio_t;
31 typedef struct hb_audio_config_s hb_audio_config_t;
32 typedef struct hb_subtitle_s hb_subtitle_t;
33 typedef struct hb_subtitle_config_s hb_subtitle_config_t;
34 typedef struct hb_attachment_s hb_attachment_t;
35 typedef struct hb_metadata_s hb_metadata_t;
36 typedef struct hb_coverart_s hb_coverart_t;
37 typedef struct hb_state_s hb_state_t;
38 typedef struct hb_esconfig_s     hb_esconfig_t;
39 typedef struct hb_work_private_s hb_work_private_t;
40 typedef struct hb_work_object_s  hb_work_object_t;
41 typedef struct hb_filter_private_s hb_filter_private_t;
42 typedef struct hb_filter_object_s  hb_filter_object_t;
43 typedef struct hb_buffer_settings_s hb_buffer_settings_t;
44 typedef struct hb_image_format_s hb_image_format_t;
45 typedef struct hb_fifo_s hb_fifo_t;
46 typedef struct hb_lock_s hb_lock_t;
47 typedef struct hb_mastering_display_metadata_s hb_mastering_display_metadata_t;
48 typedef struct hb_content_light_metadata_s hb_content_light_metadata_t;
49 
50 #endif // HANDBRAKE_TYPES_H
51