Shaka Packager SDK
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 PACKAGER_MEDIA_FORMATS_MP4_BOX_DEFINITIONS_COMPARISON_H_
10 #define PACKAGER_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 ID3v2& lhs, const ID3v2& rhs) {
233  return lhs.language == rhs.language && lhs.id3v2_data == rhs.id3v2_data;
234 }
235 
236 inline bool operator==(const Metadata& lhs, const Metadata& rhs) {
237  return lhs.handler == rhs.handler && lhs.id3v2 == rhs.id3v2;
238 }
239 
240 inline bool operator==(const CodecConfiguration& lhs,
241  const CodecConfiguration& rhs) {
242  return lhs.box_type == rhs.box_type && lhs.data == rhs.data;
243 }
244 
245 inline bool operator==(const PixelAspectRatio& lhs,
246  const PixelAspectRatio& rhs) {
247  return lhs.h_spacing == rhs.h_spacing && lhs.v_spacing == rhs.v_spacing;
248 }
249 
250 inline bool operator==(const VideoSampleEntry& lhs,
251  const VideoSampleEntry& rhs) {
252  return lhs.format == rhs.format &&
253  lhs.data_reference_index == rhs.data_reference_index &&
254  lhs.width == rhs.width && lhs.height == rhs.height &&
255  lhs.pixel_aspect == rhs.pixel_aspect && lhs.sinf == rhs.sinf &&
256  lhs.codec_configuration == rhs.codec_configuration;
257 }
258 
259 inline bool operator==(const ESDescriptor& lhs, const ESDescriptor& rhs) {
260  return lhs.esid() == rhs.esid() && lhs.object_type() == rhs.object_type() &&
261  lhs.max_bitrate() == rhs.max_bitrate() &&
262  lhs.avg_bitrate() == rhs.avg_bitrate() &&
263  lhs.decoder_specific_info() == rhs.decoder_specific_info();
264 }
265 
266 inline bool operator==(const ElementaryStreamDescriptor& lhs,
267  const ElementaryStreamDescriptor& rhs) {
268  return lhs.es_descriptor == rhs.es_descriptor;
269 }
270 
271 inline bool operator==(const DTSSpecific& lhs, const DTSSpecific& rhs) {
272  return lhs.sampling_frequency == rhs.sampling_frequency &&
273  lhs.max_bitrate == rhs.max_bitrate &&
274  lhs.avg_bitrate == rhs.avg_bitrate &&
275  lhs.pcm_sample_depth == rhs.pcm_sample_depth &&
276  lhs.extra_data == rhs.extra_data;
277 }
278 
279 inline bool operator==(const AC3Specific& lhs, const AC3Specific& rhs) {
280  return lhs.data == rhs.data;
281 }
282 
283 inline bool operator==(const EC3Specific& lhs, const EC3Specific& rhs) {
284  return lhs.data == rhs.data;
285 }
286 
287 inline bool operator==(const OpusSpecific& lhs, const OpusSpecific& rhs) {
288  return lhs.opus_identification_header == rhs.opus_identification_header &&
289  lhs.preskip == rhs.preskip;
290 }
291 
292 inline bool operator==(const AudioSampleEntry& lhs,
293  const AudioSampleEntry& rhs) {
294  return lhs.format == rhs.format &&
295  lhs.data_reference_index == rhs.data_reference_index &&
296  lhs.channelcount == rhs.channelcount &&
297  lhs.samplesize == rhs.samplesize && lhs.samplerate == rhs.samplerate &&
298  lhs.sinf == rhs.sinf && lhs.esds == rhs.esds && lhs.ddts == rhs.ddts &&
299  lhs.dac3 == rhs.dac3 && lhs.dec3 == rhs.dec3 && lhs.dops == rhs.dops;
300 }
301 
302 inline bool operator==(const WebVTTConfigurationBox& lhs,
303  const WebVTTConfigurationBox& rhs) {
304  return lhs.config == rhs.config;
305 }
306 
307 inline bool operator==(const WebVTTSourceLabelBox& lhs,
308  const WebVTTSourceLabelBox& rhs) {
309  return lhs.source_label == rhs.source_label;
310 }
311 
312 inline bool operator==(const TextSampleEntry& lhs, const TextSampleEntry& rhs) {
313  return lhs.config == rhs.config && lhs.label == rhs.label;
314 }
315 
316 inline bool operator==(const MediaHeader& lhs, const MediaHeader& rhs) {
317  return lhs.creation_time == rhs.creation_time &&
318  lhs.modification_time == rhs.modification_time &&
319  lhs.timescale == rhs.timescale && lhs.duration == rhs.duration &&
320  lhs.language == rhs.language;
321 }
322 
323 inline bool operator==(const VideoMediaHeader& lhs,
324  const VideoMediaHeader& rhs) {
325  return lhs.graphicsmode == rhs.graphicsmode &&
326  lhs.opcolor_red == rhs.opcolor_red &&
327  lhs.opcolor_green == rhs.opcolor_green &&
328  lhs.opcolor_blue == rhs.opcolor_blue;
329 }
330 
331 inline bool operator==(const SoundMediaHeader& lhs,
332  const SoundMediaHeader& rhs) {
333  return lhs.balance == rhs.balance;
334 }
335 
336 inline bool operator==(const SubtitleMediaHeader& lhs,
337  const SubtitleMediaHeader& rhs) {
338  return true;
339 }
340 
341 inline bool operator==(const DataEntryUrl& lhs, const DataEntryUrl& rhs) {
342  return lhs.flags == rhs.flags && lhs.location == rhs.location;
343 }
344 
345 inline bool operator==(const DataReference& lhs, const DataReference& rhs) {
346  return lhs.data_entry == rhs.data_entry;
347 }
348 
349 inline bool operator==(const DataInformation& lhs, const DataInformation& rhs) {
350  return lhs.dref == rhs.dref;
351 }
352 
353 inline bool operator==(const MediaInformation& lhs,
354  const MediaInformation& rhs) {
355  return lhs.dinf == rhs.dinf && lhs.sample_table == rhs.sample_table &&
356  lhs.vmhd == rhs.vmhd && lhs.smhd == rhs.smhd;
357 }
358 
359 inline bool operator==(const Media& lhs, const Media& rhs) {
360  return lhs.header == rhs.header && lhs.handler == rhs.handler &&
361  lhs.information == rhs.information;
362 }
363 
364 inline bool operator==(const Track& lhs, const Track& rhs) {
365  return lhs.header == rhs.header && lhs.media == rhs.media &&
366  lhs.edit == rhs.edit && lhs.sample_encryption == rhs.sample_encryption;
367 }
368 
369 inline bool operator==(const MovieExtendsHeader& lhs,
370  const MovieExtendsHeader& rhs) {
371  return lhs.fragment_duration == rhs.fragment_duration;
372 }
373 
374 inline bool operator==(const TrackExtends& lhs, const TrackExtends& rhs) {
375  return lhs.track_id == rhs.track_id &&
376  lhs.default_sample_description_index ==
377  rhs.default_sample_description_index &&
378  lhs.default_sample_duration == rhs.default_sample_duration &&
379  lhs.default_sample_size == rhs.default_sample_size &&
380  lhs.default_sample_flags == rhs.default_sample_flags;
381 }
382 
383 inline bool operator==(const MovieExtends& lhs, const MovieExtends& rhs) {
384  return lhs.header == rhs.header && lhs.tracks == rhs.tracks;
385 }
386 
387 inline bool operator==(const Movie& lhs, const Movie& rhs) {
388  return lhs.header == rhs.header && lhs.extends == rhs.extends &&
389  lhs.tracks == rhs.tracks && lhs.pssh == rhs.pssh;
390 }
391 
392 inline bool operator==(const TrackFragmentDecodeTime& lhs,
393  const TrackFragmentDecodeTime& rhs) {
394  return lhs.decode_time == rhs.decode_time;
395 }
396 
397 inline bool operator==(const MovieFragmentHeader& lhs,
398  const MovieFragmentHeader& rhs) {
399  return lhs.sequence_number == rhs.sequence_number;
400 }
401 
402 inline bool operator==(const TrackFragmentHeader& lhs,
403  const TrackFragmentHeader& rhs) {
404  return lhs.flags == rhs.flags && lhs.track_id == rhs.track_id &&
405  lhs.sample_description_index == rhs.sample_description_index &&
406  lhs.default_sample_duration == rhs.default_sample_duration &&
407  lhs.default_sample_size == rhs.default_sample_size &&
408  lhs.default_sample_flags == rhs.default_sample_flags;
409 }
410 
411 inline bool operator==(const TrackFragmentRun& lhs,
412  const TrackFragmentRun& rhs) {
413  return lhs.flags == rhs.flags && lhs.sample_count == rhs.sample_count &&
414  lhs.data_offset == rhs.data_offset &&
415  lhs.sample_flags == rhs.sample_flags &&
416  lhs.sample_sizes == rhs.sample_sizes &&
417  lhs.sample_durations == rhs.sample_durations &&
418  lhs.sample_composition_time_offsets ==
419  rhs.sample_composition_time_offsets;
420 }
421 
422 inline bool operator==(const TrackFragment& lhs, const TrackFragment& rhs) {
423  return lhs.header == rhs.header && lhs.runs == rhs.runs &&
424  lhs.decode_time == rhs.decode_time &&
425  lhs.auxiliary_offset == rhs.auxiliary_offset &&
426  lhs.auxiliary_size == rhs.auxiliary_size &&
427  lhs.sample_encryption == rhs.sample_encryption;
428 }
429 
430 inline bool operator==(const MovieFragment& lhs, const MovieFragment& rhs) {
431  return lhs.header == rhs.header && lhs.tracks == rhs.tracks &&
432  lhs.pssh == rhs.pssh;
433 }
434 
435 inline bool operator==(const SegmentReference& lhs,
436  const SegmentReference& rhs) {
437  return lhs.reference_type == rhs.reference_type &&
438  lhs.referenced_size == rhs.referenced_size &&
439  lhs.subsegment_duration == rhs.subsegment_duration &&
440  lhs.starts_with_sap == rhs.starts_with_sap &&
441  lhs.sap_type == rhs.sap_type &&
442  lhs.sap_delta_time == rhs.sap_delta_time;
443 }
444 
445 inline bool operator==(const SegmentIndex& lhs, const SegmentIndex& rhs) {
446  return lhs.reference_id == rhs.reference_id &&
447  lhs.timescale == rhs.timescale &&
448  lhs.earliest_presentation_time == rhs.earliest_presentation_time &&
449  lhs.first_offset == rhs.first_offset &&
450  lhs.references == rhs.references;
451 }
452 
453 inline bool operator==(const CueSourceIDBox& lhs,
454  const CueSourceIDBox& rhs) {
455  return lhs.source_id == rhs.source_id;
456 }
457 
458 inline bool operator==(const CueTimeBox& lhs,
459  const CueTimeBox& rhs) {
460  return lhs.cue_current_time == rhs.cue_current_time;
461 }
462 
463 inline bool operator==(const CueIDBox& lhs,
464  const CueIDBox& rhs) {
465  return lhs.cue_id == rhs.cue_id;
466 }
467 
468 inline bool operator==(const CueSettingsBox& lhs,
469  const CueSettingsBox& rhs) {
470  return lhs.settings == rhs.settings;
471 }
472 
473 inline bool operator==(const CuePayloadBox& lhs,
474  const CuePayloadBox& rhs) {
475  return lhs.cue_text == rhs.cue_text;
476 }
477 
478 inline bool operator==(const VTTEmptyCueBox& lhs, const VTTEmptyCueBox& rhs) {
479  return true;
480 }
481 
482 inline bool operator==(const VTTAdditionalTextBox& lhs,
483  const VTTAdditionalTextBox& rhs) {
484  return lhs.cue_additional_text == rhs.cue_additional_text;
485 }
486 
487 inline bool operator==(const VTTCueBox& lhs,
488  const VTTCueBox& rhs) {
489  return lhs.cue_source_id == rhs.cue_source_id && lhs.cue_id == rhs.cue_id &&
490  lhs.cue_time == rhs.cue_time && lhs.cue_settings == rhs.cue_settings &&
491  lhs.cue_payload == rhs.cue_payload;
492 }
493 
494 } // namespace mp4
495 } // namespace media
496 } // namespace shaka
497 
498 #endif // PACKAGER_MEDIA_FORMATS_MP4_BOX_DEFINITIONS_COMPARISON_H_
All the methods that are virtual are virtual for mocking.