Searched refs:context (Results 1 - 25 of 1275) sorted by path

1234567891011>>

/frameworks/av/libvideoeditor/osal/inc/
H A DLVOSA_FileReader_optim.h61 M4OSA_ERR M4OSA_fileReadOpen_optim( M4OSA_Context* context,
65 M4OSA_ERR M4OSA_fileReadOpen_optim( M4OSA_Context* context,
71 M4OSA_ERR M4OSA_fileReadData_optim( M4OSA_Context context,
74 M4OSA_ERR M4OSA_fileReadSeek_optim( M4OSA_Context context,
77 M4OSA_ERR M4OSA_fileReadClose_optim( M4OSA_Context context );
78 M4OSA_ERR M4OSA_fileReadGetOption_optim( M4OSA_Context context,
81 M4OSA_ERR M4OSA_fileReadSetOption_optim( M4OSA_Context context,
H A DM4OSA_FileCommon_priv.h44 /** This structure defines the file context*/
78 M4OSA_Context* context,
83 M4OSA_Context context);
85 M4OSA_ERR M4OSA_fileCommonGetAttribute(M4OSA_Context context,
88 M4OSA_ERR M4OSA_fileCommonGetURL(M4OSA_Context context,
94 M4OSA_ERR M4OSA_fileCommonSeek(M4OSA_Context context,
H A DM4OSA_FileReader.h76 M4OSA_ERR (*openRead) (M4OSA_Context* context,
80 M4OSA_ERR (*readData) (M4OSA_Context context,
84 M4OSA_ERR (*seek) (M4OSA_Context context,
88 M4OSA_ERR (*closeRead) (M4OSA_Context context);
90 M4OSA_ERR (*setOption) (M4OSA_Context context,
94 M4OSA_ERR (*getOption) (M4OSA_Context context,
104 M4OSAL_FILE_EXPORT_TYPE M4OSA_ERR M4OSA_fileReadOpen (M4OSA_Context* context,
108 M4OSAL_FILE_EXPORT_TYPE M4OSA_ERR M4OSA_fileReadData (M4OSA_Context context,
112 M4OSAL_FILE_EXPORT_TYPE M4OSA_ERR M4OSA_fileReadSeek (M4OSA_Context context,
116 M4OSAL_FILE_EXPORT_TYPE M4OSA_ERR M4OSA_fileReadClose (M4OSA_Context context);
[all...]
H A DM4OSA_FileWriter.h47 /** Get the reader context for read & write file. (M4OSA_Context*)*/
72 M4OSA_ERR (*openWrite) (M4OSA_Context* context,
76 M4OSA_ERR (*writeData) (M4OSA_Context context,
80 M4OSA_ERR (*seek) (M4OSA_Context context,
84 M4OSA_ERR (*Flush) (M4OSA_Context context);
85 M4OSA_ERR (*closeWrite) (M4OSA_Context context);
86 M4OSA_ERR (*setOption) (M4OSA_Context context,
90 M4OSA_ERR (*getOption) (M4OSA_Context context,
100 M4OSAL_FILE_EXPORT_TYPE M4OSA_ERR M4OSA_fileWriteOpen (M4OSA_Context* context,
104 M4OSAL_FILE_EXPORT_TYPE M4OSA_ERR M4OSA_fileWriteData (M4OSA_Context context,
[all...]
H A DM4OSA_Mutex.h38 M4OSAL_REALTIME_EXPORT_TYPE M4OSA_ERR M4OSA_mutexOpen( M4OSA_Context* context );
41 M4OSAL_REALTIME_EXPORT_TYPE M4OSA_ERR M4OSA_mutexLock( M4OSA_Context context,
45 M4OSAL_REALTIME_EXPORT_TYPE M4OSA_ERR M4OSA_mutexUnlock( M4OSA_Context context );
48 M4OSAL_REALTIME_EXPORT_TYPE M4OSA_ERR M4OSA_mutexClose( M4OSA_Context context );
H A DM4OSA_Semaphore.h35 M4OSAL_REALTIME_EXPORT_TYPE M4OSA_ERR M4OSA_semaphoreOpen( M4OSA_Context* context,
39 M4OSAL_REALTIME_EXPORT_TYPE M4OSA_ERR M4OSA_semaphorePost( M4OSA_Context context );
42 M4OSAL_REALTIME_EXPORT_TYPE M4OSA_ERR M4OSA_semaphoreWait( M4OSA_Context context,
46 M4OSAL_REALTIME_EXPORT_TYPE M4OSA_ERR M4OSA_semaphoreClose( M4OSA_Context context );
H A DM4OSA_Thread.h91 M4OSAL_REALTIME_EXPORT_TYPE M4OSA_ERR M4OSA_threadSyncOpen( M4OSA_Context* context,
95 M4OSAL_REALTIME_EXPORT_TYPE M4OSA_ERR M4OSA_threadSyncStart( M4OSA_Context context,
99 M4OSAL_REALTIME_EXPORT_TYPE M4OSA_ERR M4OSA_threadSyncStop( M4OSA_Context context );
102 M4OSAL_REALTIME_EXPORT_TYPE M4OSA_ERR M4OSA_threadSyncClose( M4OSA_Context context );
105 M4OSAL_REALTIME_EXPORT_TYPE M4OSA_ERR M4OSA_threadSyncGetState( M4OSA_Context context,
112 M4OSAL_REALTIME_EXPORT_TYPE M4OSA_ERR M4OSA_threadSyncSetOption(M4OSA_Context context,
117 M4OSAL_REALTIME_EXPORT_TYPE M4OSA_ERR M4OSA_threadSyncGetOption(M4OSA_Context context,
/frameworks/av/libvideoeditor/osal/src/
H A DM4OSA_Mutex.c36 M4OSA_UInt32 coreID; /* mutex context identifiant */
46 * @note This function creates and allocates a unique context. It's the
47 * OSAL real time responsibility for managing its context. It must
48 * be freed by the M4OSA_mutexClose function. The context parameter
54 * @return M4ERR_CONTEXT_FAILED: the context creation failed
70 M4OSA_MUTEX, (M4OSA_Char*)"M4OSA_mutexOpen: mutex context");
120 * @param context:(IN/OUT) Context of the mutex
126 * @return M4ERR_BAD_CONTEXT: provided context is not a valid one
129 M4OSA_ERR M4OSA_mutexLock(M4OSA_Context context, M4OSA_UInt32 timeout) argument
131 M4OSA_MutexContext* pMutexContext = (M4OSA_MutexContext*)context;
216 M4OSA_mutexUnlock(M4OSA_Context context) argument
258 M4OSA_mutexClose(M4OSA_Context context) argument
[all...]
H A DM4OSA_Semaphore.c42 M4OSA_UInt32 coreID; /* semaphore context identifiant */
53 * @note This function creates and allocates a unique context. It's the
54 * OSAL real time responsibility for managing its context. It must
55 * be freed by the M4OSA_semaphoreClose function. The context
58 * @param context:(OUT) Context of the created semaphore
61 * @return M4ERR_PARAMETER: provided context is NULL
63 * @return M4ERR_CONTEXT_FAILED: the context creation failed
66 M4OSA_ERR M4OSA_semaphoreOpen(M4OSA_Context* context, argument
72 "%d", context, initial_count);
74 M4OSA_DEBUG_IF2(context
129 M4OSA_semaphoreWait(M4OSA_Context context, M4OSA_Int32 timeout) argument
210 M4OSA_semaphorePost(M4OSA_Context context) argument
245 M4OSA_semaphoreClose(M4OSA_Context context) argument
[all...]
H A DM4OSA_Thread.c41 void* M4OSA_threadSyncForEverDo(void *context) argument
43 M4OSA_ThreadContext* threadContext = (M4OSA_ThreadContext*)context;
50 M4OSA_TRACE2_1("M4OSA_threadSyncForEverDo\t\tLPVOID 0x%x", context);
104 * identified by its "context". The thread function is provided by
106 * context. It's the OSAL real time responsibility for managing its
107 * context. It must be freed by the M4OSA_threadSyncClose function.
108 * The context parameter will be sent back to any OSAL core thread
113 * @param context:(OUT) Context of the created thread
118 * @return M4ERR_CONTEXT_FAILED: the context creation failed
121 M4OSA_ERR M4OSA_threadSyncOpen(M4OSA_Context* context, argument
206 M4OSA_threadSyncStart(M4OSA_Context context, M4OSA_Void* param) argument
338 M4OSA_threadSyncStop(M4OSA_Context context) argument
393 M4OSA_threadSyncClose(M4OSA_Context context) argument
467 M4OSA_threadSyncGetState(M4OSA_Context context, M4OSA_ThreadState* state) argument
517 M4OSA_SetThreadSyncPriority(M4OSA_Context context, M4OSA_DataOption optionValue) argument
544 M4OSA_SetThreadSyncName(M4OSA_Context context, M4OSA_DataOption optionValue) argument
585 M4OSA_SetThreadSyncStackSize(M4OSA_Context context, M4OSA_DataOption optionValue) argument
620 M4OSA_threadSyncSetOption(M4OSA_Context context, M4OSA_ThreadOptionID optionID, M4OSA_DataOption optionValue) argument
724 M4OSA_threadSyncGetOption(M4OSA_Context context, M4OSA_ThreadOptionID optionID, M4OSA_DataOption* optionValue) argument
[all...]
/frameworks/av/libvideoeditor/vss/3gpwriter/inc/
H A DM4MP4W_Utils.h46 M4OSA_Context context);
48 M4OSA_Context context);
50 M4OSA_Context context);
52 M4OSA_Context context);
60 M4OSA_FileWriterPointer* fileFunction, M4OSA_Context context);
85 * De-allocate the context
90 M4OSA_ERR M4MP4W_freeContext(M4OSA_Context context);
H A DM4MP4W_Writer.h69 * @param contextPtr (OUT) Pointer to the MP4 writer context to create.
90 * @param context (IN/OUT) MP4 writer context.
98 * to this context while attempting to add another one,
102 M4OSA_ERR M4MP4W_addStream( M4OSA_Context context,
108 * @param context (IN/OUT) MP4 writer context.
117 M4OSA_ERR M4MP4W_startWriting( M4OSA_Context context);
123 * @param context (IN/OUT) MP4 writer context
[all...]
/frameworks/av/libvideoeditor/vss/3gpwriter/src/
H A DM4MP4W_Utils.c36 M4OSA_Context context)
39 M4OSA_ERR err = fileFunction->writeData(context, (M4OSA_MemAddr8)&c, 1);
45 M4OSA_Context context)
49 err = M4MP4W_putByte((M4OSA_UChar)(val >> 8), fileFunction, context);
51 err = M4MP4W_putByte((M4OSA_UChar)val, fileFunction, context);
57 M4OSA_Context context)
61 err = M4MP4W_putByte((M4OSA_UChar)(val >> 16), fileFunction, context);
63 err = M4MP4W_putByte((M4OSA_UChar)(val >> 8), fileFunction, context);
65 err = M4MP4W_putByte((M4OSA_UChar)val, fileFunction, context);
71 M4OSA_Context context)
35 M4MP4W_putByte(M4OSA_UChar c, M4OSA_FileWriterPointer* fileFunction, M4OSA_Context context) argument
44 M4MP4W_putBE16(M4OSA_UInt32 val, M4OSA_FileWriterPointer* fileFunction, M4OSA_Context context) argument
56 M4MP4W_putBE24(M4OSA_UInt32 val, M4OSA_FileWriterPointer* fileFunction, M4OSA_Context context) argument
70 M4MP4W_putBE32(M4OSA_UInt32 val, M4OSA_FileWriterPointer* fileFunction, M4OSA_Context context) argument
86 M4MP4W_putBlock(const M4OSA_UChar* Block, M4OSA_UInt32 size, M4OSA_FileWriterPointer* fileFunction, M4OSA_Context context) argument
132 M4MP4W_freeContext(M4OSA_Context context) argument
[all...]
H A DM4MP4W_Writer.c559 /* The context reuse mode was suppressed*/
563 M4MP4_WRITER, (M4OSA_Char *)"MP4 writer context");
627 M4OSA_ERR M4MP4W_addStream(M4OSA_Context context, argument
633 M4MP4W_Mp4FileData *mMp4FileDataPtr = (M4MP4W_Mp4FileData *)context;
635 ERR_CHECK(M4OSA_NULL != context, M4ERR_PARAMETER);
1204 M4OSA_ERR M4MP4W_startWriting( M4OSA_Context context )
1210 M4MP4W_Mp4FileData *mMp4FileDataPtr = (M4MP4W_Mp4FileData *)context;
1211 ERR_CHECK(context != M4OSA_NULL, M4ERR_PARAMETER);
1398 M4OSA_ERR M4MP4W_newAudioChunk( M4OSA_Context context, argument
1404 M4MP4W_Mp4FileData *mMp4FileDataPtr = (M4MP4W_Mp4FileData *)context;
1637 M4MP4W_newVideoChunk( M4OSA_Context context, M4OSA_UInt32 *leftSpaceInChunk ) argument
1878 M4MP4W_startAU( M4OSA_Context context, M4SYS_StreamID streamID, M4SYS_AccessUnit *auPtr ) argument
2085 M4MP4W_processAU( M4OSA_Context context, M4SYS_StreamID streamID, M4SYS_AccessUnit *auPtr ) argument
4619 M4MP4W_getOption( M4OSA_Context context, M4OSA_OptionID option, M4OSA_DataOption *valuePtr ) argument
4822 M4MP4W_setOption( M4OSA_Context context, M4OSA_OptionID option, M4OSA_DataOption value ) argument
5310 M4MP4W_getState( M4OSA_Context context, M4MP4W_State *state, M4SYS_StreamID streamID ) argument
5355 M4MP4W_getCurrentFileSize( M4OSA_Context context, M4OSA_UInt32 *pCurrentFileSize ) argument
[all...]
/frameworks/av/libvideoeditor/vss/common/inc/
H A DM4AD_Common.h145 * @note Allocates the context
165 * @note After this call the context is invalid
167 * @param context: (IN) Context of the decoder
170 * @return M4ERR_PARAMETER The context is invalid (in DEBUG only)
173 typedef M4OSA_ERR (M4AD_destroy_fct) (M4AD_Context context);
182 * @param context: (IN) Context of the decoder
193 typedef M4OSA_ERR (M4AD_step_fct) (M4AD_Context context, M4AD_Buffer *pInputBuffer,
233 * @param context: (IN) Context of the decoder
236 * @return M4ERR_PARAMETER The context is invalid (in DEBUG only)
239 typedef M4OSA_ERR (M4AD_reset_fct) (M4AD_Context context);
[all...]
H A DM4DECODER_Common.h248 * @note allocates the context
275 * @note after this call the context is invalid
277 * @param context: (IN) Context of the decoder
280 * @return M4ERR_PARAMETER The context is invalid (in DEBUG only)
283 typedef M4OSA_ERR (M4DECODER_destroy_fct) (M4OSA_Context context);
293 * @param context: (IN) Context of the decoder
298 * @return M4ERR_PARAMETER The context is invalid (in DEBUG only)
303 typedef M4OSA_ERR (M4DECODER_getOption_fct)(M4OSA_Context context, M4OSA_OptionID optionId,
313 * @param context: (IN) Context of the decoder
323 typedef M4OSA_ERR (M4DECODER_setOption_fct)(M4OSA_Context context, M4OSA_OptionI
[all...]
H A DM4PCMR_CoreReader.h91 * @brief This structure defines the WAV Reader context
93 * the context
102 M4OSA_Context m_fileContext; /**< The context needed by OSAL to manage File */
121 M4OSA_ERR M4PCMR_getNextStream(M4OSA_Context context, M4SYS_StreamDescription* pStreamDesc);
122 M4OSA_ERR M4PCMR_startReading(M4OSA_Context context, M4SYS_StreamID* pStreamIDs);
123 M4OSA_ERR M4PCMR_nextAU(M4OSA_Context context, M4SYS_StreamID streamID, M4SYS_AccessUnit* pAU);
124 M4OSA_ERR M4PCMR_freeAU(M4OSA_Context context, M4SYS_StreamID streamID, M4SYS_AccessUnit* pAU);
125 M4OSA_ERR M4PCMR_seek(M4OSA_Context context, M4SYS_StreamID* pStreamID, M4OSA_Time time,
127 M4OSA_ERR M4PCMR_closeRead(M4OSA_Context context);
128 M4OSA_ERR M4PCMR_getOption(M4OSA_Context context, M4PCMR_OptionI
[all...]
H A DM4READER_3gpCom.h58 M4OSA_Context m_pFFContext; /**< core file format context */
155 M4OSA_ERR M4READER_Com3GP_getNextStreamHandler(M4OSA_Context context,
174 M4OSA_ERR M4READER_Com3GP_fillAuStruct(M4OSA_Context context, M4_StreamHandler *pStreamHandler,
182 * @return M4ERR_PARAMETER: The context is null
H A DM4READER_Common.h419 * @note create the context
420 * @param pContext: (OUT) pointer on a reader context
431 * @note after this call the context is invalid
432 * @param context: (IN) Context of the reader
437 typedef M4OSA_ERR (M4READER_destroy_fct) (M4OSA_Context context);
444 * @param context: (IN) Context of the reader
447 * @return M4ERR_PARAMETER the context is NULL
448 * @return M4ERR_BAD_CONTEXT provided context is not a valid one
451 typedef M4OSA_ERR (M4READER_open_fct) (M4OSA_Context context, M4OSA_Void* pFileDescriptor);
458 * @param context
[all...]
/frameworks/av/libvideoeditor/vss/src/
H A DM4AD_Null.c46 * @brief Internal null decoder context
65 * @note Allocates the context
84 "M4AD_NULL_create: invalid context pointer");
92 M4OSA_TRACE1_0("Can not allocate null decoder context");
106 * @note After this call the context is invalid
108 * @param context: (IN) Context of the decoder
111 * @return M4ERR_PARAMETER The context is invalid (in DEBUG only)
114 M4OSA_ERR M4AD_NULL_destroy(M4AD_Context context) argument
116 M4AD_NullContext* pC = (M4AD_NullContext*)context;
118 M4OSA_DEBUG_IF1((context
141 M4AD_NULL_step(M4AD_Context context, M4AD_Buffer *pInputBuffer, M4AD_Buffer *pDecodedPCMBuffer, M4OSA_Bool jumping) argument
[all...]
H A DM4DECODER_Null.c46 * @brief Defines the internal context of a video decoder instance
47 * @note The context is allocated and freed by the video decoder
76 * @note Allocates the context
129 * @note After this call the context is invalid
131 * @param context: (IN) Context of the decoder
134 * @return M4ERR_PARAMETER The context is invalid
142 M4ERR_PARAMETER, "M4DECODER_NULL_destroy: invalid context pointer");
154 * @param context: (IN) Context of the decoder
160 * @return M4ERR_PARAMETER The context is invalid (in DEBUG only)
166 M4OSA_ERR M4DECODER_NULL_getOption(M4OSA_Context context, argument
189 M4DECODER_NULL_setOption(M4OSA_Context context, M4OSA_OptionID optionId, M4OSA_DataOption pValue) argument
296 M4DECODER_NULL_decode(M4OSA_Context context, M4_MediaTime* pTime, M4OSA_Bool bJump, M4OSA_UInt32 tolerance) argument
323 M4DECODER_NULL_render(M4OSA_Context context, M4_MediaTime* pTime, M4VIFI_ImagePlane* pOutputPlane, M4OSA_Bool bForceRender) argument
[all...]
H A DM4PCMR_CoreReader.c44 * - initializes PCM context,
48 * @param pContext: (OUT) Pointer on the PCM Reader context
66 M4PCMR_Context *context; local
76 /* Allocates the context */
77 context = M4OSA_NULL;
78 context = (M4PCMR_Context *)M4OSA_32bitAlignedMalloc(sizeof(M4PCMR_Context), M4WAV_READER,
80 if (M4OSA_NULL == context)
84 *pContext = (M4OSA_Context)context;
86 /* Initialize the context */
87 context
186 M4PCMR_getNextStream(M4OSA_Context context, M4SYS_StreamDescription* pStreamDesc) argument
295 M4PCMR_startReading(M4OSA_Context context, M4SYS_StreamID* pStreamIDs) argument
351 M4PCMR_nextAU(M4OSA_Context context, M4SYS_StreamID streamID, M4SYS_AccessUnit* pAU) argument
433 M4PCMR_freeAU(M4OSA_Context context, M4SYS_StreamID streamID, M4SYS_AccessUnit* pAU) argument
482 M4PCMR_seek(M4OSA_Context context, M4SYS_StreamID* pStreamID, M4OSA_Time time, M4SYS_SeekAccessMode seekAccessMode, M4OSA_Time* pObtainCTS) argument
558 M4PCMR_closeRead(M4OSA_Context context) argument
622 M4PCMR_getOption(M4OSA_Context context, M4PCMR_OptionID optionID, M4OSA_DataOption* pValue) argument
672 M4PCMR_setOption(M4OSA_Context context, M4PCMR_OptionID optionID, M4OSA_DataOption Value) argument
[all...]
H A DM4READER_Amr.c39 * @brief This structure defines the internal context of a amr reader instance
40 * @note The context is allocated and de-allocated by the reader
45 M4OSA_Context m_pCoreContext; /**< core amr reader context */
58 * @note allocates the context
59 * @param pContext: (OUT) pointer on a reader context
71 "M4READER_AMR_create: invalid context pointer");
94 * @note after this call the context is invalid
96 * @param context: (IN) Context of the reader
102 M4OSA_ERR M4READER_AMR_destroy(M4OSA_Context context) argument
104 M4READER_AMR_Context* pC=(M4READER_AMR_Context*)context;
136 M4READER_AMR_open(M4OSA_Context context, M4OSA_Void* pFileDescriptor) argument
164 M4READER_AMR_close(M4OSA_Context context) argument
244 M4READER_AMR_getNextStream(M4OSA_Context context, M4READER_MediaFamily *pMediaFamily, M4_StreamHandler **pStreamHandlerParam) argument
345 M4READER_AMR_fillAuStruct(M4OSA_Context context, M4_StreamHandler *pStreamHandler, M4_AccessUnit *pAccessUnit) argument
407 M4READER_AMR_getOption(M4OSA_Context context, M4OSA_OptionID optionId, M4OSA_DataOption pValue) argument
474 M4READER_AMR_setOption(M4OSA_Context context, M4OSA_OptionID optionId, M4OSA_DataOption pValue) argument
517 M4READER_AMR_reset(M4OSA_Context context, M4_StreamHandler *pStreamHandler) argument
587 M4READER_AMR_jump(M4OSA_Context context, M4_StreamHandler *pStreamHandler, M4OSA_Int32* pTime) argument
661 M4READER_AMR_getNextAu(M4OSA_Context context, M4_StreamHandler *pStreamHandler, M4_AccessUnit *pAccessUnit) argument
[all...]
H A DM4READER_Pcm.c36 * @brief This structure defines the internal context of a wav reader instance
37 * @note The context is allocated and de-allocated by the reader
42 M4OSA_Context m_coreContext; /**< core wav reader context */
54 * @note allocates the context
55 * @param pContext: (OUT) Pointer to a wav reader context
66 "M4READER_PCM_create: invalid context pointer");
88 * @note the context is un-allocated
89 * @param context: (IN) context of the network reader
94 M4OSA_ERR M4READER_PCM_destroy(M4OSA_Context context) argument
116 M4READER_PCM_open(M4OSA_Context context, M4OSA_Void* pFileDescriptor) argument
143 M4READER_PCM_close(M4OSA_Context context) argument
197 M4READER_PCM_setOption(M4OSA_Context context, M4OSA_OptionID optionId, void* pValue) argument
239 M4READER_PCM_getOption(M4OSA_Context context, M4OSA_OptionID optionId, void* pValue) argument
302 M4READER_PCM_getNextStream(M4OSA_Context context, M4READER_MediaFamily *pMediaFamily, M4_StreamHandler **pStreamHandler) argument
413 M4READER_PCM_fillAuStruct(M4OSA_Context context, M4_StreamHandler *pStreamHandler, M4_AccessUnit *pAccessUnit) argument
464 M4READER_PCM_reset(M4OSA_Context context, M4_StreamHandler *pStreamHandler) argument
528 M4READER_PCM_getNextAu(M4OSA_Context context, M4_StreamHandler *pStreamHandler, M4_AccessUnit *pAccessUnit) argument
601 M4READER_PCM_jump(M4OSA_Context context, M4_StreamHandler *pStreamHandler, M4OSA_Int32* pTime) argument
[all...]
H A DVideoEditorResampler.cpp81 VideoEditorResampler *context = new VideoEditorResampler(); local
82 context->mResampler = AudioResampler::create(
84 if (context->mResampler == NULL) {
87 context->mResampler->setSampleRate(android::VideoEditorResampler::kFreq32000Hz);
88 context->mResampler->setVolume(0x1000, 0x1000);
89 context->nbChannels = inChannelCount;
90 context->outSamplingRate = sampleRate;
91 context->mInput = NULL;
92 context->mTmpInBuffer = NULL;
94 return ((M4OSA_Context )context);
100 VideoEditorResampler *context = local
115 VideoEditorResampler *context = local
122 VideoEditorResampler *context = local
149 VideoEditorResampler *context = local
[all...]

Completed in 217 milliseconds

1234567891011>>