| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 * | 9 * |
| 10 * WEBRTC VP8 wrapper interface | 10 * WEBRTC VP8 wrapper interface |
| 11 */ | 11 */ |
| 12 | 12 |
| 13 #ifndef WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_VP8_IMPL_H_ | 13 #ifndef WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_VP8_IMPL_H_ |
| 14 #define WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_VP8_IMPL_H_ | 14 #define WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_VP8_IMPL_H_ |
| 15 | 15 |
| 16 #include <vector> | 16 #include <vector> |
| 17 | 17 |
| 18 // NOTE: This include order must remain to avoid compile errors, even though | 18 // NOTE: This include order must remain to avoid compile errors, even though |
| 19 // it breaks the style guide. | 19 // it breaks the style guide. |
| 20 #include "vpx/vpx_encoder.h" | 20 #include "vpx/vpx_encoder.h" |
| 21 #include "vpx/vpx_decoder.h" | 21 #include "vpx/vpx_decoder.h" |
| 22 #include "vpx/vp8cx.h" | 22 #include "vpx/vp8cx.h" |
| 23 #include "vpx/vp8dx.h" | 23 #include "vpx/vp8dx.h" |
| 24 | 24 |
| 25 #include "webrtc/common_video/include/i420_buffer_pool.h" | 25 #include "webrtc/common_video/include/i420_buffer_pool.h" |
| 26 #include "webrtc/modules/video_coding/codecs/interface/video_codec_interface.h" | 26 #include "webrtc/modules/video_coding/include/video_codec_interface.h" |
| 27 #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h" | 27 #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h" |
| 28 #include "webrtc/modules/video_coding/codecs/vp8/reference_picture_selection.h" | 28 #include "webrtc/modules/video_coding/codecs/vp8/reference_picture_selection.h" |
| 29 #include "webrtc/modules/video_coding/utility/include/frame_dropper.h" | 29 #include "webrtc/modules/video_coding/utility/include/frame_dropper.h" |
| 30 #include "webrtc/modules/video_coding/utility/include/quality_scaler.h" | 30 #include "webrtc/modules/video_coding/utility/include/quality_scaler.h" |
| 31 #include "webrtc/video_frame.h" | 31 #include "webrtc/video_frame.h" |
| 32 | 32 |
| 33 namespace webrtc { | 33 namespace webrtc { |
| 34 | 34 |
| 35 class TemporalLayers; | 35 class TemporalLayers; |
| 36 | 36 |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 vpx_ref_frame_t* ref_frame_; | 159 vpx_ref_frame_t* ref_frame_; |
| 160 int propagation_cnt_; | 160 int propagation_cnt_; |
| 161 int last_frame_width_; | 161 int last_frame_width_; |
| 162 int last_frame_height_; | 162 int last_frame_height_; |
| 163 bool key_frame_required_; | 163 bool key_frame_required_; |
| 164 }; // end of VP8DecoderImpl class | 164 }; // end of VP8DecoderImpl class |
| 165 } // namespace webrtc | 165 } // namespace webrtc |
| 166 | 166 |
| 167 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_VP8_IMPL_H_ | 167 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_VP8_IMPL_H_ |
| 168 | 168 |
| OLD | NEW |