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
c815ca36
Commit
c815ca36
authored
Dec 24, 2012
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wma: decode directly to the user-provided AVFrame
parent
f4a283ee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
8 deletions
+5
-8
wmadec.c
libavcodec/wmadec.c
+5
-8
No files found.
libavcodec/wmadec.c
View file @
c815ca36
...
...
@@ -110,9 +110,6 @@ static int wma_decode_init(AVCodecContext * avctx)
avctx
->
sample_fmt
=
AV_SAMPLE_FMT_FLTP
;
avcodec_get_frame_defaults
(
&
s
->
frame
);
avctx
->
coded_frame
=
&
s
->
frame
;
return
0
;
}
...
...
@@ -788,6 +785,7 @@ static int wma_decode_frame(WMACodecContext *s, float **samples,
static
int
wma_decode_superframe
(
AVCodecContext
*
avctx
,
void
*
data
,
int
*
got_frame_ptr
,
AVPacket
*
avpkt
)
{
AVFrame
*
frame
=
data
;
const
uint8_t
*
buf
=
avpkt
->
data
;
int
buf_size
=
avpkt
->
size
;
WMACodecContext
*
s
=
avctx
->
priv_data
;
...
...
@@ -821,12 +819,12 @@ static int wma_decode_superframe(AVCodecContext *avctx, void *data,
}
/* get output buffer */
s
->
frame
.
nb_samples
=
nb_frames
*
s
->
frame_len
;
if
((
ret
=
ff_get_buffer
(
avctx
,
&
s
->
frame
))
<
0
)
{
frame
->
nb_samples
=
nb_frames
*
s
->
frame_len
;
if
((
ret
=
ff_get_buffer
(
avctx
,
frame
))
<
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"get_buffer() failed
\n
"
);
return
ret
;
}
samples
=
(
float
**
)
s
->
frame
.
extended_data
;
samples
=
(
float
**
)
frame
->
extended_data
;
samples_offset
=
0
;
if
(
s
->
use_bit_reservoir
)
{
...
...
@@ -905,8 +903,7 @@ static int wma_decode_superframe(AVCodecContext *avctx, void *data,
s
->
frame_len_bits
,
s
->
block_len_bits
,
s
->
frame_len
,
s
->
block_len
,
(
int8_t
*
)
samples
-
(
int8_t
*
)
data
,
avctx
->
block_align
);
*
got_frame_ptr
=
1
;
*
(
AVFrame
*
)
data
=
s
->
frame
;
*
got_frame_ptr
=
1
;
return
avctx
->
block_align
;
fail:
...
...
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