Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1050)

Side by Side Diff: webrtc/modules/video_coding/codecs/vp8/temporal_layers.h

Issue 1418913006: common_video: rename interface -> include (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. 1 /* Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
2 * 2 *
3 * Use of this source code is governed by a BSD-style license 3 * Use of this source code is governed by a BSD-style license
4 * that can be found in the LICENSE file in the root of the source 4 * that can be found in the LICENSE file in the root of the source
5 * tree. An additional intellectual property rights grant can be found 5 * tree. An additional intellectual property rights grant can be found
6 * in the file PATENTS. All contributing project authors may 6 * in the file PATENTS. All contributing project authors may
7 * be found in the AUTHORS file in the root of the source tree. 7 * be found in the AUTHORS file in the root of the source tree.
8 */ 8 */
9 /* 9 /*
10 * This file defines the interface for doing temporal layers with VP8. 10 * This file defines the interface for doing temporal layers with VP8.
11 */ 11 */
12 #ifndef WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_TEMPORAL_LAYERS_H_ 12 #ifndef WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_TEMPORAL_LAYERS_H_
13 #define WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_TEMPORAL_LAYERS_H_ 13 #define WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_TEMPORAL_LAYERS_H_
14 14
15 #include "vpx/vpx_encoder.h" 15 #include "vpx/vpx_encoder.h"
16 16
17 #include "webrtc/common_video/interface/video_image.h" 17 #include "webrtc/common_video/include/video_image.h"
18 #include "webrtc/typedefs.h" 18 #include "webrtc/typedefs.h"
19 19
20 namespace webrtc { 20 namespace webrtc {
21 21
22 struct CodecSpecificInfoVP8; 22 struct CodecSpecificInfoVP8;
23 23
24 class TemporalLayers { 24 class TemporalLayers {
25 public: 25 public:
26 // Factory for TemporalLayer strategy. Default behaviour is a fixed pattern 26 // Factory for TemporalLayer strategy. Default behaviour is a fixed pattern
27 // of temporal layers. See default_temporal_layers.cc 27 // of temporal layers. See default_temporal_layers.cc
(...skipping 30 matching lines...) Expand all
58 // layers based on input framerate so that the base layer has an acceptable 58 // layers based on input framerate so that the base layer has an acceptable
59 // framerate. See realtime_temporal_layers.cc 59 // framerate. See realtime_temporal_layers.cc
60 struct RealTimeTemporalLayersFactory : TemporalLayers::Factory { 60 struct RealTimeTemporalLayersFactory : TemporalLayers::Factory {
61 virtual ~RealTimeTemporalLayersFactory() {} 61 virtual ~RealTimeTemporalLayersFactory() {}
62 virtual TemporalLayers* Create(int num_temporal_layers, 62 virtual TemporalLayers* Create(int num_temporal_layers,
63 uint8_t initial_tl0_pic_idx) const; 63 uint8_t initial_tl0_pic_idx) const;
64 }; 64 };
65 65
66 } // namespace webrtc 66 } // namespace webrtc
67 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_TEMPORAL_LAYERS_H_ 67 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_TEMPORAL_LAYERS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698