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
79fb2a1f
Commit
79fb2a1f
authored
Dec 24, 2012
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ra288: decode directly to the user-provided AVFrame
parent
f7e8c87c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
9 deletions
+5
-9
ra288.c
libavcodec/ra288.c
+5
-9
No files found.
libavcodec/ra288.c
View file @
79fb2a1f
...
...
@@ -38,7 +38,6 @@
#define RA288_BLOCKS_PER_FRAME 32
typedef
struct
{
AVFrame
frame
;
AVFloatDSPContext
fdsp
;
DECLARE_ALIGNED
(
32
,
float
,
sp_lpc
)[
FFALIGN
(
36
,
16
)];
///< LPC coefficients for speech data (spec: A)
DECLARE_ALIGNED
(
32
,
float
,
gain_lpc
)[
FFALIGN
(
10
,
16
)];
///< LPC coefficients for gain (spec: GB)
...
...
@@ -70,9 +69,6 @@ static av_cold int ra288_decode_init(AVCodecContext *avctx)
avpriv_float_dsp_init
(
&
ractx
->
fdsp
,
avctx
->
flags
&
CODEC_FLAG_BITEXACT
);
avcodec_get_frame_defaults
(
&
ractx
->
frame
);
avctx
->
coded_frame
=
&
ractx
->
frame
;
return
0
;
}
...
...
@@ -178,6 +174,7 @@ static void backward_filter(RA288Context *ractx,
static
int
ra288_decode_frame
(
AVCodecContext
*
avctx
,
void
*
data
,
int
*
got_frame_ptr
,
AVPacket
*
avpkt
)
{
AVFrame
*
frame
=
data
;
const
uint8_t
*
buf
=
avpkt
->
data
;
int
buf_size
=
avpkt
->
size
;
float
*
out
;
...
...
@@ -193,12 +190,12 @@ static int ra288_decode_frame(AVCodecContext * avctx, void *data,
}
/* get output buffer */
ractx
->
frame
.
nb_samples
=
RA288_BLOCK_SIZE
*
RA288_BLOCKS_PER_FRAME
;
if
((
ret
=
ff_get_buffer
(
avctx
,
&
ractx
->
frame
))
<
0
)
{
frame
->
nb_samples
=
RA288_BLOCK_SIZE
*
RA288_BLOCKS_PER_FRAME
;
if
((
ret
=
ff_get_buffer
(
avctx
,
frame
))
<
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"get_buffer() failed
\n
"
);
return
ret
;
}
out
=
(
float
*
)
ractx
->
frame
.
data
[
0
];
out
=
(
float
*
)
frame
->
data
[
0
];
init_get_bits
(
&
gb
,
buf
,
avctx
->
block_align
*
8
);
...
...
@@ -220,8 +217,7 @@ static int ra288_decode_frame(AVCodecContext * avctx, void *data,
}
}
*
got_frame_ptr
=
1
;
*
(
AVFrame
*
)
data
=
ractx
->
frame
;
*
got_frame_ptr
=
1
;
return
avctx
->
block_align
;
}
...
...
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