Searched refs:TRUE (Results 26 - 50 of 79) sorted by relevance

1234

/frameworks/av/media/libstagefright/codecs/amrnb/common/include/
H A Dvad2.h89 #define TRUE 1 macro
/frameworks/av/media/libmedia/
H A DMediaScannerClient.cpp182 &source, (const char *)dest, NULL, NULL, NULL, NULL, TRUE, TRUE, &status);
/frameworks/av/media/libstagefright/codecs/avc/common/src/
H A Ddpb.cpp370 video->currPic->isReference = TRUE;
381 video->currPic->isLongTerm = TRUE;
399 video->mem_mgr_ctrl_eq_5 = TRUE; /* flush reference frames MC_FIX */
403 if (video->currPic->isReference == TRUE)
629 dpb->fs[ii]->frame.isLongTerm = TRUE;
674 video->mem_mgr_ctrl_eq_5 = TRUE;
685 video->currPic->isLongTerm = TRUE;
686 video->currPic->isReference = TRUE;
/frameworks/base/core/jni/android/graphics/
H A DYuvToJpegEncoder.cpp41 jpeg_start_compress(&cinfo, TRUE);
58 jpeg_set_quality(cinfo, quality, TRUE);
60 cinfo->raw_data_in = TRUE;
/frameworks/av/media/libstagefright/codecs/aacdec/
H A Dpvmp4audiodecoderframe.cpp601 pVars->prog_config.file_is_adts = TRUE;
639 if (pVars->prog_config.file_is_adts == TRUE)
680 empty_frame = TRUE;
700 leaveGetLoop = TRUE;
799 if (empty_frame == TRUE)
965 TRUE, /* TRUE is FIR */
1423 if (pVars->prog_config.file_is_adts == TRUE)
H A Dget_adts_header.cpp239 TRUE);
533 if ((pVars->prog_config.sampling_rate_idx >= 6) && (pVars->aacPlusEnabled == TRUE))
564 * TRUE);
/frameworks/base/core/java/android/hardware/
H A DCamera.java1642 private static final String TRUE = "true"; field in class:Camera.Parameters
3021 set(KEY_AUTO_EXPOSURE_LOCK, toggle ? TRUE : FALSE);
3037 return TRUE.equals(str);
3051 return TRUE.equals(str);
3091 set(KEY_AUTO_WHITEBALANCE_LOCK, toggle ? TRUE : FALSE);
3109 return TRUE.equals(str);
3123 return TRUE.equals(str);
3160 return TRUE.equals(str);
3198 return TRUE.equals(str);
3405 set(KEY_RECORDING_HINT, hint ? TRUE
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dmp4def.h38 #define TRUE 1 macro
H A Dbitstream.cpp795 while (TRUE)
886 while (TRUE)
962 while (TRUE)
H A Dcombined_decode.cpp273 while (TRUE);
330 while (TRUE);
364 mb_coded = ((VopType == I_VOP) ? TRUE : !BitstreamRead1Bits_INLINE(stream));
H A Dvop.cpp252 video->shortVideoHeader = TRUE;
704 video->shortVideoHeader = TRUE;
825 // use_ext_timestamp = TRUE; /* 02/08/2002 */
1131 extended_PTYPE = TRUE;
1214 custom_PFMT = TRUE;
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmp4def.h110 #define TRUE 1 macro
/frameworks/base/core/java/android/widget/
H A DRelativeLayout.java76 public static final int TRUE = -1; field in class:RelativeLayout
1084 @ViewDebug.IntToString(from = TRUE, to = "true"),
1141 rules[ALIGN_PARENT_LEFT] = a.getBoolean(attr, false) ? TRUE : 0;
1144 rules[ALIGN_PARENT_TOP] = a.getBoolean(attr, false) ? TRUE : 0;
1147 rules[ALIGN_PARENT_RIGHT] = a.getBoolean(attr, false) ? TRUE : 0;
1150 rules[ALIGN_PARENT_BOTTOM] = a.getBoolean(attr, false) ? TRUE : 0;
1153 rules[CENTER_IN_PARENT] = a.getBoolean(attr, false) ? TRUE : 0;
1156 rules[CENTER_HORIZONTAL] = a.getBoolean(attr, false) ? TRUE : 0;
1159 rules[CENTER_VERTICAL] = a.getBoolean(attr, false) ? TRUE : 0;
1194 * (e.g., CENTER_IN_PARENT) or take a boolean value ({@link RelativeLayout#TRUE}
[all...]
/frameworks/av/include/camera/
H A DCameraParameters.h529 static const char TRUE[]; member in class:android::CameraParameters
/frameworks/base/media/libdrm/mobile1/src/objmng/
H A Ddrm_api.c290 return TRUE;
322 return TRUE;
688 /* If the flag is TRUE, this means: we have found a valid RO, so break, no need to check other RO */
955 bFoundBoundary = TRUE;
960 bFoundBoundary = TRUE;
1013 bFoundBoundary = TRUE;
1018 bFoundBoundary = TRUE;
1067 if (TRUE == drm_getKey(s->contentID, keyValue)) {
1071 if (TRUE == drm_updateDcfDataLen(lastDcfBuf, keyValue, &moreBytes)) {
1245 if (TRUE
[all...]
/frameworks/base/media/libdrm/mobile1/src/parser/
H A Dparser_dcf.c124 return TRUE;
H A Dparser_dm.c270 return TRUE;
/frameworks/base/core/java/android/util/
H A DJsonReader.java178 private static final String TRUE = "true"; field in class:JsonReader
429 boolean result = (value == TRUE);
1081 value = TRUE;
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Drate_control.cpp147 if (rateCtrl->rcEnable == TRUE)
186 if (rateCtrl->rcEnable == TRUE)
342 if (rateCtrl->rcEnable == TRUE)
771 if (rateCtrl->rcEnable == TRUE)
805 if (rateCtrl->rcEnable == TRUE)
H A Davcenc_api.cpp240 if (encvid->outOfBandParamSet == TRUE)
338 if (encvid->outOfBandParamSet == TRUE)
431 if (encvid->outOfBandParamSet == TRUE) // already extract PPS, SPS
H A Dintra_est.cpp744 availability.left = TRUE;
745 availability.top = TRUE;
765 if (availability.top == TRUE)
778 if (availability.top_right == TRUE)
791 if (availability.left == TRUE)
811 top_left = TRUE;
1015 if (top_left == TRUE)
1195 if (mode_avail[ipmode] == TRUE)
1887 currMB->mb_intra = TRUE;
2114 currMB->mb_intra = TRUE;
[all...]
/frameworks/av/media/libstagefright/codecs/avc/common/include/
H A Davcint_common.h32 #ifndef TRUE
33 #define TRUE 1 macro
/frameworks/base/core/jni/
H A DBindTest.cpp54 RETURN_BOOLEAN (TRUE);
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DVideoEditorVideoDecoder.cpp806 VIDEOEDITOR_CHECK(TRUE == success, M4ERR_PARAMETER);
808 VIDEOEDITOR_CHECK(TRUE == success, M4ERR_PARAMETER);
928 bool success = TRUE;
1044 VIDEOEDITOR_CHECK(TRUE == success, M4ERR_PARAMETER);
1096 bool success = TRUE;
1206 VIDEOEDITOR_CHECK(TRUE == success, M4ERR_PARAMETER);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
H A DarmCOMM_s.h102 ;// Set to TRUE variants that are supported
133 $_Variant SETL {TRUE}
146 $var SETL {TRUE}
230 _SwLong SETL {TRUE}
621 _InFunc SETL {TRUE}

Completed in 1698 milliseconds

1234