/frameworks/av/media/libeffects/lvm/wrapper/Reverb/ |
D | EffectReverb.cpp | 177 int Reverb_init (ReverbContext *pContext); 178 void Reverb_free (ReverbContext *pContext); 179 int Reverb_setConfig (ReverbContext *pContext, effect_config_t *pConfig); 180 void Reverb_getConfig (ReverbContext *pContext, effect_config_t *pConfig); 181 int Reverb_setParameter (ReverbContext *pContext, void *pParam, void *pValue); 182 int Reverb_getParameter (ReverbContext *pContext, 186 int Reverb_LoadPreset (ReverbContext *pContext); 243 ReverbContext *pContext = new ReverbContext; in EffectCreate() local 245 pContext->itfe = &gReverbInterface; in EffectCreate() 246 pContext->hInstance = NULL; in EffectCreate() [all …]
|
/frameworks/av/media/libeffects/lvm/wrapper/Bundle/ |
D | EffectBundle.cpp | 132 int LvmBundle_init (EffectContext *pContext); 133 int LvmEffect_enable (EffectContext *pContext); 134 int LvmEffect_disable (EffectContext *pContext); 135 void LvmEffect_free (EffectContext *pContext); 136 int Effect_setConfig (EffectContext *pContext, effect_config_t *pConfig); 137 void Effect_getConfig (EffectContext *pContext, effect_config_t *pConfig); 138 int BassBoost_setParameter (EffectContext *pContext, void *pParam, void *pValue); 139 int BassBoost_getParameter (EffectContext *pContext, 143 int Virtualizer_setParameter (EffectContext *pContext, void *pParam, void *pValue); 144 int Virtualizer_getParameter (EffectContext *pContext, [all …]
|
/frameworks/av/media/libeffects/visualizer/ |
D | EffectVisualizer.cpp | 74 void Visualizer_reset(VisualizerContext *pContext) in Visualizer_reset() argument 76 pContext->mCaptureIdx = 0; in Visualizer_reset() 77 pContext->mLastCaptureIdx = 0; in Visualizer_reset() 78 pContext->mBufferUpdateTime.tv_sec = 0; in Visualizer_reset() 79 pContext->mLatency = 0; in Visualizer_reset() 80 memset(pContext->mCaptureBuf, 0x80, CAPTURE_BUF_SIZE); in Visualizer_reset() 97 int Visualizer_setConfig(VisualizerContext *pContext, effect_config_t *pConfig) in Visualizer_setConfig() argument 109 memcpy(&pContext->mConfig, pConfig, sizeof(effect_config_t)); in Visualizer_setConfig() 111 Visualizer_reset(pContext); in Visualizer_setConfig() 131 void Visualizer_getConfig(VisualizerContext *pContext, effect_config_t *pConfig) in Visualizer_getConfig() argument [all …]
|
/frameworks/base/media/jni/mediaeditor/ |
D | VideoBrowserMain.c | 51 M4OSA_Context pContext, in videoBrowserSetWindow() argument 56 VideoBrowserContext* pC = (VideoBrowserContext*)pContext; in videoBrowserSetWindow() 60 pContext, x, y, dx, dy); in videoBrowserSetWindow() 63 CHECK_PTR(videoBrowserSetWindow, pContext, err, M4ERR_PARAMETER); in videoBrowserSetWindow() 138 VideoBrowserContext* pContext = M4OSA_NULL; in videoBrowserCreate() local 157 pContext = (VideoBrowserContext*)M4OSA_32bitAlignedMalloc( in videoBrowserCreate() 161 CHECK_PTR(videoBrowserCreate, pContext,err, M4ERR_ALLOC); in videoBrowserCreate() 162 memset((void *)pContext, 0,sizeof(VideoBrowserContext)); in videoBrowserCreate() 165 pContext->m_state = VideoBrowser_kVBCreating ; in videoBrowserCreate() 166 pContext->m_frameColorType = clrType; in videoBrowserCreate() [all …]
|
D | VideoEditorMain.cpp | 110 M4MCS_Context pContext, 133 ManualEditContext* pContext, 255 M4OSA_ERR videoEditor_generateAudio(JNIEnv* pEnv,ManualEditContext* pContext, 388 ManualEditContext *pContext = (ManualEditContext *)cookie; in jniPreviewProgressCallback() local 401 pContext->pVM->AttachCurrentThread(&pEnv, NULL); in jniPreviewProgressCallback() 418 pContext->mIsUpdateOverlay = true; in jniPreviewProgressCallback() 423 if (pContext->mOverlayFileName != NULL) { in jniPreviewProgressCallback() 424 free(pContext->mOverlayFileName); in jniPreviewProgressCallback() 425 pContext->mOverlayFileName = NULL; in jniPreviewProgressCallback() 429 … strlen((const char*)pContext->pEditSettings->Effects[overlayEffectIndex].xVSS.pFramingFilePath); in jniPreviewProgressCallback() [all …]
|
D | VideoEditorThumbnailMain.cpp | 74 M4OSA_ERR ThumbnailGetPixels(const M4OSA_Context pContext, 162 ThumbnailContext *pContext = M4OSA_NULL; in ThumbnailOpen() local 168 pContext = (ThumbnailContext*)M4OSA_32bitAlignedMalloc(sizeof(ThumbnailContext), VIDEOBROWSER, in ThumbnailOpen() 170 M4OSA_TRACE3_1("context value is = %d",pContext); in ThumbnailOpen() 171 CHECK_PTR(ThumbnailOpen, pContext, err, M4ERR_ALLOC); in ThumbnailOpen() 173 memset((void *)pContext, 0,sizeof(ThumbnailContext)); in ThumbnailOpen() 180 &pContext->m_pVideoBrowser, pString) ; in ThumbnailOpen() 182 pContext->m_bRender = bRender; in ThumbnailOpen() 193 err = videoBrowserCreate(&pContext->m_pVideoBrowser, (M4OSA_Char*)pString, in ThumbnailOpen() 194 VideoBrowser_kVBNormalBliting, &optFP, VBcallback, pContext, vbColorType); in ThumbnailOpen() [all …]
|
/frameworks/av/media/libeffects/testlibs/ |
D | EffectEqualizer.cpp | 116 int Equalizer_init(EqualizerContext *pContext); 117 int Equalizer_setConfig(EqualizerContext *pContext, effect_config_t *pConfig); 160 EqualizerContext *pContext = new EqualizerContext; in EffectCreate() local 162 pContext->itfe = &gEqualizerInterface; in EffectCreate() 163 pContext->pEqualizer = NULL; in EffectCreate() 164 pContext->state = EQUALIZER_STATE_UNINITIALIZED; in EffectCreate() 166 ret = Equalizer_init(pContext); in EffectCreate() 169 delete pContext; in EffectCreate() 173 *pHandle = (effect_handle_t)pContext; in EffectCreate() 174 pContext->state = EQUALIZER_STATE_INITIALIZED; in EffectCreate() [all …]
|
/frameworks/av/libvideoeditor/vss/mcs/inc/ |
D | M4MCS_InternalFunctions.h | 52 M4OSA_ERR M4MCS_intApplyVPP(M4VPP_Context pContext, M4VIFI_ImagePlane* pPlaneIn, 66 M4OSA_ERR M4MCS_subscribeMediaAndCodec(M4MCS_Context pContext); 76 M4OSA_ERR M4MCS_clearInterfaceTables(M4MCS_Context pContext); 94 M4MCS_Context pContext, 114 M4MCS_Context pContext, 135 M4MCS_Context pContext, 147 M4OSA_ERR M4MCS_registerReader( M4MCS_Context pContext, 163 M4OSA_ERR M4MCS_registerVideoDecoder( M4MCS_Context pContext, 178 M4OSA_ERR M4MCS_registerAudioDecoder(M4MCS_Context pContext, M4AD_Type decoderType, 189 M4OSA_ERR M4MCS_unRegisterAllWriters(M4MCS_Context pContext); [all …]
|
D | M4MCS_API.h | 338 M4OSA_ERR M4MCS_init(M4MCS_Context* pContext, M4OSA_FileReadPointer* pFileReadPtrFct, 368 M4OSA_ERR M4MCS_open(M4MCS_Context pContext, M4OSA_Void* pFileIn, 392 M4OSA_ERR M4MCS_step(M4MCS_Context pContext, M4OSA_UInt8 *pProgress); 407 M4OSA_ERR M4MCS_pause(M4MCS_Context pContext); 422 M4OSA_ERR M4MCS_resume(M4MCS_Context pContext); 435 M4OSA_ERR M4MCS_close(M4MCS_Context pContext); 448 M4OSA_ERR M4MCS_cleanUp(M4MCS_Context pContext); 461 M4OSA_ERR M4MCS_abort(M4MCS_Context pContext); 478 M4OSA_ERR M4MCS_getInputFileProperties(M4MCS_Context pContext, 503 M4OSA_ERR M4MCS_setOutputParams(M4MCS_Context pContext, M4MCS_OutputParams* pParams); [all …]
|
/frameworks/av/libvideoeditor/vss/common/inc/ |
D | M4_BitStreamParser.h | 40 void M4_BitStreamParser_Init(void** pContext, void* pBitStream, M4OSA_Int32 size); 48 void M4_BitStreamParser_CleanUp(void* pContext); 59 M4OSA_UInt32 M4_BitStreamParser_ShowBits(void* pContext, M4OSA_Int32 length); 68 void M4_BitStreamParser_FlushBits(void* pContext, M4OSA_Int32 length); 80 M4OSA_UInt32 M4_BitStreamParser_GetBits(void* pContext,M4OSA_Int32 bitPos, M4OSA_Int32 length); 88 void M4_BitStreamParser_Restart(void* pContext); 98 M4OSA_UInt8* M4_BitStreamParser_GetCurrentbitStreamPointer(void* pContext); 107 M4OSA_Int32 M4_BitStreamParser_GetSize(void* pContext); 109 void M4_MPEG4BitStreamParser_Init(void** pContext, void* pBitStream, M4OSA_Int32 size); 120 M4OSA_Int32 M4_MPEG4BitStreamParser_GetMpegLengthFromInteger(void* pContext, M4OSA_UInt32 val); [all …]
|
D | M4ENCODER_common.h | 395 M4ENCODER_Context* pContext, 404 M4ENCODER_Context pContext, 410 typedef M4OSA_ERR (M4ENCODER_start) (M4ENCODER_Context pContext); 411 typedef M4OSA_ERR (M4ENCODER_stop) (M4ENCODER_Context pContext); 412 typedef M4OSA_ERR (M4ENCODER_pause) (M4ENCODER_Context pContext); 413 typedef M4OSA_ERR (M4ENCODER_resume) (M4ENCODER_Context pContext); 414 typedef M4OSA_ERR (M4ENCODER_close) (M4ENCODER_Context pContext); 415 typedef M4OSA_ERR (M4ENCODER_cleanup) (M4ENCODER_Context pContext); 416 typedef M4OSA_ERR (M4ENCODER_regulBitRate) (M4ENCODER_Context pContext); 419 M4ENCODER_Context pContext, [all …]
|
D | M4VPP_API.h | 75 typedef M4OSA_ERR (M4VPP_apply_fct) (M4VPP_Context pContext, M4VIFI_ImagePlane* pPlaneIn, 91 M4OSA_ERR M4VPP_initVideoPreprocessing(M4VPP_Context* pContext); 108 M4OSA_ERR M4VPP_applyVideoPreprocessing(M4VPP_Context pContext, M4VIFI_ImagePlane* pPlaneIn, 122 M4OSA_ERR M4VPP_cleanUpVideoPreprocessing(M4VPP_Context pContext); 134 M4OSA_ERR M4VPP_setVideoPreprocessingMode(M4VPP_Context pContext, M4VPP_InputVideoFormat format);
|
/frameworks/av/libvideoeditor/osal/src/ |
D | M4OSA_FileWriter.c | 52 M4OSA_ERR M4OSA_fileWriteOpen(M4OSA_Context* pContext, M4OSA_Void* pUrl, in M4OSA_fileWriteOpen() argument 56 pContext, pUrl, fileModeAccess); in M4OSA_fileWriteOpen() 58 return M4OSA_fileCommonOpen(M4OSA_FILE_WRITER, pContext, pUrl, in M4OSA_fileWriteOpen() 80 M4OSA_ERR M4OSA_fileWriteData(M4OSA_Context pContext, M4OSA_MemAddr8 data, in M4OSA_fileWriteData() argument 83 M4OSA_FileContext* pFileContext = pContext; in M4OSA_fileWriteData() 90 M4OSA_DEBUG_IF2(M4OSA_NULL == pContext, M4ERR_PARAMETER, in M4OSA_fileWriteData() 132 err = M4OSA_fileCommonSeek(pContext, M4OSA_kFileSeekBeginning, in M4OSA_fileWriteData() 209 M4OSA_ERR M4OSA_fileWriteSeek(M4OSA_Context pContext, M4OSA_FileSeekAccessMode seekMode, in M4OSA_fileWriteSeek() argument 212 M4OSA_FileContext* pFileContext = (M4OSA_FileContext*)pContext; in M4OSA_fileWriteSeek() 218 M4OSA_DEBUG_IF2(M4OSA_NULL == pContext, M4ERR_PARAMETER, in M4OSA_fileWriteSeek() [all …]
|
D | M4OSA_FileReader.c | 57 M4OSA_ERR M4OSA_fileReadOpen(M4OSA_Context* pContext, M4OSA_Void* pFileDescriptor, in M4OSA_fileReadOpen() argument 61 pContext, pFileDescriptor, fileModeAccess); in M4OSA_fileReadOpen() 63 return M4OSA_fileCommonOpen(M4OSA_FILE_READER, pContext, in M4OSA_fileReadOpen() 86 M4OSA_ERR M4OSA_fileReadData(M4OSA_Context pContext, M4OSA_MemAddr8 data, in M4OSA_fileReadData() argument 89 M4OSA_FileContext* pFileContext = pContext; in M4OSA_fileReadData() 96 M4OSA_DEBUG_IF2(M4OSA_NULL == pContext, M4ERR_PARAMETER, in M4OSA_fileReadData() 143 err = M4OSA_fileCommonSeek(pContext, M4OSA_kFileSeekBeginning, in M4OSA_fileReadData() 218 M4OSA_ERR M4OSA_fileReadSeek(M4OSA_Context pContext, M4OSA_FileSeekAccessMode seekMode, in M4OSA_fileReadSeek() argument 221 M4OSA_FileContext* pFileContext = (M4OSA_FileContext*)pContext; in M4OSA_fileReadSeek() 227 M4OSA_DEBUG_IF2(M4OSA_NULL == pContext, M4ERR_PARAMETER, in M4OSA_fileReadSeek() [all …]
|
D | M4OSA_FileCommon.c | 66 M4OSA_ERR M4OSA_fileCommonOpen(M4OSA_UInt16 core_id, M4OSA_Context* pContext, in M4OSA_fileCommonOpen() argument 107 "M4OSA_Char* %s\tfileModeAccess %d", core_id, pContext, pUrl, fileModeAccess); in M4OSA_fileCommonOpen() 109 …M4OSA_DEBUG_IF2(M4OSA_NULL == pContext, M4ERR_PARAMETER, "M4OSA_fileCommonOpen: pContext is … in M4OSA_fileCommonOpen() 308 *pContext = pFileContext; in M4OSA_fileCommonOpen() 374 M4OSA_ERR M4OSA_fileCommonSeek(M4OSA_Context pContext, in M4OSA_fileCommonSeek() argument 378 M4OSA_FileContext* pFileContext = pContext; in M4OSA_fileCommonSeek() 387 pContext, seekMode, pFilePos); in M4OSA_fileCommonSeek() 389 M4OSA_DEBUG_IF2(M4OSA_NULL == pContext, M4ERR_PARAMETER, "M4OSA_fileCommonSeek"); in M4OSA_fileCommonSeek() 474 M4OSA_ERR M4OSA_fileCommonClose(M4OSA_UInt16 core_id, M4OSA_Context pContext) in M4OSA_fileCommonClose() argument 476 M4OSA_FileContext* pFileContext = pContext; in M4OSA_fileCommonClose() [all …]
|
/frameworks/av/libvideoeditor/vss/src/ |
D | M4VSS3GPP_MediaAndCodecSubscription.c | 139 M4OSA_ERR M4VSS3GPP_subscribeMediaAndCodec(M4VSS3GPP_MediaAndCodecCtxt *pContext) in M4VSS3GPP_subscribeMediaAndCodec() argument 161 M4ERR_CHECK_NULL_RETURN_VALUE(M4ERR_PARAMETER, pContext); in M4VSS3GPP_subscribeMediaAndCodec() 178 err = M4VSS3GPP_registerReader( pContext, readerMediaType, pReaderGlobalInterface, in M4VSS3GPP_subscribeMediaAndCodec() 194 err = M4VSS3GPP_registerReader( pContext, readerMediaType, pReaderGlobalInterface, in M4VSS3GPP_subscribeMediaAndCodec() 210 err = M4VSS3GPP_registerReader( pContext, readerMediaType, pReaderGlobalInterface, in M4VSS3GPP_subscribeMediaAndCodec() 226 err = M4VSS3GPP_registerReader( pContext, readerMediaType, pReaderGlobalInterface, in M4VSS3GPP_subscribeMediaAndCodec() 246 err = M4VSS3GPP_registerVideoDecoder( pContext, videoDecoderType, pVideoDecoderInterface); in M4VSS3GPP_subscribeMediaAndCodec() 258 err = M4VSS3GPP_registerVideoDecoder( pContext, videoDecoderType, pVideoDecoderInterface); in M4VSS3GPP_subscribeMediaAndCodec() 271 pContext, videoDecoderType, pVideoDecoderInterface); in M4VSS3GPP_subscribeMediaAndCodec() 289 err = M4VSS3GPP_registerAudioDecoder( pContext, audioDecoderType, pAudioDecoderInterface); in M4VSS3GPP_subscribeMediaAndCodec() [all …]
|
/frameworks/av/libvideoeditor/vss/mcs/src/ |
D | M4MCS_MediaAndCodecSubscription.c | 141 M4OSA_ERR M4MCS_subscribeMediaAndCodec(M4MCS_Context pContext) in M4MCS_subscribeMediaAndCodec() argument 163 M4ERR_CHECK_NULL_RETURN_VALUE(M4ERR_PARAMETER, pContext); in M4MCS_subscribeMediaAndCodec() 181 err = M4MCS_registerReader( pContext, readerMediaType, in M4MCS_subscribeMediaAndCodec() 199 err = M4MCS_registerReader( pContext, readerMediaType, in M4MCS_subscribeMediaAndCodec() 218 err = M4MCS_registerReader( pContext, readerMediaType, in M4MCS_subscribeMediaAndCodec() 241 err = M4MCS_registerVideoDecoder( pContext, videoDecoderType, in M4MCS_subscribeMediaAndCodec() 258 err = M4MCS_registerVideoDecoder( pContext, videoDecoderType, in M4MCS_subscribeMediaAndCodec() 280 err = M4MCS_registerAudioDecoder( pContext, audioDecoderType, in M4MCS_subscribeMediaAndCodec() 297 err = M4MCS_registerAudioDecoder( pContext, audioDecoderType, in M4MCS_subscribeMediaAndCodec() 314 err = M4MCS_registerAudioDecoder( pContext, audioDecoderType, in M4MCS_subscribeMediaAndCodec() [all …]
|
D | M4MCS_Codecs.c | 49 M4OSA_ERR M4MCS_clearInterfaceTables(M4MCS_Context pContext) in M4MCS_clearInterfaceTables() argument 51 M4MCS_InternalContext* pC = (M4MCS_InternalContext*)pContext; in M4MCS_clearInterfaceTables() 133 M4OSA_ERR M4MCS_registerWriter(M4MCS_Context pContext, M4WRITER_OutputFileType MediaType, in M4MCS_registerWriter() argument 137 M4MCS_InternalContext* pC = (M4MCS_InternalContext*)pContext; in M4MCS_registerWriter() 186 M4MCS_Context pContext, in M4MCS_registerVideoEncoder() argument 190 M4MCS_InternalContext* pC = (M4MCS_InternalContext*)pContext; in M4MCS_registerVideoEncoder() 243 M4MCS_Context pContext, in M4MCS_registerAudioEncoder() argument 247 M4MCS_InternalContext* pC = (M4MCS_InternalContext*)pContext; in M4MCS_registerAudioEncoder() 295 M4MCS_Context pContext, in M4MCS_registerReader() argument 300 M4MCS_InternalContext* pC = (M4MCS_InternalContext*)pContext; in M4MCS_registerReader() [all …]
|
/frameworks/av/libvideoeditor/vss/inc/ |
D | M4xVSS_API.h | 208 M4OSA_ERR M4xVSS_Init(M4OSA_Context* pContext, M4xVSS_InitParams* params); 227 M4OSA_ERR M4xVSS_ReduceTranscode(M4OSA_Context pContext, M4VSS3GPP_EditSettings* pSettings); 247 M4OSA_ERR M4xVSS_SendCommand(M4OSA_Context pContext, M4VSS3GPP_EditSettings* pSettings); 268 M4OSA_ERR M4xVSS_PreviewStart(M4OSA_Context pContext, M4xVSS_PreviewSettings* pPreviewSettings); 284 M4OSA_ERR M4xVSS_PreviewStop(M4OSA_Context pContext); 305 M4OSA_ERR M4xVSS_SaveStart(M4OSA_Context pContext, M4OSA_Void* pFilePath, 322 M4OSA_ERR M4xVSS_SaveStop(M4OSA_Context pContext); 344 M4OSA_ERR M4xVSS_Step(M4OSA_Context pContext, M4OSA_UInt8 *pProgress); 359 M4OSA_ERR M4xVSS_CloseCommand(M4OSA_Context pContext); 373 M4OSA_ERR M4xVSS_CleanUp(M4OSA_Context pContext); [all …]
|
D | M4xVSS_Internal.h | 488 M4OSA_ERR M4xVSS_internalStartTranscoding(M4OSA_Context pContext, 491 M4OSA_ERR M4xVSS_internalStopTranscoding(M4OSA_Context pContext); 508 M4OSA_ERR M4xVSS_internalStartConvertPictureTo3gp(M4OSA_Context pContext); 510 M4OSA_ERR M4xVSS_internalStopConvertPictureTo3gp(M4OSA_Context pContext); 515 M4OSA_ERR M4xVSS_internalDecodeGIF(M4OSA_Context pContext); 517 M4OSA_ERR M4xVSS_internalDecodeGIF_Initialization(M4OSA_Context pContext); 519 M4OSA_ERR M4xVSS_internalDecodeGIF_Cleaning(M4OSA_Context pContext); 522 M4OSA_ERR M4xVSS_internalDecodeGIF(M4OSA_Context pContext, M4VSS3GPP_EffectSettings* pEffect, 526 M4OSA_ERR M4xVSS_internalConvertARGB888toYUV420_FrammingEffect(M4OSA_Context pContext, 532 M4OSA_ERR M4xVSS_internalGenerateEditedFile(M4OSA_Context pContext); [all …]
|
D | M4VSS3GPP_API.h | 477 M4VSS3GPP_EditContext* pContext, 541 M4OSA_ERR M4VSS3GPP_editOpen(M4VSS3GPP_EditContext pContext, M4VSS3GPP_EditSettings *pSettings); 557 M4OSA_ERR M4VSS3GPP_editStep(M4VSS3GPP_EditContext pContext, M4OSA_UInt8 *pProgress); 571 M4OSA_ERR M4VSS3GPP_editClose(M4VSS3GPP_EditContext pContext); 583 M4OSA_ERR M4VSS3GPP_editCleanUp(M4VSS3GPP_EditContext pContext); 655 M4VSS3GPP_AudioMixingContext* pContext, 676 M4OSA_ERR M4VSS3GPP_audioMixingStep(M4VSS3GPP_AudioMixingContext pContext, 689 M4OSA_ERR M4VSS3GPP_audioMixingCleanUp(M4VSS3GPP_AudioMixingContext pContext); 736 M4VSS3GPP_ExtractPictureContext* pContext, 759 M4OSA_ERR M4VSS3GPP_extractPictureStep(M4VSS3GPP_ExtractPictureContext pContext, [all …]
|
/frameworks/av/libvideoeditor/vss/3gpwriter/src/ |
D | M4MP4W_Interface.c | 87 M4OSA_ERR M4WRITER_3GP_openWrite( M4WRITER_Context* pContext, in M4WRITER_3GP_openWrite() argument 100 M4OSA_DEBUG_IF2((M4OSA_NULL == pContext),M4ERR_PARAMETER, in M4WRITER_3GP_openWrite() 107 *pContext=M4OSA_NULL; in M4WRITER_3GP_openWrite() 127 *pContext = (M4WRITER_Context *)apContext; in M4WRITER_3GP_openWrite() 160 M4OSA_ERR M4WRITER_3GP_startWriting(M4WRITER_Context pContext) in M4WRITER_3GP_startWriting() argument 163 (M4WRITER_3GP_InternalContext*)pContext; in M4WRITER_3GP_startWriting() 167 M4OSA_TRACE1_1("M4WRITER_3GP_startWriting: pContext=0x%x", pContext); in M4WRITER_3GP_startWriting() 204 M4OSA_ERR M4WRITER_3GP_addStream(M4WRITER_Context pContext, in M4WRITER_3GP_addStream() argument 208 (M4WRITER_3GP_InternalContext *)pContext; in M4WRITER_3GP_addStream() 217 pContext, pStreamDescription); in M4WRITER_3GP_addStream() [all …]
|
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/ |
D | VideoEditorAudioEncoder.cpp | 239 M4OSA_ERR VideoEditorAudioEncoder_cleanup(M4OSA_Context pContext) { in VideoEditorAudioEncoder_cleanup() argument 245 VIDEOEDITOR_CHECK(M4OSA_NULL != pContext, M4ERR_PARAMETER); in VideoEditorAudioEncoder_cleanup() 246 pEncoderContext = (VideoEditorAudioEncoder_Context*)pContext; in VideoEditorAudioEncoder_cleanup() 250 pContext = M4OSA_NULL; in VideoEditorAudioEncoder_cleanup() 263 M4OSA_Context* pContext, M4OSA_Void* pUserData) { in VideoEditorAudioEncoder_init() argument 269 VIDEOEDITOR_CHECK(M4OSA_NULL != pContext, M4ERR_PARAMETER); in VideoEditorAudioEncoder_init() 275 *pContext = pEncoderContext; in VideoEditorAudioEncoder_init() 282 *pContext = M4OSA_NULL; in VideoEditorAudioEncoder_init() 289 M4OSA_ERR VideoEditorAudioEncoder_init_AAC(M4OSA_Context* pContext, in VideoEditorAudioEncoder_init_AAC() argument 291 return VideoEditorAudioEncoder_init(M4ENCODER_kAAC, pContext, pUserData); in VideoEditorAudioEncoder_init_AAC() [all …]
|
D | VideoEditorAudioDecoder.cpp | 396 M4OSA_ERR VideoEditorAudioDecoder_destroy(M4AD_Context pContext) { in VideoEditorAudioDecoder_destroy() argument 402 VIDEOEDITOR_CHECK(M4OSA_NULL != pContext, M4ERR_PARAMETER); in VideoEditorAudioDecoder_destroy() 404 pDecoderContext = (VideoEditorAudioDecoder_Context*)pContext; in VideoEditorAudioDecoder_destroy() 417 pContext = M4OSA_NULL; in VideoEditorAudioDecoder_destroy() 431 M4AD_Context* pContext, M4_AudioStreamHandler* pStreamHandler, in VideoEditorAudioDecoder_create() argument 444 VIDEOEDITOR_CHECK(M4OSA_NULL != pContext, M4ERR_PARAMETER); in VideoEditorAudioDecoder_create() 574 *pContext = pDecoderContext; in VideoEditorAudioDecoder_create() 582 *pContext = M4OSA_NULL; in VideoEditorAudioDecoder_create() 588 M4OSA_ERR VideoEditorAudioDecoder_create_AAC(M4AD_Context* pContext, in VideoEditorAudioDecoder_create_AAC() argument 592 M4AD_kTypeAAC, pContext, pStreamHandler,pUserData); in VideoEditorAudioDecoder_create_AAC() [all …]
|
D | VideoEditorVideoEncoder.cpp | 303 M4OSA_ERR VideoEditorVideoEncoder_getDSI(M4ENCODER_Context pContext, in VideoEditorVideoEncoder_getDSI() argument 323 VIDEOEDITOR_CHECK(M4OSA_NULL != pContext, M4ERR_PARAMETER); in VideoEditorVideoEncoder_getDSI() 326 pEncoderContext = (VideoEditorVideoEncoder_Context*)pContext; in VideoEditorVideoEncoder_getDSI() 407 M4OSA_ERR VideoEditorVideoEncoder_cleanup(M4ENCODER_Context pContext) { in VideoEditorVideoEncoder_cleanup() argument 413 VIDEOEDITOR_CHECK(M4OSA_NULL != pContext, M4ERR_PARAMETER); in VideoEditorVideoEncoder_cleanup() 415 pEncoderContext = (VideoEditorVideoEncoder_Context*)pContext; in VideoEditorVideoEncoder_cleanup() 421 pContext = M4OSA_NULL; in VideoEditorVideoEncoder_cleanup() 434 M4ENCODER_Context* pContext, in VideoEditorVideoEncoder_init() argument 445 VIDEOEDITOR_CHECK(M4OSA_NULL != pContext, M4ERR_PARAMETER); in VideoEditorVideoEncoder_init() 472 *pContext = pEncoderContext; in VideoEditorVideoEncoder_init() [all …]
|