123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef AVCODEC_AC3_PARSER_H
- #define AVCODEC_AC3_PARSER_H
- #include <stddef.h>
- #include <stdint.h>
- int av_ac3_parse_header(const uint8_t *buf, size_t size,
- uint8_t *bitstream_id, uint16_t *frame_size);
- #endif
|