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
f13db94d
Commit
f13db94d
authored
Dec 16, 2011
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libavcodec: Apply parameter change side data when decoding audio
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
2215c39e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
0 deletions
+44
-0
utils.c
libavcodec/utils.c
+44
-0
No files found.
libavcodec/utils.c
View file @
f13db94d
...
...
@@ -40,6 +40,7 @@
#include "thread.h"
#include "audioconvert.h"
#include "internal.h"
#include "bytestream.h"
#include <stdlib.h>
#include <stdarg.h>
#include <limits.h>
...
...
@@ -914,6 +915,47 @@ int attribute_align_arg avcodec_decode_audio3(AVCodecContext *avctx, int16_t *sa
}
#endif
static
void
apply_param_change
(
AVCodecContext
*
avctx
,
AVPacket
*
avpkt
)
{
int
size
=
0
;
const
uint8_t
*
data
;
uint32_t
flags
;
if
(
!
(
avctx
->
codec
->
capabilities
&
CODEC_CAP_PARAM_CHANGE
))
return
;
data
=
av_packet_get_side_data
(
avpkt
,
AV_PKT_DATA_PARAM_CHANGE
,
&
size
);
if
(
!
data
||
size
<
4
)
return
;
flags
=
bytestream_get_le32
(
&
data
);
size
-=
4
;
if
(
size
<
4
)
/* Required for any of the changes */
return
;
if
(
flags
&
AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_COUNT
)
{
avctx
->
channels
=
bytestream_get_le32
(
&
data
);
size
-=
4
;
}
if
(
flags
&
AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT
)
{
if
(
size
<
8
)
return
;
avctx
->
channel_layout
=
bytestream_get_le64
(
&
data
);
size
-=
8
;
}
if
(
size
<
4
)
return
;
if
(
flags
&
AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE
)
{
avctx
->
sample_rate
=
bytestream_get_le32
(
&
data
);
size
-=
4
;
}
if
(
flags
&
AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS
)
{
if
(
size
<
8
)
return
;
avctx
->
width
=
bytestream_get_le32
(
&
data
);
avctx
->
height
=
bytestream_get_le32
(
&
data
);
size
-=
8
;
}
}
int
attribute_align_arg
avcodec_decode_audio4
(
AVCodecContext
*
avctx
,
AVFrame
*
frame
,
int
*
got_frame_ptr
,
...
...
@@ -930,6 +972,8 @@ int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx,
return
AVERROR
(
EINVAL
);
}
apply_param_change
(
avctx
,
avpkt
);
if
((
avctx
->
codec
->
capabilities
&
CODEC_CAP_DELAY
)
||
avpkt
->
size
)
{
ret
=
avctx
->
codec
->
decode
(
avctx
,
frame
,
got_frame_ptr
,
avpkt
);
if
(
ret
>=
0
&&
*
got_frame_ptr
)
{
...
...
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