chromium/third_party/libaom/source/libaom/third_party/libwebm/mkvmuxer/mkvwriter.cc

// Copyright (c) 2012 The WebM project authors. All Rights Reserved.
//
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file in the root of the source
// tree. An additional intellectual property rights grant can be found
// in the file PATENTS.  All contributing project authors may
// be found in the AUTHORS file in the root of the source tree.

#include "mkvmuxer/mkvwriter.h"

#include <sys/types.h>

#ifdef _MSC_VER
#include <share.h>  // for _SH_DENYWR
#endif

namespace mkvmuxer {

MkvWriter::MkvWriter() :{}

MkvWriter::MkvWriter(FILE* fp) :{}

MkvWriter::~MkvWriter() {}

int32 MkvWriter::Write(const void* buffer, uint32 length) {}

bool MkvWriter::Open(const char* filename) {}

void MkvWriter::Close() {}

int64 MkvWriter::Position() const {}

int32 MkvWriter::Position(int64 position) {}

bool MkvWriter::Seekable() const {}

void MkvWriter::ElementStartNotify(uint64, int64) {}

}  // namespace mkvmuxer