You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
vorbis: Add ff_ prefix to nonstatic symbols
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
@@ -3016,7 +3016,7 @@ av_cold void ff_dsputil_init(DSPContext* c, AVCodecContext *avctx)
|
|||||||
c->add_8x8basis= add_8x8basis_c;
|
c->add_8x8basis= add_8x8basis_c;
|
||||||
|
|
||||||
#if CONFIG_VORBIS_DECODER
|
#if CONFIG_VORBIS_DECODER
|
||||||
c->vorbis_inverse_coupling = vorbis_inverse_coupling;
|
c->vorbis_inverse_coupling = ff_vorbis_inverse_coupling;
|
||||||
#endif
|
#endif
|
||||||
#if CONFIG_AC3_DECODER
|
#if CONFIG_AC3_DECODER
|
||||||
c->ac3_downmix = ff_ac3_downmix_c;
|
c->ac3_downmix = ff_ac3_downmix_c;
|
||||||
|
@@ -42,7 +42,7 @@ int ff_vorbis_len2vlc(uint8_t *bits, uint32_t *codes, unsigned num);
|
|||||||
void ff_vorbis_floor1_render_list(vorbis_floor1_entry * list, int values,
|
void ff_vorbis_floor1_render_list(vorbis_floor1_entry * list, int values,
|
||||||
uint16_t *y_list, int *flag,
|
uint16_t *y_list, int *flag,
|
||||||
int multiplier, float * out, int samples);
|
int multiplier, float * out, int samples);
|
||||||
void vorbis_inverse_coupling(float *mag, float *ang, int blocksize);
|
void ff_vorbis_inverse_coupling(float *mag, float *ang, int blocksize);
|
||||||
|
|
||||||
#define ilog(i) av_log2(2*(i))
|
#define ilog(i) av_log2(2*(i))
|
||||||
|
|
||||||
|
@@ -1447,7 +1447,7 @@ static inline int vorbis_residue_decode(vorbis_context *vc, vorbis_residue *vr,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void vorbis_inverse_coupling(float *mag, float *ang, int blocksize)
|
void ff_vorbis_inverse_coupling(float *mag, float *ang, int blocksize)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; i < blocksize; i++) {
|
for (i = 0; i < blocksize; i++) {
|
||||||
|
Reference in New Issue
Block a user