blob: 04f3bea6e1e9f3544789eefef45fd0772d7aad9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/video/video_decode_engine.h"
namespace media {
VideoCodecConfig::VideoCodecConfig()
: codec(kCodecH264),
profile(kProfileDoNotCare),
level(kLevelDoNotCare),
width(0),
height(0),
opaque_context(NULL) {
}
} // namespace media
|