HomeSort by relevance Sort by last modified time
    Searched refs:nextScale (Results 1 - 8 of 8) sorted by null

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
ScalingList.java 47 int nextScale = 8;
49 if (nextScale != 0) {
63 int nextScale = 8;
65 if (nextScale != 0) {
67 nextScale = (lastScale + deltaScale + 256) % 256;
68 sl.useDefaultScalingMatrixFlag = (j == 0 && nextScale == 0);
70 sl.scalingList[j] = nextScale == 0 ? lastScale : nextScale;
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
MagnificationService.java 120 final float nextScale = Math.max(1f, Math.min(5f, currScale + increment));
121 if (nextScale == currScale) {
127 controller.setScale(nextScale, true /* animate */);
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
h264parse.c 28 int32_t delta_scale, lastScale, nextScale;
44 nextScale = 8;
51 if(nextScale!=0)
54 nextScale = (lastScale + delta_scale + 256) % 256;
55 *UseDefaultScalingMatrix = (uint8_t) (scanj==0 && nextScale==0);
58 scalingList[scanj] = (nextScale==0) ? lastScale:nextScale;
  /frameworks/av/media/libstagefright/foundation/
avc_utils.cpp 79 size_t nextScale = 8;
81 if (nextScale != 0) {
92 nextScale = (lastScale + (delta_scale + 256)) % 256;
95 lastScale = (nextScale == 0) ? lastScale : nextScale;
  /external/mesa3d/src/gallium/state_trackers/omx/
vid_dec_h264.c 223 unsigned lastScale = 8, nextScale = 8;
237 if (nextScale != 0) {
239 nextScale = (lastScale + delta_scale + 256) % 256;
240 if (i == 0 && nextScale == 0) {
245 scalingList[list[i]] = nextScale == 0 ? lastScale : nextScale;
    [all...]
  /hardware/intel/common/wrs_omxil_core/core/src/
intel_m4v_config_parser.cpp 913 uint32 nextScale = 8;
918 if(nextScale != 0) {
921 nextScale = ( lastScale + delta_scale + 256 ) % 256 ;
923 lastScale = ( nextScale == 0 ) ? lastScale : nextScale;
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
DirectoryFragment.java 575 float nextScale = mLiveScale * scale;
578 "Next scale " + nextScale + ", Min/max scale " + minScale + "/" + maxScale);
580 if (nextScale > minScale && nextScale < maxScale) {
582 mLiveScale = nextScale;
    [all...]
  /developers/build/prebuilts/androidtv/sample-inputs/app/libs/
exoplayer_dev-hls_20150123.jar 

Completed in 230 milliseconds