Searched refs:unpack_frame (Results 1 - 10 of 10) sorted by relevance
/third_party/ffmpeg/libavcodec/x86/ |
H A D | v210-init.c | 38 s->unpack_frame = ff_v210_planar_unpack_aligned_ssse3; in ff_v210_x86_init() 41 s->unpack_frame = ff_v210_planar_unpack_aligned_avx; in ff_v210_x86_init() 44 s->unpack_frame = ff_v210_planar_unpack_aligned_avx2; in ff_v210_x86_init() 48 s->unpack_frame = ff_v210_planar_unpack_unaligned_ssse3; in ff_v210_x86_init() 51 s->unpack_frame = ff_v210_planar_unpack_unaligned_avx; in ff_v210_x86_init() 54 s->unpack_frame = ff_v210_planar_unpack_unaligned_avx2; in ff_v210_x86_init()
|
/third_party/ffmpeg/libavcodec/ |
H A D | v210dec.c | 55 void (*unpack_frame)(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width)) in decode_row() 60 unpack_frame(src, y, u, v, w); in decode_row() 120 decode_row((const uint32_t *)psrc, py, pu, pv, avctx->width, s->unpack_frame); in v210_decode_slice() 203 decode_row((const uint32_t *)psrc, (uint16_t *)pointers[0], (uint16_t *)pointers[1], (uint16_t *)pointers[2], avctx->width * avctx->height, s->unpack_frame); in decode_frame()
|
H A D | v210dec.h | 32 void (*unpack_frame)(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width); member
|
H A D | v210dec_init.h | 56 s->unpack_frame = v210_planar_unpack_c; in ff_v210dec_init()
|
H A D | evrcdec.c | 110 static void unpack_frame(EVRCContext *e) in unpack_frame() function 773 unpack_frame(e); in evrc_decode_frame()
|
H A D | ilbcdec.c | 130 static int unpack_frame(ILBCContext *s) in unpack_frame() function 1375 if (unpack_frame(s)) in ilbc_decode_frame()
|
/third_party/ffmpeg/tests/checkasm/ |
H A D | v210dec.c | 54 if (check_func(h.unpack_frame, "v210_unpack")) { in checkasm_check_v210dec()
|
/third_party/nghttp2/tests/ |
H A D | nghttp2_test_helper.h | 63 int unpack_frame(nghttp2_frame *frame, const uint8_t *in, size_t len);
|
H A D | nghttp2_test_helper.c | 41 return unpack_frame(frame, buf->pos, nghttp2_buf_len(buf)); in unpack_framebuf() 44 int unpack_frame(nghttp2_frame *frame, const uint8_t *in, size_t len) { in unpack_frame() function
|
H A D | nghttp2_session_test.c | 5521 CU_ASSERT(0 == unpack_frame(&frame, acc.buf, acc.length)); in test_nghttp2_submit_request_without_data() 5621 CU_ASSERT(0 == unpack_frame(&frame, acc.buf, acc.length)); in test_nghttp2_submit_response_without_data() 5703 CU_ASSERT(0 == unpack_frame(&frame, acc.buf, acc.length)); in test_nghttp2_submit_trailer() 5889 CU_ASSERT(0 == unpack_frame(&frame, acc.buf, acc.length)); in test_nghttp2_submit_headers()
|
Completed in 21 milliseconds