Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tim-Philipp Müller
Opus
Commits
ae1fad2e
Commit
ae1fad2e
authored
Nov 08, 2010
by
Jean-Marc Valin
Browse files
CELT updated to 0.9.0 (+ PLC fix)
parent
05dd36a1
Changes
2
Hide whitespace changes
Inline
Side-by-side
celt
@
1ad93cf4
Subproject commit
4d2d9fc9e6feb7060589664af5855c9ef762bc89
Subproject commit
1ad93cf485b344abc9f8c67e4120fdb29536ea03
src/opus_encoder.c
View file @
ae1fad2e
...
...
@@ -171,7 +171,7 @@ int opus_encode(OpusEncoder *st, const short *pcm, int frame_size,
ec_byte_shrink
(
&
buf
,
bytes_per_packet
);
}
/* Encode high band with CELT */
ret
=
celt_encode_with_ec
(
st
->
celt_enc
,
pcm_buf
,
NULL
,
frame_size
,
NULL
,
bytes_per_packet
,
&
enc
);
ret
=
celt_encode_with_ec
(
st
->
celt_enc
,
pcm_buf
,
frame_size
,
NULL
,
bytes_per_packet
,
&
enc
);
for
(
i
=
0
;
i
<
ENCODER_DELAY_COMPENSATION
;
i
++
)
st
->
delay_buffer
[
i
]
=
pcm
[
frame_size
-
ENCODER_DELAY_COMPENSATION
+
i
];
}
else
{
...
...
Write
Preview
Supports
Markdown
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