Home
last modified time | relevance | path

Searched refs:coded_size (Results 1 – 18 of 18) sorted by relevance

/external/v4l2_codec2/tests/c2_e2e_test/jni/
Dvideo_frame.cpp51 const Size& coded_size, const Size& visible_size, in Create() argument
53 if (coded_size.IsEmpty() || visible_size.IsEmpty() || (visible_size.width > coded_size.width) || in Create()
54 (visible_size.height > coded_size.height) || (coded_size.width % 2 != 0) || in Create()
55 (coded_size.height % 2 != 0) || (visible_size.width % 2 != 0) || in Create()
57 ALOGE("Size are not valid: coded: %dx%d, visible: %dx%d", coded_size.width, in Create()
58 coded_size.height, visible_size.width, visible_size.height); in Create()
68 if (data_size < coded_size.width * coded_size.height * 3 / 2) { in Create()
69 ALOGE("data_size(=%zu) is not enough for coded_size(=%dx%d)", data_size, coded_size.width, in Create()
70 coded_size.height); in Create()
77 if (data_size > coded_size.width * coded_size.height * 3 / 2) { in Create()
[all …]
Dvideo_decoder_e2e_test.cpp131 Size coded_size; member
176 VideoFrame::Create(data, buffer_size, output_format_.coded_size, in VerifyMD5()
195 VideoFrame::Create(data, buffer_size, output_format_.coded_size, in OutputToFile()
207 void UpdateOutputFormat(const Size& coded_size, const Size& visible_size, in UpdateOutputFormat() argument
209 output_format_.coded_size = coded_size; in UpdateOutputFormat()
235 void VerifyOutputFormat(const Size& coded_size, const Size& visible_size, in VerifyOutputFormat() argument
237 ASSERT_FALSE(coded_size.IsEmpty()); in VerifyOutputFormat()
239 ASSERT_LE(visible_size.width, coded_size.width); in VerifyOutputFormat()
240 ASSERT_LE(visible_size.height, coded_size.height); in VerifyOutputFormat()
243 coded_size.width, coded_size.height, visible_size.width, visible_size.height, in VerifyOutputFormat()
[all …]
Dvideo_frame.h23 const Size& coded_size, const Size& visible_size,
55 VideoFrame(const uint8_t* data, const Size& coded_size, const Size& visible_size,
/external/libaom/libaom/aom/src/
Daom_integer.c59 size_t *coded_size) { in aom_uleb_encode() argument
62 leb_size > available || !coded_value || !coded_size) { in aom_uleb_encode()
75 *coded_size = leb_size; in aom_uleb_encode()
81 size_t *coded_size) { in aom_uleb_encode_fixed_size() argument
82 if (value > kMaximumLeb128Value || !coded_value || !coded_size || in aom_uleb_encode_fixed_size()
103 *coded_size = pad_to_size; in aom_uleb_encode_fixed_size()
/external/libaom/libaom/test/
Daom_integer_test.cc154 size_t coded_size = 0; in TEST() local
156 aom_uleb_encode(kValidTestValue, kWriteBufferSize, NULL, &coded_size), in TEST()
164 &write_buffer[0], &coded_size), in TEST()
169 &write_buffer[0], &coded_size), in TEST()
175 &coded_size), in TEST()
/external/libaom/libaom/aom/
Daom_integer.h89 size_t *coded_size);
97 size_t *coded_size);
/external/v4l2_codec2/common/
DVideoPixelFormat.cpp223 size_t allocationSize(VideoPixelFormat format, const android::ui::Size& coded_size) { in allocationSize() argument
226 android::ui::Size plane_size = planeSize(format, i, coded_size); in allocationSize()
234 const android::ui::Size& coded_size) { in planeSize() argument
237 int width = coded_size.width; in planeSize()
238 int height = coded_size.height; in planeSize()
/external/curl/tests/libtest/
Dlib571.c58 int coded_size = RTP_PKT_LENGTH(data); in rtp_write() local
66 if(message_size != coded_size) { in rtp_write()
68 coded_size, message_size); in rtp_write()
/external/v4l2_codec2/common/include/v4l2_codec2/common/
DVideoPixelFormat.h66 size_t allocationSize(VideoPixelFormat format, const android::ui::Size& coded_size);
70 const android::ui::Size& coded_size);
/external/webp/src/enc/
Dvp8l_enc.c1170 size_t* const coded_size) { in WriteImage() argument
1193 *coded_size = CHUNK_HEADER_SIZE + riff_size; in WriteImage()
1838 size_t coded_size; in VP8LEncodeImage() local
1901 err = WriteImage(picture, &bw, &coded_size); in VP8LEncodeImage()
1909 picture->stats->coded_size += (int)coded_size; in VP8LEncodeImage()
1910 picture->stats->lossless_size = (int)coded_size; in VP8LEncodeImage()
Dwebp_enc.c296 stats->coded_size = enc->coded_size_; in StoreStats()
Dalpha_enc.c351 pic->stats->coded_size += (int)(*output_size); in EncodeAlpha()
/external/webp/include/webp/
Dencode.h205 int coded_size; // final size member
/external/webp/src/webp/
Dencode.h205 int coded_size; // final size member
/external/mesa3d/src/gallium/frontends/va/
Dbuffer.c144 ((VACodedBufferSegment*)buf->data)->size = buf->coded_size; in vlVaMapBuffer()
Dva_private.h273 unsigned int coded_size; member
Dsurface.c139 … context->decoder->get_feedback(context->decoder, surf->feedback, &(surf->coded_buf->coded_size)); in vlVaSyncSurface()
/external/openscreen/cast/streaming/
Dremoting.proto235 optional Size coded_size = 6; field