mirror of https://git.ffmpeg.org/ffmpeg.git
avoid multiple inclusion of ac3.h
Originally committed as revision 8940 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
bba5293bb7
commit
e0fe500f01
|
@ -24,6 +24,9 @@
|
|||
* Common code between AC3 encoder and decoder.
|
||||
*/
|
||||
|
||||
#ifndef AC3_H
|
||||
#define AC3_H
|
||||
|
||||
#include "ac3tab.h"
|
||||
|
||||
#define AC3_MAX_CODED_FRAME_SIZE 3840 /* in bytes */
|
||||
|
@ -148,3 +151,5 @@ void ac3_parametric_bit_allocation(AC3BitAllocParameters *s, uint8_t *bap,
|
|||
int snroffset, int fgain, int is_lfe,
|
||||
int deltbae,int deltnseg,
|
||||
uint8_t *deltoffst, uint8_t *deltlen, uint8_t *deltba);
|
||||
|
||||
#endif /* AC3_H */
|
||||
|
|
Loading…
Reference in New Issue