|
Revision 402, 400 bytes
(checked in by gbooker, 2 years ago)
|
Reverted [401] and did it right.
|
| Line | |
|---|
| 1 |
/* |
|---|
| 2 |
* bitstream_info.h |
|---|
| 3 |
* Perian |
|---|
| 4 |
* |
|---|
| 5 |
* Created by Graham Booker on 1/6/07. |
|---|
| 6 |
* Copyright 2007 Graham Booker. All rights reserved. |
|---|
| 7 |
* |
|---|
| 8 |
*/ |
|---|
| 9 |
|
|---|
| 10 |
#include <AudioToolbox/AudioToolbox.h> |
|---|
| 11 |
#include <QuickTime/QuickTime.h> |
|---|
| 12 |
|
|---|
| 13 |
#ifdef __cplusplus |
|---|
| 14 |
extern "C" { |
|---|
| 15 |
#endif |
|---|
| 16 |
|
|---|
| 17 |
int parse_ac3_bitstream(AudioStreamBasicDescription *asbd, AudioChannelLayout *acl, uint8_t *buffer, int buff_size); |
|---|
| 18 |
|
|---|
| 19 |
#ifdef __cplusplus |
|---|
| 20 |
} |
|---|
| 21 |
#endif |
|---|