Home
last modified time | relevance | path

Searched refs:yuv_file (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/webrtc/tools/barcode_tools/
Dyuv_cropper.py15 def _crop_one_frame(yuv_file, output_file, component_sizes): argument
35 yuv_plane = yuv_file.read(comp_width)
67 yuv_file = open(yuv_file_name, 'rb')
72 data_left = _crop_one_frame(yuv_file, output_file, component_sizes)
74 yuv_file.close()
99 if not options.yuv_file:
114 if os.path.getsize(options.yuv_file) == 0:
119 crop_frames(options.yuv_file, options.output_file, options.width,
Dbarcode_decoder.py271 if not convert_yuv_to_png_files(options.yuv_file, options.yuv_frame_width,
/external/libvpx/libvpx/vpx_util/
Dvpx_write_yuv_frame.c14 void vpx_write_yuv_frame(FILE *yuv_file, YV12_BUFFER_CONFIG *s) { in vpx_write_yuv_frame() argument
22 fwrite(src, s->y_width, 1, yuv_file); in vpx_write_yuv_frame()
30 fwrite(src, s->uv_width, 1, yuv_file); in vpx_write_yuv_frame()
38 fwrite(src, s->uv_width, 1, yuv_file); in vpx_write_yuv_frame()
43 (void)yuv_file; in vpx_write_yuv_frame()
Dvpx_write_yuv_frame.h21 void vpx_write_yuv_frame(FILE *yuv_file, YV12_BUFFER_CONFIG *s);
/external/libaom/libaom/test/
Dlightfield_test.sh36 local yuv_file="${LIBAOM_TEST_DATA_PATH}/vase10x10.yuv"
44 "${yuv_file}" "${lf_file}" "${lf_width}" \
/external/libvpx/libvpx/vp8/encoder/
Donyx_if.c82 FILE *yuv_file; variable
1953 yuv_file = fopen("bd.yuv", "ab"); in vp8_create_compressor()
2278 fclose(yuv_file); in vp8_remove_compressor()
3822 vpx_write_yuv_frame(yuv_file, cpi->Source); in encode_frame_to_data_rate()