Home
last modified time | relevance | path

Searched refs:yuv_file (Results 1 – 3 of 3) 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/vp8/encoder/
Donyx_if.c85 FILE *yuv_file; variable
1931 yuv_file = fopen("bd.yuv", "ab"); in vp8_create_compressor()
2296 fclose(yuv_file); in vp8_remove_compressor()
2478 void vp8_write_yuv_frame(FILE *yuv_file, YV12_BUFFER_CONFIG *s) { in vp8_write_yuv_frame() argument
2483 fwrite(src, s->y_width, 1, yuv_file); in vp8_write_yuv_frame()
2491 fwrite(src, s->uv_width, 1, yuv_file); in vp8_write_yuv_frame()
2499 fwrite(src, s->uv_width, 1, yuv_file); in vp8_write_yuv_frame()
3864 vp8_write_yuv_frame(yuv_file, cpi->Source); in encode_frame_to_data_rate()