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
d2667090
Commit
d2667090
authored
15 years ago
by
Vladimir Voroshilov
Browse files
Options
Downloads
Patches
Plain Diff
Pitch delay decoding
Originally committed as revision 19281 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
2b069134
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavcodec/g729dec.c
+25
-0
25 additions, 0 deletions
libavcodec/g729dec.c
with
25 additions
and
0 deletions
libavcodec/g729dec.c
+
25
−
0
View file @
d2667090
...
@@ -81,6 +81,8 @@ typedef struct {
...
@@ -81,6 +81,8 @@ typedef struct {
}
G729FormatDescription
;
}
G729FormatDescription
;
typedef
struct
{
typedef
struct
{
int
pitch_delay_int_prev
;
///< integer part of previous subframe's pitch delay (4.1.3)
/// (2.13) LSP quantizer outputs
/// (2.13) LSP quantizer outputs
int16_t
past_quantizer_output_buf
[
MA_NP
+
1
][
10
];
int16_t
past_quantizer_output_buf
[
MA_NP
+
1
][
10
];
int16_t
*
past_quantizer_outputs
[
MA_NP
+
1
];
int16_t
*
past_quantizer_outputs
[
MA_NP
+
1
];
...
@@ -206,6 +208,9 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
...
@@ -206,6 +208,9 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
uint8_t
quantizer_2nd_lo
;
///< second stage lower vector of quantizer (size in bits)
uint8_t
quantizer_2nd_lo
;
///< second stage lower vector of quantizer (size in bits)
uint8_t
quantizer_2nd_hi
;
///< second stage higher vector of quantizer (size in bits)
uint8_t
quantizer_2nd_hi
;
///< second stage higher vector of quantizer (size in bits)
int
pitch_delay_int
;
// pitch delay, integer part
int
pitch_delay_3x
;
// pitch delay, multiplied by 3
if
(
*
data_size
<
SUBFRAME_SIZE
<<
2
)
{
if
(
*
data_size
<
SUBFRAME_SIZE
<<
2
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Error processing packet: output buffer too small
\n
"
);
av_log
(
avctx
,
AV_LOG_ERROR
,
"Error processing packet: output buffer too small
\n
"
);
return
AVERROR
(
EIO
);
return
AVERROR
(
EIO
);
...
@@ -258,6 +263,24 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
...
@@ -258,6 +263,24 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
gc_1st_index
=
get_bits
(
&
gb
,
format
.
gc_1st_index_bits
);
gc_1st_index
=
get_bits
(
&
gb
,
format
.
gc_1st_index_bits
);
gc_2nd_index
=
get_bits
(
&
gb
,
format
.
gc_2nd_index_bits
);
gc_2nd_index
=
get_bits
(
&
gb
,
format
.
gc_2nd_index_bits
);
if
(
!
i
)
{
if
(
bad_pitch
)
pitch_delay_3x
=
3
*
ctx
->
pitch_delay_int_prev
;
else
pitch_delay_3x
=
ff_acelp_decode_8bit_to_1st_delay3
(
ac_index
);
}
else
{
int
pitch_delay_min
=
av_clip
(
ctx
->
pitch_delay_int_prev
-
5
,
PITCH_DELAY_MIN
,
PITCH_DELAY_MAX
-
9
);
if
(
packet_type
==
FORMAT_G729D_6K4
)
pitch_delay_3x
=
ff_acelp_decode_4bit_to_2nd_delay3
(
ac_index
,
pitch_delay_min
);
else
pitch_delay_3x
=
ff_acelp_decode_5_6_bit_to_2nd_delay3
(
ac_index
,
pitch_delay_min
);
}
/* Round pitch delay to nearest (used everywhere except ff_acelp_interpolate). */
pitch_delay_int
=
(
pitch_delay_3x
+
1
)
/
3
;
ff_acelp_weighted_vector_sum
(
fc
+
pitch_delay_int
,
ff_acelp_weighted_vector_sum
(
fc
+
pitch_delay_int
,
fc
+
pitch_delay_int
,
fc
+
pitch_delay_int
,
fc
,
1
<<
14
,
fc
,
1
<<
14
,
...
@@ -281,6 +304,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
...
@@ -281,6 +304,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
(
!
voicing
&&
frame_erasure
)
?
0
:
ctx
->
gain_pitch
,
(
!
voicing
&&
frame_erasure
)
?
0
:
ctx
->
gain_pitch
,
(
voicing
&&
frame_erasure
)
?
0
:
ctx
->
gain_code
,
(
voicing
&&
frame_erasure
)
?
0
:
ctx
->
gain_code
,
1
<<
13
,
14
,
SUBFRAME_SIZE
);
1
<<
13
,
14
,
SUBFRAME_SIZE
);
ctx
->
pitch_delay_int_prev
=
pitch_delay_int
;
}
}
*
data_size
=
SUBFRAME_SIZE
<<
2
;
*
data_size
=
SUBFRAME_SIZE
<<
2
;
...
...
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