Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
da28bb3f
Commit
da28bb3f
authored
Dec 23, 2012
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
amrwb: decode directly to the user-provided AVFrame
parent
e3db3429
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
9 deletions
+5
-9
amrwbdec.c
libavcodec/amrwbdec.c
+5
-9
No files found.
libavcodec/amrwbdec.c
View file @
da28bb3f
...
...
@@ -43,7 +43,6 @@
#include "amrwbdata.h"
typedef
struct
{
AVFrame
avframe
;
///< AVFrame for decoded samples
AMRWBFrame
frame
;
///< AMRWB parameters decoded from bitstream
enum
Mode
fr_cur_mode
;
///< mode index of current frame
uint8_t
fr_quality
;
///< frame quality index (FQI)
...
...
@@ -113,9 +112,6 @@ static av_cold int amrwb_decode_init(AVCodecContext *avctx)
for
(
i
=
0
;
i
<
4
;
i
++
)
ctx
->
prediction_error
[
i
]
=
MIN_ENERGY
;
avcodec_get_frame_defaults
(
&
ctx
->
avframe
);
avctx
->
coded_frame
=
&
ctx
->
avframe
;
return
0
;
}
...
...
@@ -1077,6 +1073,7 @@ static int amrwb_decode_frame(AVCodecContext *avctx, void *data,
int
*
got_frame_ptr
,
AVPacket
*
avpkt
)
{
AMRWBContext
*
ctx
=
avctx
->
priv_data
;
AVFrame
*
frame
=
data
;
AMRWBFrame
*
cf
=
&
ctx
->
frame
;
const
uint8_t
*
buf
=
avpkt
->
data
;
int
buf_size
=
avpkt
->
size
;
...
...
@@ -1094,12 +1091,12 @@ static int amrwb_decode_frame(AVCodecContext *avctx, void *data,
int
sub
,
i
,
ret
;
/* get output buffer */
ctx
->
avframe
.
nb_samples
=
4
*
AMRWB_SFR_SIZE_16k
;
if
((
ret
=
ff_get_buffer
(
avctx
,
&
ctx
->
av
frame
))
<
0
)
{
frame
->
nb_samples
=
4
*
AMRWB_SFR_SIZE_16k
;
if
((
ret
=
ff_get_buffer
(
avctx
,
frame
))
<
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"get_buffer() failed
\n
"
);
return
ret
;
}
buf_out
=
(
float
*
)
ctx
->
avframe
.
data
[
0
];
buf_out
=
(
float
*
)
frame
->
data
[
0
];
header_size
=
decode_mime_header
(
ctx
,
buf
);
if
(
ctx
->
fr_cur_mode
>
MODE_SID
)
{
...
...
@@ -1244,8 +1241,7 @@ static int amrwb_decode_frame(AVCodecContext *avctx, void *data,
memcpy
(
ctx
->
isp_sub4_past
,
ctx
->
isp
[
3
],
LP_ORDER
*
sizeof
(
ctx
->
isp
[
3
][
0
]));
memcpy
(
ctx
->
isf_past_final
,
ctx
->
isf_cur
,
LP_ORDER
*
sizeof
(
float
));
*
got_frame_ptr
=
1
;
*
(
AVFrame
*
)
data
=
ctx
->
avframe
;
*
got_frame_ptr
=
1
;
return
expected_fr_size
;
}
...
...
Write
Preview
Markdown
is supported
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