Commit 58fb6e99 authored by aurel's avatar aurel

avoid multiple inclusion of ac3.h

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8940 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8f17cbf2
...@@ -24,6 +24,9 @@ ...@@ -24,6 +24,9 @@
* Common code between AC3 encoder and decoder. * Common code between AC3 encoder and decoder.
*/ */
#ifndef AC3_H
#define AC3_H
#include "ac3tab.h" #include "ac3tab.h"
#define AC3_MAX_CODED_FRAME_SIZE 3840 /* in bytes */ #define AC3_MAX_CODED_FRAME_SIZE 3840 /* in bytes */
...@@ -148,3 +151,5 @@ void ac3_parametric_bit_allocation(AC3BitAllocParameters *s, uint8_t *bap, ...@@ -148,3 +151,5 @@ void ac3_parametric_bit_allocation(AC3BitAllocParameters *s, uint8_t *bap,
int snroffset, int fgain, int is_lfe, int snroffset, int fgain, int is_lfe,
int deltbae,int deltnseg, int deltbae,int deltnseg,
uint8_t *deltoffst, uint8_t *deltlen, uint8_t *deltba); uint8_t *deltoffst, uint8_t *deltlen, uint8_t *deltba);
#endif /* AC3_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment