chromium/media/formats/webm/webm_colour_parser.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "media/formats/webm/webm_colour_parser.h"

#include "base/check.h"
#include "base/logging.h"
#include "media/formats/webm/webm_constants.h"
#include "third_party/libwebm/source/mkvmuxer/mkvmuxer.h"

namespace media {

WebMColorMetadata::WebMColorMetadata() = default;
WebMColorMetadata::WebMColorMetadata(const WebMColorMetadata& rhs) = default;

WebMColorVolumeMetadataParser::WebMColorVolumeMetadataParser() = default;
WebMColorVolumeMetadataParser::~WebMColorVolumeMetadataParser() = default;

bool WebMColorVolumeMetadataParser::OnFloat(int id, double val) {}

WebMColourParser::WebMColourParser() {}

WebMColourParser::~WebMColourParser() = default;

void WebMColourParser::Reset() {}

WebMParserClient* WebMColourParser::OnListStart(int id) {}

bool WebMColourParser::OnListEnd(int id) {}

bool WebMColourParser::OnUInt(int id, int64_t val) {}

WebMColorMetadata WebMColourParser::GetWebMColorMetadata() const {}

}  // namespace media