// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_FORMATS_MP4_DTSX_H_ #define MEDIA_FORMATS_MP4_DTSX_H_ #include <stdint.h> #include <vector> #include "media/base/media_export.h" #include "media/base/media_log.h" namespace media { namespace mp4 { enum class DtsxChannelMask : uint32_t { … }; // This class parses the DTSX information from decoder specific information // embedded in the udts box in an ISO BMFF file. // Please refer to SCTE DVS 243-4 Part 4 Table 12 - DTS-UHD Specific Box for // more details. class MEDIA_EXPORT DTSX { … }; } // namespace mp4 } // namespace media #endif // MEDIA_FORMATS_MP4_DTSX_H_