bitstream_converter.cc 629 B

1234567891011121314151617181920
  1. // Copyright 2015 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "media/formats/mp4/bitstream_converter.h"
  5. namespace media {
  6. namespace mp4 {
  7. BitstreamConverter::AnalysisResult::AnalysisResult() {}
  8. BitstreamConverter::AnalysisResult::AnalysisResult(const AnalysisResult& other)
  9. : is_conformant(other.is_conformant), is_keyframe(other.is_keyframe) {}
  10. BitstreamConverter::AnalysisResult::~AnalysisResult() = default;
  11. BitstreamConverter::~BitstreamConverter() = default;
  12. } // namespace mp4
  13. } // namespace media