Searched defs:pass (Results 1 - 18 of 18) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
H A Dvpxstats.h23 * first pass statistics
27 int pass; member in struct:__anon671
33 int stats_open_file(stats_io_t *stats, const char *fpf, int pass);
34 int stats_open_mem(stats_io_t *stats, int pass);
H A Dvpxstats.c19 int stats_open_file(stats_io_t *stats, const char *fpf, int pass) { argument
21 stats->pass = pass;
23 if (pass == 0) {
45 fatal("First-pass stats file must be seekable!");
53 fatal("Failed to allocate first-pass stats buffer (%lu bytes)",
64 int stats_open_mem(stats_io_t *stats, int pass) { argument
66 stats->pass = pass;
68 if (!pass) {
[all...]
H A Dvpxenc.h31 int pass; member in struct:VpxEncoderConfig
H A Dvpxenc.c187 static const arg_def_t pass_arg = ARG_DEF(NULL, "pass", 1,
190 "First pass statistics file name");
679 global->pass = arg_parse_uint(&arg);
681 if (global->pass < 1 || global->pass > 2)
682 die("Error: Invalid pass selected (%d)\n",
683 global->pass);
732 if (global->pass) {
733 /* DWIM: Assume the user meant passes=2 if pass=2 is specified */
734 if (global->pass > globa
1196 setup_pass(struct stream_state *stream, struct VpxEncoderConfig *global, int pass) argument
1515 int pass; local
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
H A Daltref_test.cc32 virtual void BeginPassHook(unsigned int pass) { argument
H A Dencode_test_driver.h86 // Provides a simplified interface to manage one video encoding pass, given
191 // Hook to be called at the beginning of a pass.
192 virtual void BeginPassHook(unsigned int pass) {} argument
194 // Hook to be called at the end of a pass.
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
H A Dtwopass_encoder.c14 // This is an example of a two pass encoder loop. It takes an input file in
20 // Twopass mode needs to track the current pass number and the buffer of
25 // In two pass mode, the configuration has to be updated on each pass. The
26 // statistics buffer is passed on the last pass.
30 // Encoding a frame in two pass mode is identical to the simple encoder
43 // It's sometimes helpful to see when each pass completes.
48 // Destruction of the encoder instance must be done on each pass. The
132 int pass; local
183 for (pass
[all...]
H A Dvp9_spatial_scalable_encoder.c67 ARG_DEF(NULL, "pass", 1, "Pass to execute (1/2)");
69 ARG_DEF(NULL, "fpf", 1, "First pass statistics file name");
108 int pass; member in struct:__anon443
130 int pass = 0; local
194 pass = arg_parse_uint(&arg);
195 if (pass < 1 || pass > 2) {
196 die("Error: Invalid pass selected (%d)\n", pass);
214 if (pass) {
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_dct.c50 // as the first pass results are transposed, we transpose the columns (that
53 int pass; local
59 for (pass = 0; pass < 2; ++pass) {
66 if (0 == pass) {
93 // Do next column (which is a transposed row in second/horizontal pass)
97 // Setup in/out for next pass.
318 // as the first pass results are transposed, we transpose the columns (that
321 int pass; local
[all...]
H A Dvp9_onyx_if.c756 static void init_rate_control(const VP9_CONFIG *oxcf, int pass, argument
758 if (pass == 0 && oxcf->end_usage == USAGE_STREAM_FROM_SERVER) {
842 // Real time and one pass deprecated in test code base
844 cpi->pass = 0;
849 cpi->pass = 0;
853 cpi->pass = 1;
857 cpi->pass = 2;
862 cpi->pass = 2;
866 cpi->pass = 0;
968 (cpi->svc.number_spatial_layers > 1 && cpi->pass
[all...]
H A Dvp9_onyx_int.h154 // for use in the second encoding pass. (speed setting controls how fast)
158 // generated in the first encoding pass to create the compressed
163 // were generated in the first encoding pass to create the compressed
238 // two pass datarate control
239 int two_pass_vbrbias; // two pass datarate control tweaks
403 int pass; member in struct:VP9_COMP
412 // Default value is 1. From first pass stats, encode_breakout may be disabled.
/hardware/ti/omap4-aah/domx/test/sample_proxy/
H A Dtest_sample_proxy.c996 int pass; local
1176 pass = 1;
1181 pass = 0;
1193 pass = 0;
1205 if (pass == 1)
/hardware/ti/omap4xxx/domx/test/sample_proxy/
H A Dtest_sample_proxy.c996 int pass; local
1176 pass = 1;
1181 pass = 0;
1193 pass = 0;
1205 if (pass == 1)
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/x86/
H A Dvp9_dct_avx2.c19 // as the first pass results are transposed, we transpose the columns (that
22 int pass; local
61 for (pass = 0; pass < 2; ++pass) {
96 if (0 == pass) {
97 // Extract values in the high part for second pass as transform code
280 int pass; local
314 // first pass are transposed so that the same column code can be reused. The
315 // results of the second pass ar
1077 int pass; local
[all...]
H A Dvp9_dct_sse2.c381 int pass; local
415 // first pass are transposed so that the same column code can be reused. The
416 // results of the second pass are also transposed so that the rows (processed
418 for (pass = 0; pass < 2; pass++) {
419 // To store results of each pass before the transpose.
1175 // as the first pass results are transposed, we transpose the columns (that
1178 int pass; local
1207 for (pass
[all...]
H A Dvp9_dct32x32_avx2.c92 int pass; local
93 for (pass = 0; pass < 2; ++pass) {
94 // We process sixteen columns (transposed rows in second pass) at a time.
104 if (0 == pass) {
401 if (1 == pass) {
537 if (pass == 0) {
2578 if (0 == pass){
2644 if (0 == pass) {
[all...]
H A Dvp9_dct32x32_sse2.c83 int pass; local
84 for (pass = 0; pass < 2; ++pass) {
85 // We process eight columns (transposed rows in second pass) at a time.
95 if (0 == pass) {
392 if (1 == pass) {
528 if (pass == 0) {
2569 if (0 == pass) {
2632 if (0 == pass) {
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
H A Donyx_int.h461 /* Experimental code for lagged and one pass */
479 int pass; member in struct:VP8_COMP

Completed in 2695 milliseconds