DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator
box_definitions_comparison.h
1 // Copyright 2014 Google Inc. All rights reserved.
2 //
3 // Use of this source code is governed by a BSD-style
4 // license that can be found in the LICENSE file or at
5 // https://developers.google.com/open-source/licenses/bsd
6 //
7 // Overloads operator== for mp4 boxes, mainly used for testing.
8 
9 #ifndef MEDIA_FORMATS_MP4_BOX_DEFINITIONS_COMPARISON_H_
10 #define MEDIA_FORMATS_MP4_BOX_DEFINITIONS_COMPARISON_H_
11 
12 #include "packager/media/formats/mp4/box_definitions.h"
13 
14 namespace shaka {
15 namespace media {
16 
17 inline bool operator==(const SubsampleEntry& lhs, const SubsampleEntry& rhs) {
18  return lhs.clear_bytes == rhs.clear_bytes &&
19  lhs.cipher_bytes == rhs.cipher_bytes;
20 }
21 
22 namespace mp4 {
23 
24 inline bool operator==(const FileType& lhs, const FileType& rhs) {
25  return lhs.major_brand == rhs.major_brand &&
26  lhs.minor_version == rhs.minor_version &&
27  lhs.compatible_brands == rhs.compatible_brands;
28 }
29 
30 inline bool operator==(const ProtectionSystemSpecificHeader& lhs,
31  const ProtectionSystemSpecificHeader& rhs) {
32  return lhs.raw_box == rhs.raw_box;
33 }
34 
35 inline bool operator==(const SampleAuxiliaryInformationOffset& lhs,
36  const SampleAuxiliaryInformationOffset& rhs) {
37  return lhs.offsets == rhs.offsets;
38 }
39 
40 inline bool operator==(const SampleAuxiliaryInformationSize& lhs,
41  const SampleAuxiliaryInformationSize& rhs) {
42  return lhs.default_sample_info_size == rhs.default_sample_info_size &&
43  lhs.sample_count == rhs.sample_count &&
44  lhs.sample_info_sizes == rhs.sample_info_sizes;
45 }
46 
47 inline bool operator==(const SampleEncryptionEntry& lhs,
48  const SampleEncryptionEntry& rhs) {
49  return lhs.initialization_vector == rhs.initialization_vector &&
50  lhs.subsamples == rhs.subsamples;
51 }
52 
53 inline bool operator==(const SampleEncryption& lhs,
54  const SampleEncryption& rhs) {
55  return lhs.iv_size == rhs.iv_size &&
56  lhs.sample_encryption_entries == rhs.sample_encryption_entries;
57 }
58 
59 inline bool operator==(const OriginalFormat& lhs, const OriginalFormat& rhs) {
60  return lhs.format == rhs.format;
61 }
62 
63 inline bool operator==(const SchemeType& lhs, const SchemeType& rhs) {
64  return lhs.type == rhs.type && lhs.version == rhs.version;
65 }
66 
67 inline bool operator==(const TrackEncryption& lhs, const TrackEncryption& rhs) {
68  return lhs.default_is_protected == rhs.default_is_protected &&
69  lhs.default_per_sample_iv_size == rhs.default_per_sample_iv_size &&
70  lhs.default_kid == rhs.default_kid &&
71  lhs.default_crypt_byte_block == rhs.default_crypt_byte_block &&
72  lhs.default_skip_byte_block == rhs.default_skip_byte_block &&
73  lhs.default_constant_iv == rhs.default_constant_iv;
74 }
75 
76 inline bool operator==(const SchemeInfo& lhs, const SchemeInfo& rhs) {
77  return lhs.track_encryption == rhs.track_encryption;
78 }
79 
80 inline bool operator==(const ProtectionSchemeInfo& lhs,
81  const ProtectionSchemeInfo& rhs) {
82  return lhs.format == rhs.format && lhs.type == rhs.type &&
83  lhs.info == rhs.info;
84 }
85 
86 inline bool operator==(const MovieHeader& lhs, const MovieHeader& rhs) {
87  return lhs.creation_time == rhs.creation_time &&
88  lhs.modification_time == rhs.modification_time &&
89  lhs.timescale == rhs.timescale && lhs.duration == rhs.duration &&
90  lhs.rate == rhs.rate && lhs.volume == rhs.volume &&
91  lhs.next_track_id == rhs.next_track_id;
92 }
93 
94 inline bool operator==(const TrackHeader& lhs, const TrackHeader& rhs) {
95  return lhs.creation_time == rhs.creation_time &&
96  lhs.modification_time == rhs.modification_time &&
97  lhs.track_id == rhs.track_id && lhs.duration == rhs.duration &&
98  lhs.layer == rhs.layer && lhs.alternate_group == rhs.alternate_group &&
99  lhs.volume == rhs.volume && lhs.width == rhs.width &&
100  lhs.height == rhs.height;
101 }
102 
103 inline bool operator==(const SampleDescription& lhs,
104  const SampleDescription& rhs) {
105  return lhs.type == rhs.type && lhs.video_entries == rhs.video_entries &&
106  lhs.audio_entries == rhs.audio_entries;
107 }
108 
109 inline bool operator==(const DecodingTime& lhs, const DecodingTime& rhs) {
110  return lhs.sample_count == rhs.sample_count &&
111  lhs.sample_delta == rhs.sample_delta;
112 }
113 
114 inline bool operator==(const DecodingTimeToSample& lhs,
115  const DecodingTimeToSample& rhs) {
116  return lhs.decoding_time == rhs.decoding_time;
117 }
118 
119 inline bool operator==(const CompositionOffset& lhs,
120  const CompositionOffset& rhs) {
121  return lhs.sample_count == rhs.sample_count &&
122  lhs.sample_offset == rhs.sample_offset;
123 }
124 
125 inline bool operator==(const CompositionTimeToSample& lhs,
126  const CompositionTimeToSample& rhs) {
127  return lhs.composition_offset == rhs.composition_offset;
128 }
129 
130 inline bool operator==(const ChunkInfo& lhs, const ChunkInfo& rhs) {
131  return lhs.first_chunk == rhs.first_chunk &&
132  lhs.samples_per_chunk == rhs.samples_per_chunk &&
133  lhs.sample_description_index == rhs.sample_description_index;
134 }
135 
136 inline bool operator==(const SampleToChunk& lhs, const SampleToChunk& rhs) {
137  return lhs.chunk_info == rhs.chunk_info;
138 }
139 
140 inline bool operator==(const SampleSize& lhs, const SampleSize& rhs) {
141  return lhs.sample_size == rhs.sample_size &&
142  lhs.sample_count == rhs.sample_count && lhs.sizes == rhs.sizes;
143 }
144 
145 inline bool operator==(const CompactSampleSize& lhs,
146  const CompactSampleSize& rhs) {
147  return lhs.field_size == rhs.field_size && lhs.sizes == rhs.sizes;
148 }
149 
150 inline bool operator==(const ChunkLargeOffset& lhs,
151  const ChunkLargeOffset& rhs) {
152  return lhs.offsets == rhs.offsets;
153 }
154 
155 inline bool operator==(const SyncSample& lhs, const SyncSample& rhs) {
156  return lhs.sample_number == rhs.sample_number;
157 }
158 
159 inline bool operator==(const CencSampleEncryptionInfoEntry& lhs,
160  const CencSampleEncryptionInfoEntry& rhs) {
161  return lhs.is_protected == rhs.is_protected &&
162  lhs.per_sample_iv_size == rhs.per_sample_iv_size &&
163  lhs.key_id == rhs.key_id &&
164  lhs.crypt_byte_block == rhs.crypt_byte_block &&
165  lhs.skip_byte_block == rhs.skip_byte_block &&
166  lhs.constant_iv == rhs.constant_iv;
167 }
168 
169 inline bool operator==(const AudioRollRecoveryEntry& lhs,
170  const AudioRollRecoveryEntry& rhs) {
171  return lhs.roll_distance == rhs.roll_distance;
172 }
173 
174 inline bool operator==(const SampleGroupDescription& lhs,
175  const SampleGroupDescription& rhs) {
176  return lhs.grouping_type == rhs.grouping_type &&
177  lhs.cenc_sample_encryption_info_entries ==
178  rhs.cenc_sample_encryption_info_entries &&
179  lhs.audio_roll_recovery_entries == rhs.audio_roll_recovery_entries;
180 }
181 
182 inline bool operator==(const SampleToGroupEntry& lhs,
183  const SampleToGroupEntry& rhs) {
184  return lhs.sample_count == rhs.sample_count &&
185  lhs.group_description_index == rhs.group_description_index;
186 }
187 
188 inline bool operator==(const SampleToGroup& lhs,
189  const SampleToGroup& rhs) {
190  return lhs.grouping_type == rhs.grouping_type &&
191  lhs.grouping_type_parameter == rhs.grouping_type_parameter &&
192  lhs.entries == rhs.entries;
193 }
194 
195 inline bool operator==(const SampleTable& lhs, const SampleTable& rhs) {
196  return lhs.description == rhs.description &&
197  lhs.decoding_time_to_sample == rhs.decoding_time_to_sample &&
198  lhs.composition_time_to_sample == rhs.composition_time_to_sample &&
199  lhs.sample_to_chunk == rhs.sample_to_chunk &&
200  lhs.sample_size == rhs.sample_size &&
201  lhs.chunk_large_offset == rhs.chunk_large_offset &&
202  lhs.sync_sample == rhs.sync_sample &&
203  lhs.sample_group_descriptions == rhs.sample_group_descriptions &&
204  lhs.sample_to_groups == rhs.sample_to_groups;
205 }
206 
207 inline bool operator==(const EditListEntry& lhs, const EditListEntry& rhs) {
208  return lhs.segment_duration == rhs.segment_duration &&
209  lhs.media_time == rhs.media_time &&
210  lhs.media_rate_integer == rhs.media_rate_integer &&
211  lhs.media_rate_fraction == rhs.media_rate_fraction;
212 }
213 
214 inline bool operator==(const EditList& lhs, const EditList& rhs) {
215  return lhs.edits == rhs.edits;
216 }
217 
218 inline bool operator==(const Edit& lhs, const Edit& rhs) {
219  return lhs.list == rhs.list;
220 }
221 
222 inline bool operator==(const HandlerReference& lhs,
223  const HandlerReference& rhs) {
224  return lhs.handler_type == rhs.handler_type;
225 }
226 
227 inline bool operator==(const Language& lhs,
228  const Language& rhs) {
229  return lhs.code == rhs.code;
230 }
231 
232 inline bool operator==(const PrivFrame& lhs, const PrivFrame& rhs) {
233  return lhs.owner == rhs.owner && lhs.value == rhs.value;
234 }
235 
236 inline bool operator==(const ID3v2& lhs, const ID3v2& rhs) {
237  return lhs.language == rhs.language && lhs.private_frame == rhs.private_frame;
238 }
239 
240 inline bool operator==(const Metadata& lhs, const Metadata& rhs) {
241  return lhs.handler == rhs.handler && lhs.id3v2 == rhs.id3v2;
242 }
243 
244 inline bool operator==(const CodecConfiguration& lhs,
245  const CodecConfiguration& rhs) {
246  return lhs.box_type == rhs.box_type && lhs.data == rhs.data;
247 }
248 
249 inline bool operator==(const PixelAspectRatio& lhs,
250  const PixelAspectRatio& rhs) {
251  return lhs.h_spacing == rhs.h_spacing && lhs.v_spacing == rhs.v_spacing;
252 }
253 
254 inline bool operator==(const VideoSampleEntry& lhs,
255  const VideoSampleEntry& rhs) {
256  return lhs.format == rhs.format &&
257  lhs.data_reference_index == rhs.data_reference_index &&
258  lhs.width == rhs.width && lhs.height == rhs.height &&
259  lhs.pixel_aspect == rhs.pixel_aspect && lhs.sinf == rhs.sinf &&
260  lhs.codec_configuration == rhs.codec_configuration;
261 }
262 
263 inline bool operator==(const ESDescriptor& lhs, const ESDescriptor& rhs) {
264  return lhs.esid() == rhs.esid() && lhs.object_type() == rhs.object_type() &&
265  lhs.max_bitrate() == rhs.max_bitrate() &&
266  lhs.avg_bitrate() == rhs.avg_bitrate() &&
267  lhs.decoder_specific_info() == rhs.decoder_specific_info();
268 }
269 
270 inline bool operator==(const ElementaryStreamDescriptor& lhs,
271  const ElementaryStreamDescriptor& rhs) {
272  return lhs.es_descriptor == rhs.es_descriptor;
273 }
274 
275 inline bool operator==(const DTSSpecific& lhs, const DTSSpecific& rhs) {
276  return lhs.sampling_frequency == rhs.sampling_frequency &&
277  lhs.max_bitrate == rhs.max_bitrate &&
278  lhs.avg_bitrate == rhs.avg_bitrate &&
279  lhs.pcm_sample_depth == rhs.pcm_sample_depth &&
280  lhs.extra_data == rhs.extra_data;
281 }
282 
283 inline bool operator==(const AC3Specific& lhs, const AC3Specific& rhs) {
284  return lhs.data == rhs.data;
285 }
286 
287 inline bool operator==(const EC3Specific& lhs, const EC3Specific& rhs) {
288  return lhs.data == rhs.data;
289 }
290 
291 inline bool operator==(const OpusSpecific& lhs, const OpusSpecific& rhs) {
292  return lhs.opus_identification_header == rhs.opus_identification_header &&
293  lhs.preskip == rhs.preskip;
294 }
295 
296 inline bool operator==(const AudioSampleEntry& lhs,
297  const AudioSampleEntry& rhs) {
298  return lhs.format == rhs.format &&
299  lhs.data_reference_index == rhs.data_reference_index &&
300  lhs.channelcount == rhs.channelcount &&
301  lhs.samplesize == rhs.samplesize && lhs.samplerate == rhs.samplerate &&
302  lhs.sinf == rhs.sinf && lhs.esds == rhs.esds && lhs.ddts == rhs.ddts &&
303  lhs.dac3 == rhs.dac3 && lhs.dec3 == rhs.dec3 && lhs.dops == rhs.dops;
304 }
305 
306 inline bool operator==(const WebVTTConfigurationBox& lhs,
307  const WebVTTConfigurationBox& rhs) {
308  return lhs.config == rhs.config;
309 }
310 
311 inline bool operator==(const WebVTTSourceLabelBox& lhs,
312  const WebVTTSourceLabelBox& rhs) {
313  return lhs.source_label == rhs.source_label;
314 }
315 
316 inline bool operator==(const TextSampleEntry& lhs, const TextSampleEntry& rhs) {
317  return lhs.config == rhs.config && lhs.label == rhs.label;
318 }
319 
320 inline bool operator==(const MediaHeader& lhs, const MediaHeader& rhs) {
321  return lhs.creation_time == rhs.creation_time &&
322  lhs.modification_time == rhs.modification_time &&
323  lhs.timescale == rhs.timescale && lhs.duration == rhs.duration &&
324  lhs.language == rhs.language;
325 }
326 
327 inline bool operator==(const VideoMediaHeader& lhs,
328  const VideoMediaHeader& rhs) {
329  return lhs.graphicsmode == rhs.graphicsmode &&
330  lhs.opcolor_red == rhs.opcolor_red &&
331  lhs.opcolor_green == rhs.opcolor_green &&
332  lhs.opcolor_blue == rhs.opcolor_blue;
333 }
334 
335 inline bool operator==(const SoundMediaHeader& lhs,
336  const SoundMediaHeader& rhs) {
337  return lhs.balance == rhs.balance;
338 }
339 
340 inline bool operator==(const SubtitleMediaHeader& lhs,
341  const SubtitleMediaHeader& rhs) {
342  return true;
343 }
344 
345 inline bool operator==(const DataEntryUrl& lhs, const DataEntryUrl& rhs) {
346  return lhs.flags == rhs.flags && lhs.location == rhs.location;
347 }
348 
349 inline bool operator==(const DataReference& lhs, const DataReference& rhs) {
350  return lhs.data_entry == rhs.data_entry;
351 }
352 
353 inline bool operator==(const DataInformation& lhs, const DataInformation& rhs) {
354  return lhs.dref == rhs.dref;
355 }
356 
357 inline bool operator==(const MediaInformation& lhs,
358  const MediaInformation& rhs) {
359  return lhs.dinf == rhs.dinf && lhs.sample_table == rhs.sample_table &&
360  lhs.vmhd == rhs.vmhd && lhs.smhd == rhs.smhd;
361 }
362 
363 inline bool operator==(const Media& lhs, const Media& rhs) {
364  return lhs.header == rhs.header && lhs.handler == rhs.handler &&
365  lhs.information == rhs.information;
366 }
367 
368 inline bool operator==(const Track& lhs, const Track& rhs) {
369  return lhs.header == rhs.header && lhs.media == rhs.media &&
370  lhs.edit == rhs.edit && lhs.sample_encryption == rhs.sample_encryption;
371 }
372 
373 inline bool operator==(const MovieExtendsHeader& lhs,
374  const MovieExtendsHeader& rhs) {
375  return lhs.fragment_duration == rhs.fragment_duration;
376 }
377 
378 inline bool operator==(const TrackExtends& lhs, const TrackExtends& rhs) {
379  return lhs.track_id == rhs.track_id &&
380  lhs.default_sample_description_index ==
381  rhs.default_sample_description_index &&
382  lhs.default_sample_duration == rhs.default_sample_duration &&
383  lhs.default_sample_size == rhs.default_sample_size &&
384  lhs.default_sample_flags == rhs.default_sample_flags;
385 }
386 
387 inline bool operator==(const MovieExtends& lhs, const MovieExtends& rhs) {
388  return lhs.header == rhs.header && lhs.tracks == rhs.tracks;
389 }
390 
391 inline bool operator==(const Movie& lhs, const Movie& rhs) {
392  return lhs.header == rhs.header && lhs.extends == rhs.extends &&
393  lhs.tracks == rhs.tracks && lhs.pssh == rhs.pssh;
394 }
395 
396 inline bool operator==(const TrackFragmentDecodeTime& lhs,
397  const TrackFragmentDecodeTime& rhs) {
398  return lhs.decode_time == rhs.decode_time;
399 }
400 
401 inline bool operator==(const MovieFragmentHeader& lhs,
402  const MovieFragmentHeader& rhs) {
403  return lhs.sequence_number == rhs.sequence_number;
404 }
405 
406 inline bool operator==(const TrackFragmentHeader& lhs,
407  const TrackFragmentHeader& rhs) {
408  return lhs.flags == rhs.flags && lhs.track_id == rhs.track_id &&
409  lhs.sample_description_index == rhs.sample_description_index &&
410  lhs.default_sample_duration == rhs.default_sample_duration &&
411  lhs.default_sample_size == rhs.default_sample_size &&
412  lhs.default_sample_flags == rhs.default_sample_flags;
413 }
414 
415 inline bool operator==(const TrackFragmentRun& lhs,
416  const TrackFragmentRun& rhs) {
417  return lhs.flags == rhs.flags && lhs.sample_count == rhs.sample_count &&
418  lhs.data_offset == rhs.data_offset &&
419  lhs.sample_flags == rhs.sample_flags &&
420  lhs.sample_sizes == rhs.sample_sizes &&
421  lhs.sample_durations == rhs.sample_durations &&
422  lhs.sample_composition_time_offsets ==
423  rhs.sample_composition_time_offsets;
424 }
425 
426 inline bool operator==(const TrackFragment& lhs, const TrackFragment& rhs) {
427  return lhs.header == rhs.header && lhs.runs == rhs.runs &&
428  lhs.decode_time == rhs.decode_time &&
429  lhs.auxiliary_offset == rhs.auxiliary_offset &&
430  lhs.auxiliary_size == rhs.auxiliary_size &&
431  lhs.sample_encryption == rhs.sample_encryption;
432 }
433 
434 inline bool operator==(const MovieFragment& lhs, const MovieFragment& rhs) {
435  return lhs.header == rhs.header && lhs.tracks == rhs.tracks &&
436  lhs.pssh == rhs.pssh;
437 }
438 
439 inline bool operator==(const SegmentReference& lhs,
440  const SegmentReference& rhs) {
441  return lhs.reference_type == rhs.reference_type &&
442  lhs.referenced_size == rhs.referenced_size &&
443  lhs.subsegment_duration == rhs.subsegment_duration &&
444  lhs.starts_with_sap == rhs.starts_with_sap &&
445  lhs.sap_type == rhs.sap_type &&
446  lhs.sap_delta_time == rhs.sap_delta_time;
447 }
448 
449 inline bool operator==(const SegmentIndex& lhs, const SegmentIndex& rhs) {
450  return lhs.reference_id == rhs.reference_id &&
451  lhs.timescale == rhs.timescale &&
452  lhs.earliest_presentation_time == rhs.earliest_presentation_time &&
453  lhs.first_offset == rhs.first_offset &&
454  lhs.references == rhs.references;
455 }
456 
457 inline bool operator==(const CueSourceIDBox& lhs,
458  const CueSourceIDBox& rhs) {
459  return lhs.source_id == rhs.source_id;
460 }
461 
462 inline bool operator==(const CueTimeBox& lhs,
463  const CueTimeBox& rhs) {
464  return lhs.cue_current_time == rhs.cue_current_time;
465 }
466 
467 inline bool operator==(const CueIDBox& lhs,
468  const CueIDBox& rhs) {
469  return lhs.cue_id == rhs.cue_id;
470 }
471 
472 inline bool operator==(const CueSettingsBox& lhs,
473  const CueSettingsBox& rhs) {
474  return lhs.settings == rhs.settings;
475 }
476 
477 inline bool operator==(const CuePayloadBox& lhs,
478  const CuePayloadBox& rhs) {
479  return lhs.cue_text == rhs.cue_text;
480 }
481 
482 inline bool operator==(const VTTEmptyCueBox& lhs, const VTTEmptyCueBox& rhs) {
483  return true;
484 }
485 
486 inline bool operator==(const VTTAdditionalTextBox& lhs,
487  const VTTAdditionalTextBox& rhs) {
488  return lhs.cue_additional_text == rhs.cue_additional_text;
489 }
490 
491 inline bool operator==(const VTTCueBox& lhs,
492  const VTTCueBox& rhs) {
493  return lhs.cue_source_id == rhs.cue_source_id && lhs.cue_id == rhs.cue_id &&
494  lhs.cue_time == rhs.cue_time && lhs.cue_settings == rhs.cue_settings &&
495  lhs.cue_payload == rhs.cue_payload;
496 }
497 
498 } // namespace mp4
499 } // namespace media
500 } // namespace shaka
501 
502 #endif // MEDIA_FORMATS_MP4_BOX_DEFINITIONS_COMPARISON_H_