|
FFmpeg
|
#include <stddef.h>#include <stdint.h>Go to the source code of this file.
Macros | |
| #define | AV_AAC_ADTS_HEADER_SIZE 7 |
Functions | |
| int | av_adts_header_parse (const uint8_t *buf, uint32_t *samples, uint8_t *frames) |
| Extract the number of samples and frames from AAC data. | |
| #define AV_AAC_ADTS_HEADER_SIZE 7 |
Definition at line 25 of file adts_parser.h.
Referenced by aac_adtstoasc_filter(), aac_parse_init(), aac_sync(), av_adts_header_parse(), avpriv_adts_header_parse(), ff_aac_ac3_parse(), ff_adts_header_parse(), ff_adts_header_parse_buf(), ff_spdif_probe(), ftr_parse(), and get_next_adts_frame().
| int av_adts_header_parse | ( | const uint8_t * | buf, |
| uint32_t * | samples, | ||
| uint8_t * | frames ) |
Extract the number of samples and frames from AAC data.
| [in] | buf | pointer to AAC data buffer |
| [out] | samples | Pointer to where number of samples is written |
| [out] | frames | Pointer to where number of frames is written |
Definition at line 30 of file adts_parser.c.
Referenced by spdif_get_offset_and_codec(), and spdif_header_aac().