Searched refs:input_frame (Results 1 - 10 of 10) sorted by relevance

/external/webrtc/talk/media/base/
H A Dvideoframefactory.cc36 const CapturedFrame* input_frame,
42 input_frame, cropped_input_width, cropped_input_height));
54 (input_frame->rotation == webrtc::kVideoRotation_90 ||
55 input_frame->rotation == webrtc::kVideoRotation_270)) {
35 CreateAliasedFrame( const CapturedFrame* input_frame, int cropped_input_width, int cropped_input_height, int output_width, int output_height) const argument
H A Dvideoframefactory.h50 // The returned frame will be a center crop of |input_frame| with
52 virtual VideoFrame* CreateAliasedFrame(const CapturedFrame* input_frame,
56 // The returned frame will be a center crop of |input_frame| with size
59 virtual VideoFrame* CreateAliasedFrame(const CapturedFrame* input_frame,
/external/webrtc/webrtc/common_video/libyuv/
H A Dwebrtc_libyuv.cc126 int ExtractBuffer(const VideoFrame& input_frame, size_t size, uint8_t* buffer) { argument
128 if (input_frame.IsZeroSize())
131 CalcBufferSize(kI420, input_frame.width(), input_frame.height());
140 int width = (plane ? (input_frame.width() + 1) / 2 :
141 input_frame.width());
142 int height = (plane ? (input_frame.height() + 1) / 2 :
143 input_frame.height());
144 const uint8_t* plane_ptr = input_frame.buffer(
149 plane_ptr += input_frame
[all...]
H A Dscaler_unittest.cc354 VideoFrame input_frame; local
370 input_frame.CreateFrame(frame_buffer.get(),
378 EXPECT_EQ(0, test_scaler_.Scale(input_frame, &output_frame));
/external/webrtc/talk/app/webrtc/
H A Dandroidvideocapturer.cc99 const cricket::CapturedFrame* input_frame,
111 apply_rotation_ ? input_frame->rotation :
114 scaled_buffer, input_frame->time_stamp,
115 apply_rotation_ ? webrtc::kVideoRotation_0 : input_frame->rotation);
117 return VideoFrameFactory::CreateAliasedFrame(input_frame,
/external/webrtc/webrtc/common_video/libyuv/include/
H A Dwebrtc_libyuv.h95 int ExtractBuffer(const VideoFrame& input_frame, size_t size, uint8_t* buffer);
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
H A Dvp8_sequence_coder.cc148 webrtc::VideoFrame input_frame; local
163 input_frame.CreateEmptyFrame(width, height, width, half_width, half_width);
170 height, 0, webrtc::kVideoRotation_0, &input_frame);
171 encoder->Encode(input_frame, NULL, NULL);
/external/webrtc/webrtc/modules/audio_processing/
H A Daudio_processing_performance_unittest.cc58 input_frame.resize(2);
59 input_frame[0] = &input_framechannels[0];
60 input_frame[1] = &input_framechannels[max_frame_size];
71 std::vector<float*> input_frame; member in struct:webrtc::__anon20958::AudioFrameData
335 &frame_data_.input_frame[0], frame_data_.input_stream_config,
363 &frame_data_.input_frame[0], frame_data_.input_stream_config,
412 rand_gen_, &frame_data_.input_frame[0]);
H A Daudio_processing_impl_locking_unittest.cc95 input_frame.resize(2);
96 input_frame[0] = &input_framechannels[0];
97 input_frame[1] = &input_framechannels[max_frame_size];
112 std::vector<float*> input_frame; member in struct:webrtc::__anon20957::AudioFrameData
685 PopulateAudioFrame(&frame_data_.input_frame[0], kCaptureInputFloatLevel,
723 &frame_data_.input_frame[0], frame_data_.input_samples_per_channel,
730 &frame_data_.input_frame[0], frame_data_.input_stream_config,
958 PopulateAudioFrame(&frame_data_.input_frame[0], kRenderInputFloatLevel,
993 &frame_data_.input_frame[0], frame_data_.input_stream_config,
1001 &frame_data_.input_frame[
[all...]
/external/webrtc/talk/app/webrtc/java/jni/
H A Dandroidmediaencoder_jni.cc581 VideoFrame input_frame = frame; local
596 input_frame.set_video_frame_buffer(scaled_buffer);
598 input_frame = quality_scaler_.GetScaledFrame(frame);
603 if (!MaybeReconfigureEncoderOnCodecThread(input_frame)) {
625 if (!input_frame.native_handle()) {
641 encode_status = EncodeByteBufferOnCodecThread(jni, key_frame, input_frame,
644 encode_status = EncodeTextureOnCodecThread(jni, key_frame, input_frame);
648 ALOGE << "Failed encode frame with timestamp: " << input_frame.timestamp();
658 timestamps_.push_back(input_frame.timestamp());
659 render_times_ms_.push_back(input_frame
[all...]

Completed in 210 milliseconds