OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 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 | 10 |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 // matches the destination or the input image is empty (e.g. | 290 // matches the destination or the input image is empty (e.g. |
291 // a keyframe request for encoders with internal camera | 291 // a keyframe request for encoders with internal camera |
292 // sources) or the source image has a native handle, pass the image on | 292 // sources) or the source image has a native handle, pass the image on |
293 // directly. Otherwise, we'll scale it to match what the encoder expects | 293 // directly. Otherwise, we'll scale it to match what the encoder expects |
294 // (below). | 294 // (below). |
295 // For texture frames, the underlying encoder is expected to be able to | 295 // For texture frames, the underlying encoder is expected to be able to |
296 // correctly sample/scale the source texture. | 296 // correctly sample/scale the source texture. |
297 // TODO(perkj): ensure that works going forward, and figure out how this | 297 // TODO(perkj): ensure that works going forward, and figure out how this |
298 // affects webrtc:5683. | 298 // affects webrtc:5683. |
299 if ((dst_width == src_width && dst_height == src_height) || | 299 if ((dst_width == src_width && dst_height == src_height) || |
300 input_image.IsZeroSize() || | |
301 input_image.video_frame_buffer()->native_handle()) { | 300 input_image.video_frame_buffer()->native_handle()) { |
302 int ret = streaminfos_[stream_idx].encoder->Encode( | 301 int ret = streaminfos_[stream_idx].encoder->Encode( |
303 input_image, codec_specific_info, &stream_frame_types); | 302 input_image, codec_specific_info, &stream_frame_types); |
304 if (ret != WEBRTC_VIDEO_CODEC_OK) { | 303 if (ret != WEBRTC_VIDEO_CODEC_OK) { |
305 return ret; | 304 return ret; |
306 } | 305 } |
307 } else { | 306 } else { |
308 VideoFrame dst_frame; | 307 VideoFrame dst_frame; |
309 // Making sure that destination frame is of sufficient size. | 308 // Making sure that destination frame is of sufficient size. |
310 // Aligning stride values based on width. | 309 // Aligning stride values based on width. |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
521 return false; | 520 return false; |
522 } | 521 } |
523 return true; | 522 return true; |
524 } | 523 } |
525 | 524 |
526 const char* SimulcastEncoderAdapter::ImplementationName() const { | 525 const char* SimulcastEncoderAdapter::ImplementationName() const { |
527 return implementation_name_.c_str(); | 526 return implementation_name_.c_str(); |
528 } | 527 } |
529 | 528 |
530 } // namespace webrtc | 529 } // namespace webrtc |
OLD | NEW |