Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Opus
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexander Traud
Opus
Commits
276de721
Commit
276de721
authored
17 years ago
by
Jean-Marc Valin
Browse files
Options
Downloads
Patches
Plain Diff
Mode doc
parent
879fbfd5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
libcelt/bands.h
+2
-0
2 additions, 0 deletions
libcelt/bands.h
libcelt/celt.c
+7
-2
7 additions, 2 deletions
libcelt/celt.c
libcelt/celt.h
+3
-0
3 additions, 0 deletions
libcelt/celt.h
libcelt/modes.h
+9
-6
9 additions, 6 deletions
libcelt/modes.h
libcelt/vq.h
+5
-1
5 additions, 1 deletion
libcelt/vq.h
with
26 additions
and
9 deletions
libcelt/bands.h
+
2
−
0
View file @
276de721
...
...
@@ -78,6 +78,7 @@ void pitch_quant_bands(const CELTMode *m, float *X, float *P, float *gains);
* @param X Residual (normalised)
* @param P Pitch vector (normalised)
* @param W Perceptual weighting
* @param total_bits Total number of bits that can be used for the frame (including the ones already spent)
* @param enc Entropy encoder
*/
void
quant_bands
(
const
CELTMode
*
m
,
float
*
X
,
float
*
P
,
float
*
W
,
int
total_bits
,
ec_enc
*
enc
);
...
...
@@ -86,6 +87,7 @@ void quant_bands(const CELTMode *m, float *X, float *P, float *W, int total_bits
* @param m Mode data
* @param X Residual (normalised)
* @param P Pitch vector (normalised)
* @param total_bits Total number of bits that can be used for the frame (including the ones already spent)
* @param dec Entropy decoder
*/
void
unquant_bands
(
const
CELTMode
*
m
,
float
*
X
,
float
*
P
,
int
total_bits
,
ec_dec
*
dec
);
...
...
This diff is collapsed.
Click to expand it.
libcelt/celt.c
+
7
−
2
View file @
276de721
...
...
@@ -53,8 +53,11 @@
#define M_PI 3.14159263
#endif
/** Encoder state
@brief Encoder state
*/
struct
CELTEncoder
{
const
CELTMode
*
mode
;
const
CELTMode
*
mode
;
/**< Mode used by the encoder */
int
frame_size
;
int
block_size
;
int
nb_blocks
;
...
...
@@ -417,7 +420,9 @@ int celt_encode(CELTEncoder *st, celt_int16_t *pcm, unsigned char *compressed, i
/****************************************************************************/
/** Decoder state
@brief Decoder state
*/
struct
CELTDecoder
{
const
CELTMode
*
mode
;
int
frame_size
;
...
...
This diff is collapsed.
Click to expand it.
libcelt/celt.h
+
3
−
0
View file @
276de721
...
...
@@ -56,8 +56,11 @@ extern "C" {
#define CELT_CORRUPTED_DATA -4
/* Requests */
/** GET the frame size used in the current mode */
#define CELT_GET_FRAME_SIZE 1000
/** GET the lookahead used in the current mode */
#define CELT_GET_LOOKAHEAD 1001
/** GET the number of channels used in the current mode */
#define CELT_GET_NB_CHANNELS 1002
...
...
This diff is collapsed.
Click to expand it.
libcelt/modes.h
+
9
−
6
View file @
276de721
...
...
@@ -35,6 +35,9 @@
#include
"celt_types.h"
#include
"celt.h"
/** Mode definition (opaque)
@brief Mode definition
*/
struct
CELTMode
{
int
overlap
;
int
mdctSize
;
...
...
@@ -45,15 +48,15 @@ struct CELTMode {
int
nbPBands
;
int
pitchEnd
;
const
int
*
eBands
;
const
int
*
pBands
;
const
int
*
eBands
;
/**< Definition for each "pseudo-critical band" */
const
int
*
pBands
;
/**< Definition of the bands used for the pitch */
float
ePredCoef
;
float
ePredCoef
;
/**< Prediction coefficient for the energy encoding */
int
nbAllocVectors
;
const
int
*
allocVectors
;
int
nbAllocVectors
;
/**< Number of lines in the matrix below */
const
int
*
allocVectors
;
/**< Number of bits in each band for several rates */
const
int
*
const
*
bits
;
const
int
*
const
*
bits
;
/**< Cache for pulses->bits mapping in each band */
};
...
...
This diff is collapsed.
Click to expand it.
libcelt/vq.h
+
5
−
1
View file @
276de721
/* (C) 2007 Jean-Marc Valin, CSIRO
*/
/**
@file vq.h
@brief Vector quantisation of the residual
*/
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
...
...
@@ -66,7 +70,7 @@ void alg_unquant(float *x, int N, int K, float *p, float alpha, ec_dec *dec);
* @param N Number of samples to encode
* @param K Number of pulses to use
* @param Y Lower frequency spectrum to use, normalised to the same standard deviation
* @param
p
Pitch vector (it is assumed that p+x is a unit vector)
* @param
P
Pitch vector (it is assumed that p+x is a unit vector)
* @param B Stride (number of channels multiplied by the number of MDCTs per frame)
* @param N0 Number of valid offsets
* @param enc Entropy encoder state
...
...
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