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
30e2493e
Commit
30e2493e
authored
14 years ago
by
Jean-Marc Valin
Browse files
Options
Downloads
Patches
Plain Diff
Allowing fractional bits for splitting angle (theta)
parent
0b9e9ce4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libcelt/bands.c
+35
-21
35 additions, 21 deletions
libcelt/bands.c
libcelt/rate.h
+1
-21
1 addition, 21 deletions
libcelt/rate.h
with
36 additions
and
42 deletions
libcelt/bands.c
+
35
−
21
View file @
30e2493e
...
...
@@ -524,6 +524,35 @@ static void haar1(celt_norm *X, int N0, int stride)
}
}
static
int
compute_qn
(
int
N
,
int
b
,
int
offset
,
int
stereo
)
{
static
const
celt_int16
exp2_table8
[
8
]
=
{
16384
,
17867
,
19484
,
21247
,
23170
,
25268
,
27554
,
30048
};
int
qn
,
qb
;
int
N2
=
2
*
N
-
1
;
if
(
stereo
&&
N
==
2
)
N2
--
;
qb
=
(
b
+
N2
*
offset
)
/
(
N2
);
if
(
qb
>
(
b
>>
1
)
-
(
1
<<
BITRES
))
qb
=
(
b
>>
1
)
-
(
1
<<
BITRES
);
if
(
qb
<
0
)
qb
=
0
;
if
(
qb
>
14
<<
BITRES
)
qb
=
14
<<
BITRES
;
if
(
qb
<
(
1
<<
BITRES
>>
1
))
{
qn
=
1
;
}
else
{
qn
=
((
1
<<
(
qb
>>
BITRES
))
*
exp2_table8
[
qb
&
0x7
]
+
(
1
<<
14
))
>>
14
;
qn
=
qn
>>
1
<<
1
;
if
(
qn
>
1024
)
qn
=
1024
;
}
return
qn
;
}
/* This function is responsible for encoding and decoding a band for both
the mono and stereo case. Even in the mono case, it can split the band
in two and transmit the energy difference with the two half-bands. It
...
...
@@ -637,35 +666,20 @@ static void quant_band(int encode, const CELTMode *m, int i, celt_norm *X, celt_
if
(
split
)
{
int
qb
,
qn
;
int
qn
;
int
itheta
=
0
;
int
mbits
,
sbits
,
delta
;
int
qalloc
;
celt_word16
mid
,
side
;
int
offset
,
N2
;
offset
=
((
m
->
logN
[
i
]
+
(
LM
<<
BITRES
))
>>
1
)
-
(
stereo
?
QTHETA_OFFSET_STEREO
:
QTHETA_OFFSET
);
int
offset
;
/* Decide on the resolution to give to the split parameter theta */
N2
=
2
*
N
-
1
;
if
(
stereo
&&
N
==
2
)
N2
--
;
qb
=
(
b
+
N2
*
offset
)
/
(
N2
);
if
(
qb
>
(
b
>>
1
)
-
(
1
<<
BITRES
))
qb
=
(
b
>>
1
)
-
(
1
<<
BITRES
);
if
(
qb
<
0
)
qb
=
0
;
if
(
qb
>
14
<<
BITRES
)
qb
=
14
<<
BITRES
;
qb
>>=
BITRES
;
qn
=
1
<<
qb
;
offset
=
((
m
->
logN
[
i
]
+
(
LM
<<
BITRES
))
>>
1
)
-
(
stereo
?
QTHETA_OFFSET_STEREO
:
QTHETA_OFFSET
);
qn
=
compute_qn
(
N
,
b
,
offset
,
stereo
);
qalloc
=
0
;
if
(
qn
!=
1
)
{
int
shift
=
14
-
qb
;
if
(
encode
)
{
if
(
stereo
)
...
...
@@ -685,7 +699,7 @@ static void quant_band(int encode, const CELTMode *m, int i, celt_norm *X, celt_
itheta
=
floor
(.
5
f
+
16384
*
0
.
63662
f
*
atan2
(
side
,
mid
));
#endif
itheta
=
(
itheta
+
(
1
<<
shift
>>
1
))
>>
shift
;
itheta
=
(
itheta
*
qn
+
8192
)
>>
14
;
}
/* Entropy coding of the angle. We use a uniform pdf for the
...
...
@@ -732,7 +746,7 @@ static void quant_band(int encode, const CELTMode *m, int i, celt_norm *X, celt_
}
qalloc
=
log2_frac
(
ft
,
BITRES
)
-
log2_frac
(
fs
,
BITRES
)
+
1
;
}
itheta
<<=
shift
;
itheta
=
itheta
*
16384
/
qn
;
}
else
{
if
(
stereo
&&
encode
)
stereo_band_mix
(
m
,
X
,
Y
,
bandE
,
1
,
i
,
1
,
N
);
...
...
This diff is collapsed.
Click to expand it.
libcelt/rate.h
+
1
−
21
View file @
30e2493e
...
...
@@ -36,7 +36,7 @@
#define MAX_PSEUDO 40
#define LOG_MAX_PSEUDO 6
#define MAX_PULSES
128
#define MAX_PULSES
256
#define LOG_MAX_PULSES 7
#define BITRES 3
...
...
@@ -73,26 +73,6 @@ static inline int bits2pulses(const CELTMode *m, const celt_int16 *cache, int N,
return
lo
;
else
return
hi
;
lo
=
0
;
hi
=
MAX_PULSES
-
1
;
/* Instead of using the "bisection condition" we use a fixed number of
iterations because it should be faster */
/*while (hi-lo != 1)*/
for
(
i
=
0
;
i
<
LOG_MAX_PULSES
;
i
++
)
{
int
mid
=
(
lo
+
hi
)
>>
1
;
/* OPT: Make sure this is implemented with a conditional move */
if
(
cache
[
mid
]
>=
bits
)
hi
=
mid
;
else
lo
=
mid
;
}
if
(
bits
-
cache
[
lo
]
<=
cache
[
hi
]
-
bits
)
return
lo
;
else
return
hi
;
}
...
...
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