| Index: media/formats/mp4/box_definitions.h
|
| diff --git a/media/formats/mp4/box_definitions.h b/media/formats/mp4/box_definitions.h
|
| index 666ad7e2115c2441e45350da2bb0bceb1aa0d11f..39a19b7fa0192376fe8377953f4a9c401c34387a 100644
|
| --- a/media/formats/mp4/box_definitions.h
|
| +++ b/media/formats/mp4/box_definitions.h
|
| @@ -240,17 +240,6 @@ struct MEDIA_EXPORT SampleDescription : Box {
|
| std::vector<AudioSampleEntry> audio_entries;
|
| };
|
|
|
| -struct MEDIA_EXPORT SyncSample : Box {
|
| - DECLARE_BOX_METHODS(SyncSample);
|
| -
|
| - // Returns true if the |k|th sample is a sync sample (aka a random
|
| - // access point). Returns false if sample |k| is not a sync sample.
|
| - bool IsSyncSample(size_t k) const;
|
| -
|
| - bool is_present;
|
| - std::vector<uint32> entries;
|
| -};
|
| -
|
| struct MEDIA_EXPORT CencSampleEncryptionInfoEntry {
|
| CencSampleEncryptionInfoEntry();
|
| ~CencSampleEncryptionInfoEntry();
|
| @@ -275,7 +264,6 @@ struct MEDIA_EXPORT SampleTable : Box {
|
| // includes the 'stts', 'stsc', and 'stco' boxes, which must contain no
|
| // samples in order to be compliant files.
|
| SampleDescription description;
|
| - SyncSample sync_sample;
|
| SampleGroupDescription sample_group_description;
|
| };
|
|
|
|
|