// Copyright 2013 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_BASE_WEBVTT_UTIL_H_ #define MEDIA_BASE_WEBVTT_UTIL_H_ #include <stdint.h> #include <vector> namespace media { // Utility function to create side data item for decoder buffer. template <typename T> void MakeSideData(T id_begin, T id_end, T settings_begin, T settings_end, std::vector<uint8_t>* side_data) { … } } // namespace media #endif // MEDIA_BASE_WEBVTT_UTIL_H_