Lines Matching refs:guid

21 #include "guid.h"
119 asf_guid_get_object_type(const asf_guid_t *guid)
123 if (asf_guid_equals(guid, &asf_guid_header))
125 else if (asf_guid_equals(guid, &asf_guid_data))
127 else if (asf_guid_equals(guid, &asf_guid_index))
130 else if (asf_guid_equals(guid, &asf_guid_file_properties))
132 else if (asf_guid_equals(guid, &asf_guid_stream_properties))
134 else if (asf_guid_equals(guid, &asf_guid_content_description))
136 else if (asf_guid_equals(guid, &asf_guid_header_extension))
138 else if (asf_guid_equals(guid, &asf_guid_marker))
140 else if (asf_guid_equals(guid, &asf_guid_codec_list))
142 else if (asf_guid_equals(guid, &asf_guid_stream_bitrate_properties))
144 else if (asf_guid_equals(guid, &asf_guid_padding))
146 else if (asf_guid_equals(guid, &asf_guid_extended_content_description))
149 else if (asf_guid_equals(guid, &asf_guid_metadata))
151 else if (asf_guid_equals(guid, &asf_guid_language_list))
153 else if (asf_guid_equals(guid, &asf_guid_extended_stream_properties))
155 else if (asf_guid_equals(guid, &asf_guid_advanced_mutual_exclusion))
157 else if (asf_guid_equals(guid, &asf_guid_stream_prioritization))
164 asf_guid_get_stream_type(const asf_guid_t *guid)
168 if (asf_guid_equals(guid, &asf_guid_stream_type_audio))
170 else if (asf_guid_equals(guid, &asf_guid_stream_type_video))
172 else if (asf_guid_equals(guid, &asf_guid_stream_type_command))
174 else if (asf_guid_equals(guid, &asf_guid_stream_type_extended))
176 else if (asf_guid_equals(guid, &asf_guid_stream_type_extended_audio))
183 asf_guid_get_type(const asf_guid_t *guid)
187 ret = asf_guid_get_object_type(guid);
189 ret = asf_guid_get_stream_type(guid);