OLD | NEW |
(Empty) | |
| 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 |
| 5 #include "content/common/gpu/video_encode_params.h" |
| 6 |
| 7 namespace content { |
| 8 |
| 9 VideoEncodeParams::VideoEncodeParams() |
| 10 : frame_id(0), buffer_offset(0), buffer_size(0), force_keyframe(false) {} |
| 11 |
| 12 VideoEncodeParams::~VideoEncodeParams() {} |
| 13 |
| 14 VideoEncodeParams2::VideoEncodeParams2() : frame_id(0), force_keyframe(false) {} |
| 15 |
| 16 VideoEncodeParams2::~VideoEncodeParams2() {} |
| 17 |
| 18 } // namespace content |
OLD | NEW |