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
5a728882
Commit
5a728882
authored
12 years ago
by
Justin Ruggles
Browse files
Options
Downloads
Patches
Plain Diff
wmavoice: decode directly to the user-provided AVFrame
parent
205a95f7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavcodec/wmavoice.c
+8
-13
8 additions, 13 deletions
libavcodec/wmavoice.c
with
8 additions
and
13 deletions
libavcodec/wmavoice.c
+
8
−
13
View file @
5a728882
...
...
@@ -136,7 +136,6 @@ typedef struct {
* @name Global values specified in the stream header / extradata or used all over.
* @{
*/
AVFrame
frame
;
GetBitContext
gb
;
///< packet bitreader. During decoder init,
///< it contains the extradata from the
///< demuxer. During decoding, it contains
...
...
@@ -445,9 +444,6 @@ static av_cold int wmavoice_decode_init(AVCodecContext *ctx)
ctx
->
channel_layout
=
AV_CH_LAYOUT_MONO
;
ctx
->
sample_fmt
=
AV_SAMPLE_FMT_FLT
;
avcodec_get_frame_defaults
(
&
s
->
frame
);
ctx
->
coded_frame
=
&
s
->
frame
;
return
0
;
}
...
...
@@ -1735,7 +1731,8 @@ static int check_bits_for_superframe(GetBitContext *orig_gb,
* @return 0 on success, <0 on error or 1 if there was not enough data to
* fully parse the superframe
*/
static
int
synth_superframe
(
AVCodecContext
*
ctx
,
int
*
got_frame_ptr
)
static
int
synth_superframe
(
AVCodecContext
*
ctx
,
AVFrame
*
frame
,
int
*
got_frame_ptr
)
{
WMAVoiceContext
*
s
=
ctx
->
priv_data
;
GetBitContext
*
gb
=
&
s
->
gb
,
s_gb
;
...
...
@@ -1803,13 +1800,13 @@ static int synth_superframe(AVCodecContext *ctx, int *got_frame_ptr)
}
/* get output buffer */
s
->
frame
.
nb_samples
=
480
;
if
((
res
=
ff_get_buffer
(
ctx
,
&
s
->
frame
))
<
0
)
{
frame
->
nb_samples
=
480
;
if
((
res
=
ff_get_buffer
(
ctx
,
frame
))
<
0
)
{
av_log
(
ctx
,
AV_LOG_ERROR
,
"get_buffer() failed
\n
"
);
return
res
;
}
s
->
frame
.
nb_samples
=
n_samples
;
samples
=
(
float
*
)
s
->
frame
.
data
[
0
];
frame
->
nb_samples
=
n_samples
;
samples
=
(
float
*
)
frame
->
data
[
0
];
/* Parse frames, optionally preceded by per-frame (independent) LSPs. */
for
(
n
=
0
;
n
<
3
;
n
++
)
{
...
...
@@ -1966,11 +1963,10 @@ static int wmavoice_decode_packet(AVCodecContext *ctx, void *data,
copy_bits
(
&
s
->
pb
,
avpkt
->
data
,
size
,
gb
,
s
->
spillover_nbits
);
flush_put_bits
(
&
s
->
pb
);
s
->
sframe_cache_size
+=
s
->
spillover_nbits
;
if
((
res
=
synth_superframe
(
ctx
,
got_frame_ptr
))
==
0
&&
if
((
res
=
synth_superframe
(
ctx
,
data
,
got_frame_ptr
))
==
0
&&
*
got_frame_ptr
)
{
cnt
+=
s
->
spillover_nbits
;
s
->
skip_bits_next
=
cnt
&
7
;
*
(
AVFrame
*
)
data
=
s
->
frame
;
return
cnt
>>
3
;
}
else
skip_bits_long
(
gb
,
s
->
spillover_nbits
-
cnt
+
...
...
@@ -1985,12 +1981,11 @@ static int wmavoice_decode_packet(AVCodecContext *ctx, void *data,
s
->
sframe_cache_size
=
0
;
s
->
skip_bits_next
=
0
;
pos
=
get_bits_left
(
gb
);
if
((
res
=
synth_superframe
(
ctx
,
got_frame_ptr
))
<
0
)
{
if
((
res
=
synth_superframe
(
ctx
,
data
,
got_frame_ptr
))
<
0
)
{
return
res
;
}
else
if
(
*
got_frame_ptr
)
{
int
cnt
=
get_bits_count
(
gb
);
s
->
skip_bits_next
=
cnt
&
7
;
*
(
AVFrame
*
)
data
=
s
->
frame
;
return
cnt
>>
3
;
}
else
if
((
s
->
sframe_cache_size
=
pos
)
>
0
)
{
/* rewind bit reader to start of last (incomplete) superframe... */
...
...
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