OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ancData
(Results
1 - 3
of
3
) sorted by null
/external/aac/libAACdec/src/
aacdecoder.h
219
CAncData
ancData
; /*!< structure to handle ancillary data */
267
\
ancData
Pointer to ancillary data structure
273
AAC_DECODER_ERROR CAacDecoder_AncDataInit(CAncData *
ancData
, unsigned char *buffer, int size);
278
\
ancData
Pointer to ancillary data structure
285
AAC_DECODER_ERROR CAacDecoder_AncDataGet(CAncData *
ancData
, int index, unsigned char **ptr, int *size);
aacdecoder.cpp
210
\
ancData
Pointer to ancillary data structure
214
static AAC_DECODER_ERROR CAacDecoder_AncDataReset(CAncData *
ancData
)
219
ancData
->offset[i] = 0;
221
ancData
->nrElements = 0;
229
\
ancData
Pointer to ancillary data structure
235
AAC_DECODER_ERROR CAacDecoder_AncDataInit(CAncData *
ancData
, unsigned char *buffer, int size)
238
ancData
->buffer = buffer;
239
ancData
->bufferSize = size;
241
CAacDecoder_AncDataReset(
ancData
);
252
\
ancData
Pointer to ancillary data structur
[
all
...]
aacdecoder_lib.cpp
237
CAncData *
ancData
= &self->
ancData
;
239
return CAacDecoder_AncDataInit(
ancData
, buffer, size);
249
CAncData *
ancData
= &self->
ancData
;
251
return CAacDecoder_AncDataGet(
ancData
, index, ptr, size);
[
all
...]
Completed in 866 milliseconds