Mercurial > libavcodec.hg
comparison liba52/a52.h @ 1017:e113a950c074 libavcodec
Function renaming. Solves some namespace conflicts
author | nickols_k |
---|---|
date | Mon, 20 Jan 2003 16:33:47 +0000 |
parents | dd4f4c3d7171 |
children | 696ccd81403e |
comparison
equal
deleted
inserted
replaced
1016:5840ee827cc9 | 1017:e113a950c074 |
---|---|
48 #define A52_CHANNEL_MASK 15 | 48 #define A52_CHANNEL_MASK 15 |
49 | 49 |
50 #define A52_LFE 16 | 50 #define A52_LFE 16 |
51 #define A52_ADJUST_LEVEL 32 | 51 #define A52_ADJUST_LEVEL 32 |
52 | 52 |
53 a52_state_t * a52_init (uint32_t mm_accel); | 53 extern a52_state_t * ff_a52_init (uint32_t mm_accel); |
54 sample_t * a52_samples (a52_state_t * state); | 54 extern sample_t * ff_a52_samples (a52_state_t * state); |
55 int a52_syncinfo (uint8_t * buf, int * flags, | 55 extern int ff_a52_syncinfo (uint8_t * buf, int * flags, |
56 int * sample_rate, int * bit_rate); | 56 int * sample_rate, int * bit_rate); |
57 int a52_frame (a52_state_t * state, uint8_t * buf, int * flags, | 57 extern int ff_a52_frame (a52_state_t * state, uint8_t * buf, int * flags, |
58 sample_t * level, sample_t bias); | 58 sample_t * level, sample_t bias); |
59 void a52_dynrng (a52_state_t * state, | 59 extern void ff_a52_dynrng (a52_state_t * state, |
60 sample_t (* call) (sample_t, void *), void * data); | 60 sample_t (* call) (sample_t, void *), void * data); |
61 int a52_block (a52_state_t * state); | 61 extern int ff_a52_block (a52_state_t * state); |
62 void a52_free (a52_state_t * state); | 62 extern void ff_a52_free (a52_state_t * state); |
63 | 63 |
64 #endif /* A52_H */ | 64 #endif /* A52_H */ |