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
9c10ab6c
Commit
9c10ab6c
authored
16 years ago
by
Vitor Sessak
Browse files
Options
Downloads
Patches
Plain Diff
Cosmetics: align spec references
Originally committed as revision 15300 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
5381a00a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavcodec/ra288.c
+7
-7
7 additions, 7 deletions
libavcodec/ra288.c
with
7 additions
and
7 deletions
libavcodec/ra288.c
+
7
−
7
View file @
9c10ab6c
...
@@ -27,20 +27,20 @@
...
@@ -27,20 +27,20 @@
typedef
struct
{
typedef
struct
{
float
sp_lpc
[
36
];
///< LPC coefficients for speech data (spec: A)
float
sp_lpc
[
36
];
///< LPC coefficients for speech data (spec: A)
float
gain_lpc
[
10
];
///< LPC coefficients for gain (spec: GB)
float
gain_lpc
[
10
];
///< LPC coefficients for gain
(spec: GB)
float
sp_hist
[
111
];
///< speech data history (spec: SB)
float
sp_hist
[
111
];
///< speech data history
(spec: SB)
/
**
speech part of the gain autocorrelation (spec: REXP)
*/
/
//
speech part of the gain autocorrelation
(spec: REXP)
float
sp_rec
[
37
];
float
sp_rec
[
37
];
float
gain_hist
[
38
];
///< log-gain history (spec: SBLG)
float
gain_hist
[
38
];
///< log-gain history
(spec: SBLG)
/
**
recursive part of the gain autocorrelation (spec: REXPLG)
*/
/
//
recursive part of the gain autocorrelation
(spec: REXPLG)
float
gain_rec
[
11
];
float
gain_rec
[
11
];
float
sp_block
[
41
];
///< four blocks of speech data (spec: STTMP)
float
sp_block
[
41
];
///< four blocks of speech data
(spec: STTMP)
float
gain_block
[
10
];
///< four blocks of gain data (spec: GSTATE)
float
gain_block
[
10
];
///< four blocks of gain data
(spec: GSTATE)
}
RA288Context
;
}
RA288Context
;
static
av_cold
int
ra288_decode_init
(
AVCodecContext
*
avctx
)
static
av_cold
int
ra288_decode_init
(
AVCodecContext
*
avctx
)
...
...
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