Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
e951b6d9
Commit
e951b6d9
authored
12 years ago
by
Justin Ruggles
Browse files
Options
Downloads
Patches
Plain Diff
vorbisdec: cosmetics: rename variable avccontext to avctx
This is consistent with the rest of libavcodec.
parent
b2d688ea
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
libavcodec/vorbis.c
+2
-2
2 additions, 2 deletions
libavcodec/vorbis.c
libavcodec/vorbis.h
+1
-1
1 addition, 1 deletion
libavcodec/vorbis.h
libavcodec/vorbisdec.c
+70
-73
70 additions, 73 deletions
libavcodec/vorbisdec.c
with
73 additions
and
76 deletions
libavcodec/vorbis.c
+
2
−
2
View file @
e951b6d9
...
...
@@ -117,7 +117,7 @@ int ff_vorbis_len2vlc(uint8_t *bits, uint32_t *codes, unsigned num)
return
0
;
}
int
ff_vorbis_ready_floor1_list
(
AVCodecContext
*
avc
contex
t
,
int
ff_vorbis_ready_floor1_list
(
AVCodecContext
*
avct
x
,
vorbis_floor1_entry
*
list
,
int
values
)
{
int
i
;
...
...
@@ -143,7 +143,7 @@ int ff_vorbis_ready_floor1_list(AVCodecContext *avccontext,
int
j
;
for
(
j
=
i
+
1
;
j
<
values
;
j
++
)
{
if
(
list
[
i
].
x
==
list
[
j
].
x
)
{
av_log
(
avc
contex
t
,
AV_LOG_ERROR
,
av_log
(
avct
x
,
AV_LOG_ERROR
,
"Duplicate value found in floor 1 X coordinates
\n
"
);
return
AVERROR_INVALIDDATA
;
}
...
...
This diff is collapsed.
Click to expand it.
libavcodec/vorbis.h
+
1
−
1
View file @
e951b6d9
...
...
@@ -36,7 +36,7 @@ typedef struct vorbis_floor1_entry {
uint16_t
high
;
}
vorbis_floor1_entry
;
int
ff_vorbis_ready_floor1_list
(
AVCodecContext
*
avc
contex
t
,
int
ff_vorbis_ready_floor1_list
(
AVCodecContext
*
avct
x
,
vorbis_floor1_entry
*
list
,
int
values
);
unsigned
int
ff_vorbis_nth_root
(
unsigned
int
x
,
unsigned
int
n
);
// x^(1/n)
int
ff_vorbis_len2vlc
(
uint8_t
*
bits
,
uint32_t
*
codes
,
unsigned
num
);
...
...
This diff is collapsed.
Click to expand it.
libavcodec/vorbisdec.c
+
70
−
73
View file @
e951b6d9
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment