/frameworks/av/libvideoeditor/vss/common/inc/ |
M4ENCODER_AudioCommon.h | 142 * @brief The current mode of the bitrate regulation. 147 M4ENCODER_kAacRegulNone = 0, /**< no bitrate regulation */ 188 M4ENCODER_AudioBitrate Bitrate; /**< bitrate, see enum */
|
M4ENCODER_common.h | 75 M4ENCODER_kVARIABLE_FPS, /**< Variable video bitrate */ 265 M4ENCODER_Bitrate Bitrate; /**< Bitrate, see enum */ 291 M4OSA_UInt32 Bitrate; /**< Free value for the bitrate */ 332 M4OSA_UInt32 Quality; /**< Bitrate, see enum */
|
/frameworks/base/media/java/android/media/videoeditor/ |
MediaArtistNativeHelper.java | 252 public final class Bitrate { 253 /** Variable bitrate. Means no bitrate regulation */ 256 /** An undefined bitrate. */ 259 /** A bitrate of 9.2 kbits/s. */ 262 /** A bitrate of 12.2 kbits/s. */ 265 /** A bitrate of 16 kbits/s. */ 268 /** A bitrate of 24 kbits/s. */ 271 /** A bitrate of 32 kbits/s. */ 274 /** A bitrate of 48 kbits/s. * [all...] |
VideoEditorImpl.java | 338 public void export(String filename, int height, int bitrate, 377 switch (bitrate) { 406 final String message = "Unsupported bitrate value " + bitrate; 411 final long audioBitrate = MediaArtistNativeHelper.Bitrate.BR_96_KBPS; 412 final long fileSize = (mDurationMs * (bitrate + audioBitrate)) / 8000; 457 mMANativeHelper.export(filename, mProjectPath, height,bitrate, 471 public void export(String filename, int height, int bitrate, 477 export(filename, height, bitrate, defaultAudiocodec, [all...] |
/frameworks/av/libvideoeditor/vss/src/ |
M4VSS3GPP_EditAudio.c | [all...] |
M4PTO3GPP_API.c | 320 * Video Bitrate */ 339 M4OSA_TRACE1_0("M4PTO3GPP_Open: Undefined output video bitrate"); [all...] |
M4VSS3GPP_EditVideo.c | [all...] |
M4VSS3GPP_AudioMixing.c | [all...] |
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/ |
VideoEditorAudioEncoder.cpp | 370 pParams->Frequency, pParams->ChannelNum, pParams->Bitrate, 376 pEncoderContext->mCodecParams->Bitrate = pParams->Bitrate; 410 (int32_t)pEncoderContext->mCodecParams->Bitrate);
|
VideoEditorVideoEncoder.cpp | 597 pEncoderContext->mCodecParams->Bitrate = pCodecParams->Bitrate; 637 ALOGV("Encoder w %d, h %d, bitrate %d, fps %d", 640 pEncoderContext->mCodecParams->Bitrate, 688 (int32_t)pEncoderContext->mCodecParams->Bitrate); [all...] |
/hardware/samsung_slsi/exynos5/exynos_omx/codecs/exynos_codecs/video/exynos5/mfc_v4l2/include/ |
ExynosVideoApi.h | 153 int Bitrate; /* [IN] rate control parameter(bit rate) */ 247 ExynosVideoErrorType (*Set_BitRate)(void *pHandle, int bitRate);
|
/frameworks/base/media/jni/mediaeditor/ |
VideoEditorClasses.h | 52 #define BITRATE_CLASS_NAME MANUAL_EDIT_ENGINE_CLASS_NAME"$Bitrate" 285 VIDEOEDIT_JAVA_DECLARE_CONSTANT_CLASS(Bitrate )
|
VideoEditorClasses.cpp | 99 videoEditClasses_getUnknownBitrateString(int bitrate) 103 M4OSA_chrSPrintf((M4OSA_Char *)string, sizeof(string) - 1, (M4OSA_Char*)"%d", bitrate); 105 // Return the bitrate string. 109 VIDEOEDIT_JAVA_DEFINE_CONSTANTS(Bitrate) 135 VIDEOEDIT_JAVA_DEFINE_CONSTANT_CLASS(Bitrate, BITRATE_CLASS_NAME, [all...] |
/frameworks/av/libvideoeditor/vss/mcs/src/ |
M4MCS_API.c | 129 M4OSA_Int32 level, M4OSA_Int32 bitrate); 131 M4OSA_Int32 level, M4OSA_Int32 bitrate); 133 M4OSA_Int32 level, M4OSA_Int32 bitrate); [all...] |
/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/video/enc/mpeg4/ |
Exynos_OMX_Mpeg4enc.c | 148 Exynos_OSAL_Log(EXYNOS_LOG_TRACE, "Bitrate : %d", pCommonParam->Bitrate); 186 Exynos_OSAL_Log(EXYNOS_LOG_TRACE, "Bitrate : %d", pCommonParam->Bitrate); 235 pCommonParam->Bitrate = pExynosOutputPort->portDefinition.format.video.nBitrate; 343 pCommonParam->Bitrate = pExynosOutputPort->portDefinition.format.video.nBitrate; 450 if (pCommonParam->Bitrate != (int)pExynosOutputPort->portDefinition.format.video.nBitrate) { 497 if (pCommonParam->Bitrate != (int)pExynosOutputPort->portDefinition.format.video.nBitrate) { [all...] |
/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/video/enc/h264/ |
Exynos_OMX_H264enc.c | 178 Exynos_OSAL_Log(EXYNOS_LOG_TRACE, "Bitrate : %d", pCommonParam->Bitrate); 244 pCommonParam->Bitrate = pExynosOutputPort->portDefinition.format.video.nBitrate; 369 if (pCommonParam->Bitrate != (int)pExynosOutputPort->portDefinition.format.video.nBitrate) { [all...] |
/hardware/samsung_slsi/exynos5/exynos_omx/codecs/exynos_codecs/video/exynos5/mfc_v4l2/enc/src/ |
ExynosVideoEncoder.c | 321 if (pCommonParam->Bitrate) 322 ext_ctrl[7].value = pCommonParam->Bitrate; 753 int bitRate) 764 if (exynos_v4l2_s_ctrl(pCtx->hEnc, V4L2_CID_MPEG_MFC51_VIDEO_BIT_RATE_CH, bitRate) != 0) { [all...] |