Searched refs:gf_group_bits (Results 1 - 9 of 9) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_firstpass.h72 int64_t gf_group_bits; member in struct:twopass_rc
H A Dvp9_firstpass.c1439 twopass->gf_group_bits = 0;
1648 twopass->gf_group_bits = (int64_t)(twopass->kf_group_bits *
1651 twopass->gf_group_bits = 0;
1653 twopass->gf_group_bits = (twopass->gf_group_bits < 0) ?
1654 0 : (twopass->gf_group_bits > twopass->kf_group_bits) ?
1655 twopass->kf_group_bits : twopass->gf_group_bits;
1657 // Clip cpi->twopass.gf_group_bits based on user supplied data rate
1659 if (twopass->gf_group_bits > (int64_t)max_bits * rc->baseline_gf_interval)
1660 twopass->gf_group_bits
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dfirstpass.c1770 cpi->twopass.gf_group_bits = 0;
2122 cpi->twopass.gf_group_bits =
2127 cpi->twopass.gf_group_bits = 0;
2129 cpi->twopass.gf_group_bits =
2130 (cpi->twopass.gf_group_bits < 0)
2132 : (cpi->twopass.gf_group_bits > cpi->twopass.kf_group_bits)
2133 ? cpi->twopass.kf_group_bits : cpi->twopass.gf_group_bits;
2135 /* Clip cpi->twopass.gf_group_bits based on user supplied data rate
2138 if (cpi->twopass.gf_group_bits >
2140 cpi->twopass.gf_group_bits
[all...]
H A Donyx_int.h598 int64_t gf_group_bits; member in struct:VP8_COMP::twopass_rc
H A Donyx_if.c4813 cpi->twopass.gf_group_bits += cpi->this_frame_target - cpi->projected_frame_size;
4815 if (cpi->twopass.gf_group_bits < 0)
4816 cpi->twopass.gf_group_bits = 0 ;
/external/libvpx/libvpx/vp8/encoder/
H A Dfirstpass.c1770 cpi->twopass.gf_group_bits = 0;
2122 cpi->twopass.gf_group_bits =
2127 cpi->twopass.gf_group_bits = 0;
2129 cpi->twopass.gf_group_bits =
2130 (cpi->twopass.gf_group_bits < 0)
2132 : (cpi->twopass.gf_group_bits > cpi->twopass.kf_group_bits)
2133 ? cpi->twopass.kf_group_bits : cpi->twopass.gf_group_bits;
2135 /* Clip cpi->twopass.gf_group_bits based on user supplied data rate
2138 if (cpi->twopass.gf_group_bits >
2140 cpi->twopass.gf_group_bits
[all...]
H A Donyx_int.h599 int64_t gf_group_bits; member in struct:VP8_COMP::twopass_rc
H A Donyx_if.c4597 cpi->twopass.gf_group_bits += cpi->this_frame_target - cpi->projected_frame_size;
4599 if (cpi->twopass.gf_group_bits < 0)
4600 cpi->twopass.gf_group_bits = 0 ;
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_firstpass.c1391 static void allocate_gf_group_bits(VP9_COMP *cpi, int64_t gf_group_bits, argument
1403 int64_t total_group_bits = gf_group_bits;
1583 int64_t gf_group_bits; local
1742 gf_group_bits = calculate_total_gf_group_bits(cpi, gf_group_err);
1755 boost, gf_group_bits);
1776 allocate_gf_group_bits(cpi, gf_group_bits, gf_group_error_left, gf_arf_bits);

Completed in 2955 milliseconds