Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
27cfdc3e
Commit
27cfdc3e
authored
Feb 15, 2012
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vorbis: Add ff_ prefix to nonstatic symbols
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
04d38225
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
dsputil.c
libavcodec/dsputil.c
+1
-1
vorbis.h
libavcodec/vorbis.h
+1
-1
vorbisdec.c
libavcodec/vorbisdec.c
+1
-1
No files found.
libavcodec/dsputil.c
View file @
27cfdc3e
...
@@ -3016,7 +3016,7 @@ av_cold void ff_dsputil_init(DSPContext* c, AVCodecContext *avctx)
...
@@ -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
;
...
...
libavcodec/vorbis.h
View file @
27cfdc3e
...
@@ -42,7 +42,7 @@ int ff_vorbis_len2vlc(uint8_t *bits, uint32_t *codes, unsigned num);
...
@@ -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))
...
...
libavcodec/vorbisdec.c
View file @
27cfdc3e
...
@@ -1447,7 +1447,7 @@ static inline int vorbis_residue_decode(vorbis_context *vc, vorbis_residue *vr,
...
@@ -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
++
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment