Searched defs:frame_width (Results 1 - 12 of 12) sorted by relevance

/external/libvpx/libvpx/
H A Dvideo_common.h18 int frame_width; member in struct:__anon11165
/external/webrtc/talk/media/webrtc/
H A Dwebrtcvideoframe_unittest.cc61 const int frame_width = 1920; local
71 captured_frame.width = frame_width;
73 captured_frame.data_size = (frame_width * frame_height) +
74 ((frame_width + 1) / 2) * ((frame_height + 1) / 2) * 2;
H A Dwebrtcvideoframefactory_unittest.cc40 const int frame_width = 1920; local
49 captured_frame_.width = frame_width;
52 (frame_width * frame_height) +
53 ((frame_width + 1) / 2) * ((frame_height + 1) / 2) * 2;
/external/webrtc/talk/media/devices/
H A Dfilevideocapturer_unittest.cc74 int frame_width() const { return frame_width_; } function in class:__anon19972::FileVideoCapturerTest::VideoCapturerListener
173 EXPECT_EQ(listener.frame_width(), capture_format_.width);
/external/libvpx/libvpx/vp9/common/
H A Dvp9_reconintra.c133 int frame_width, frame_height; local
145 frame_width = xd->cur_buf->y_width;
148 frame_width = xd->cur_buf->uv_width;
186 if (x0 + 2 * bs <= frame_width) {
193 } else if (x0 + bs <= frame_width) {
194 const int r = frame_width - x0;
198 x0 + 2 * bs - frame_width);
203 } else if (x0 <= frame_width) {
204 const int r = frame_width - x0;
207 x0 + 2 * bs - frame_width);
255 int frame_width, frame_height; local
[all...]
/external/webrtc/talk/media/base/
H A Dtestutils.h140 int frame_width() const { return frame_width_; } function in class:cricket::VideoCapturerListener
H A Dvideocommon.cc105 void ComputeScaleMaxPixels(int frame_width, int frame_height, int max_pixels, argument
112 int new_frame_width = frame_width;
134 float scale = FindLowerScale(frame_width, frame_height,
136 *scaled_width = static_cast<int>(frame_width * scale + .5f);
142 void ComputeScale(int frame_width, int frame_height, int fps, argument
151 frame_width, frame_height, max_pixels, scaled_width, scaled_height);
157 int frame_width, int frame_height,
167 ASSERT(frame_width > 0);
184 float frame_aspect = static_cast<float>(frame_width * pixel_width) /
199 frame_width
156 ComputeCrop(int cropped_format_width, int cropped_format_height, int frame_width, int frame_height, int pixel_width, int pixel_height, int rotation, int* cropped_width, int* cropped_height) argument
[all...]
H A Dmediachannel.h814 frame_width(0),
837 int frame_width; member in struct:cricket::VideoReceiverInfo
/external/webrtc/webrtc/modules/video_coding/
H A Dreceiver.cc71 uint16_t frame_width,
70 InsertPacket(const VCMPacket& packet, uint16_t frame_width, uint16_t frame_height) argument
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_ratectrl.h157 int frame_width[FRAME_SCALE_STEPS]; member in struct:__anon11298
/external/drm_hwcomposer/
H A Dglworker.cpp565 GLint frame_width = framebuffer->getWidth(); local
607 glViewport(0, 0, frame_width, frame_height);
639 glUniform4f(gl_viewport_loc, cmd.bounds[0] / (float)frame_width,
641 (cmd.bounds[2] - cmd.bounds[0]) / (float)frame_width,
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decodeframe.c504 int frame_width, int frame_height,
517 x0, y0, b_w, b_h, frame_width, frame_height);
521 x0, y0, b_w, b_h, frame_width, frame_height);
536 int frame_width, int frame_height,
547 x0, y0, b_w, b_h, frame_width, frame_height);
567 int xs, ys, x0, y0, x0_16, y0_16, frame_width, frame_height, local
573 frame_width = ref_frame_buf->buf.y_crop_width;
577 frame_width = ref_frame_buf->buf.uv_crop_width;
639 (frame_width & 0x7) || (frame_height & 0x7)) {
665 if (x0 < 0 || x0 > frame_width
502 extend_and_predict(const uint8_t *buf_ptr1, int pre_buf_stride, int x0, int y0, int b_w, int b_h, int frame_width, int frame_height, int border_offset, uint8_t *const dst, int dst_buf_stride, int subpel_x, int subpel_y, const InterpKernel *kernel, const struct scale_factors *sf, MACROBLOCKD *xd, int w, int h, int ref, int xs, int ys) argument
534 extend_and_predict(const uint8_t *buf_ptr1, int pre_buf_stride, int x0, int y0, int b_w, int b_h, int frame_width, int frame_height, int border_offset, uint8_t *const dst, int dst_buf_stride, int subpel_x, int subpel_y, const InterpKernel *kernel, const struct scale_factors *sf, int w, int h, int ref, int xs, int ys) argument
[all...]

Completed in 290 milliseconds