OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:yuv_file
(Results
1 - 5
of
5
) sorted by null
/external/libvpx/libvpx/vpx_util/
vpx_write_yuv_frame.c
14
void vpx_write_yuv_frame(FILE *
yuv_file
, YV12_BUFFER_CONFIG *s) {
22
fwrite(src, s->y_width, 1,
yuv_file
);
30
fwrite(src, s->uv_width, 1,
yuv_file
);
38
fwrite(src, s->uv_width, 1,
yuv_file
);
43
(void)
yuv_file
;
vpx_write_yuv_frame.h
21
void vpx_write_yuv_frame(FILE *
yuv_file
, YV12_BUFFER_CONFIG *s);
/external/webrtc/webrtc/tools/barcode_tools/
yuv_cropper.py
15
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
=<path_and_name_of_yuv_file
[
all
...]
/external/libaom/libaom/test/
lightfield_test.sh
36
local
yuv_file
="${LIBAOM_TEST_DATA_PATH}/vase10x10.yuv"
44
"${
yuv_file
}" "${lf_file}" "${lf_width}" \
/external/libvpx/libvpx/vp8/encoder/
onyx_if.c
82
FILE *
yuv_file
;
variable
[
all
...]
Completed in 5013 milliseconds