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

/external/chromium_org/third_party/webrtc/tools/barcode_tools/
H A Dyuv_cropper.py15 def _crop_one_frame(yuv_file, output_file, component_sizes):
22 yuv_file(file): The opened (for binary reading) YUV file.
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()
93 parser.add_option('--yuv_file', type='string',
99 if not options.yuv_file:
100 parser.error('yuv_file argument missing. Please specify input YUV file!')
109 --yuv_file
[all...]
H A Dbarcode_decoder.py245 parser.add_option('--yuv_file', type='string', default='output.yuv',
264 --yuv_file=<path_and_name_of_overlaid_yuv_video>
271 if not convert_yuv_to_png_files(options.yuv_file, options.yuv_frame_width,
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decoder.c40 FILE *yuv_file = fopen(name, "ab"); local
45 fwrite(src, w, 1, yuv_file);
54 fwrite(src, w, 1, yuv_file);
62 fwrite(src, w, 1, yuv_file);
66 fclose(yuv_file);
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Donyx_if.c99 FILE *yuv_file; variable
2006 yuv_file = fopen("bd.yuv", "ab");
2459 fclose(yuv_file);
2665 void vp8_write_yuv_frame(FILE *yuv_file, YV12_BUFFER_CONFIG *s) argument
2672 fwrite(src, s->y_width, 1, yuv_file);
2682 fwrite(src, s->uv_width, 1, yuv_file);
2692 fwrite(src, s->uv_width, 1, yuv_file);
4088 vp8_write_yuv_frame(yuv_file, cpi->Source);
/external/libvpx/libvpx/vp8/encoder/
H A Donyx_if.c99 FILE *yuv_file; variable
1959 yuv_file = fopen("bd.yuv", "ab");
2408 fclose(yuv_file);
2613 FILE *yuv_file = fopen(name, "ab"); local
2619 fwrite(src, s->y_width, 1, yuv_file);
2629 fwrite(src, s->uv_width, 1, yuv_file);
2639 fwrite(src, s->uv_width, 1, yuv_file);
2644 fclose(yuv_file);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_onyx_if.c72 FILE *yuv_file; variable
1252 yuv_file = fopen("bd.yuv", "ab");
1553 fclose(yuv_file);
1739 fwrite(src, s->y_width, 1, yuv_file);
1747 fwrite(src, s->uv_width, 1, yuv_file);
1755 fwrite(src, s->uv_width, 1, yuv_file);

Completed in 369 milliseconds