HomeSort by relevance Sort by last modified time
    Searched refs:SVC (Results 1 - 25 of 28) sorted by null

1 2

  /external/libvpx/libvpx/vp9/encoder/
vp9_svc_layercontext.h 44 } SVC;
70 // Initialize second pass rc for spatial svc.
74 void vp9_inc_frame_in_layer(SVC *svc);
vp9_svc_layercontext.c 17 SVC *const svc = &cpi->svc; local
22 svc->spatial_layer_id = 0;
23 svc->temporal_layer_id = 0;
25 if (svc->number_temporal_layers > 1) {
26 layer_end = svc->number_temporal_layers;
28 layer_end = svc->number_spatial_layers;
32 LAYER_CONTEXT *const lc = &svc->layer_context[layer];
48 if (svc->number_temporal_layers > 1)
67 SVC *const svc = &cpi->svc; local
120 SVC *const svc = &cpi->svc; local
204 SVC *const svc = &cpi->svc; local
    [all...]
vp9_onyx_int.h 497 SVC svc; member in struct:VP9_COMP
vp9_ratectrl.c 146 static void update_layer_buffer_level(SVC *svc, int encoded_frame_size) {
148 int current_temporal_layer = svc->temporal_layer_id;
150 temporal_layer < svc->number_temporal_layers; ++temporal_layer) {
151 LAYER_CONTEXT *lc = &svc->layer_context[temporal_layer];
181 update_layer_buffer_level(&cpi->svc, encoded_frame_size);
1231 const SVC *const svc = &cpi->svc; local
    [all...]
vp9_firstpass.c 261 const SVC *const svc = &cpi->svc; local
266 if (svc->number_spatial_layers > 1 &&
267 svc->number_temporal_layers == 1) {
268 twopass = &svc->layer_context[svc->spatial_layer_id].twopass;
355 if (cpi->use_svc && cpi->svc.number_temporal_layers == 1) {
357 for (i = 0; i < cpi->svc.number_spatial_layers; ++i) {
358 output_stats(&cpi->svc.layer_context[i].twopass.total_stats
942 SVC *const svc = &cpi->svc; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_svc_layercontext.h 44 } SVC;
70 // Initialize second pass rc for spatial svc.
vp9_onyx_int.h 499 SVC svc; member in struct:VP9_COMP
vp9_svc_layercontext.c 21 cpi->svc.spatial_layer_id = 0;
22 cpi->svc.temporal_layer_id = 0;
24 if (cpi->svc.number_temporal_layers > 1) {
25 layer_end = cpi->svc.number_temporal_layers;
27 layer_end = cpi->svc.number_spatial_layers;
31 LAYER_CONTEXT *const lc = &cpi->svc.layer_context[layer];
47 if (cpi->svc.number_temporal_layers > 1) {
72 if (cpi->svc.number_temporal_layers > 1) {
73 layer_end = cpi->svc.number_temporal_layers;
75 layer_end = cpi->svc.number_spatial_layers
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_svc_layercontext.h 61 } SVC;
87 // Initialize second pass rc for spatial svc.
101 // Start a frame and initialize svc parameters
vp9_svc_layercontext.c 18 SVC *const svc = &cpi->svc; local
22 int alt_ref_idx = svc->number_spatial_layers;
24 svc->spatial_layer_id = 0;
25 svc->temporal_layer_id = 0;
27 if (svc->number_temporal_layers > 1 && cpi->oxcf.rc_mode == VPX_CBR) {
28 layer_end = svc->number_temporal_layers;
30 layer_end = svc->number_spatial_layers;
34 LAYER_CONTEXT *const lc = &svc->layer_context[layer]
88 SVC *const svc = &cpi->svc; local
141 SVC *const svc = &cpi->svc; local
205 SVC *const svc = &cpi->svc; local
    [all...]
vp9_encoder.h 382 SVC svc; member in struct:VP9_COMP
503 (cpi->svc.number_temporal_layers > 1 ||
504 cpi->svc.number_spatial_layers > 1) &&
512 cpi->oxcf.ss_play_alternate[cpi->svc.spatial_layer_id]));
vp9_ratectrl.c 227 static void update_layer_buffer_level(SVC *svc, int encoded_frame_size) {
229 int current_temporal_layer = svc->temporal_layer_id;
231 temporal_layer < svc->number_temporal_layers; ++temporal_layer) {
232 LAYER_CONTEXT *lc = &svc->layer_context[temporal_layer];
261 update_layer_buffer_level(&cpi->svc, encoded_frame_size);
1308 const SVC *const svc = &cpi->svc; local
1338 const SVC *const svc = &cpi->svc; local
    [all...]
vp9_firstpass.c 253 for (i = 0; i < cpi->svc.number_spatial_layers; ++i) {
254 output_stats(&cpi->svc.layer_context[i].twopass.total_stats,
428 &cpi->svc.layer_context[cpi->svc.spatial_layer_id] : NULL;
444 cpi->lst_fb_idx = cpi->svc.spatial_layer_id;
447 if (cpi->svc.number_spatial_layers + cpi->svc.spatial_layer_id <
450 cpi->svc.number_spatial_layers + cpi->svc.spatial_layer_id;
843 fps.spatial_layer_id = cpi->svc.spatial_layer_id
1006 SVC *const svc = &cpi->svc; local
    [all...]
vp9_encoder.c 212 for (i = 0; i < cpi->svc.number_spatial_layers; ++i) {
213 LAYER_CONTEXT *const lc = &cpi->svc.layer_context[i];
225 vp9_free_frame_buffer(&cpi->svc.scaled_frames[i]);
227 vpx_memset(&cpi->svc.scaled_frames[0], 0,
228 MAX_LAG_BUFFERS * sizeof(cpi->svc.scaled_frames[0]));
571 cpi->svc.number_spatial_layers = oxcf->ss_number_layers;
573 cpi->svc.number_temporal_layers = oxcf->ts_number_layers;
575 if ((cpi->svc.number_temporal_layers > 1 && cpi->oxcf.rc_mode == VPX_CBR) ||
576 ((cpi->svc.number_temporal_layers > 1 ||
577 cpi->svc.number_spatial_layers > 1) &
2014 const SVC *const svc = &cpi->svc; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/
examples.mk 103 vp9_spatial_svc_encoder.DESCRIPTION = VP9 Spatial SVC Encoder
116 vpx_temporal_svc_encoder.DESCRIPTION = Temporal SVC Encoder
  /external/llvm/test/MC/ARM/
thumb-diagnostics.s 138 @ Out of range immediate for SVC instruction.
139 svc #-1
140 svc #256
142 @ CHECK-ERRORS: svc #-1
145 @ CHECK-ERRORS: svc #256
basic-thumb-instructions.s 628 @ SVC
630 svc #0
631 svc #255
633 @ CHECK: svc #0 @ encoding: [0x00,0xdf]
634 @ CHECK: svc #255 @ encoding: [0xff,0xdf]
diagnostics.s 291 @ Out of range immediate on SVC
292 svc #0x1000000
294 @ CHECK-ERRORS: svc #0x1000000
  /external/chromium_org/v8/src/arm64/
disasm-arm64.cc     [all...]
constants-arm64.h 681 SVC = ExceptionFixed | 0x00000001,
    [all...]
  /external/vixl/src/a64/
disasm-a64.cc     [all...]
constants-a64.h 571 SVC = ExceptionFixed | 0x00000001,
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/
vp9_cx_iface.c 190 ERROR("Not enough ref buffers for svc alt ref frames");
822 || (is_two_pass_svc(cpi) && cpi->svc.layer_context[0].is_key_frame)
1182 SVC *const svc = &cpi->svc; local
    [all...]
  /external/libvpx/libvpx/vp9/
vp9_cx_iface.c 1032 SVC *const svc = &cpi->svc; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
vp9_cx_iface.c 1032 SVC *const svc = &cpi->svc; local
    [all...]

Completed in 716 milliseconds

1 2