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
97c7bdc6
Commit
97c7bdc6
authored
Dec 23, 2012
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cinaudio: decode directly to the user-provided AVFrame
parent
182821cf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
9 deletions
+5
-9
dsicinav.c
libavcodec/dsicinav.c
+5
-9
No files found.
libavcodec/dsicinav.c
View file @
97c7bdc6
...
...
@@ -46,7 +46,6 @@ typedef struct CinVideoContext {
}
CinVideoContext
;
typedef
struct
CinAudioContext
{
AVFrame
frame
;
int
initial_decode_frame
;
int
delta
;
}
CinAudioContext
;
...
...
@@ -327,15 +326,13 @@ static av_cold int cinaudio_decode_init(AVCodecContext *avctx)
avctx
->
channels
=
1
;
avctx
->
channel_layout
=
AV_CH_LAYOUT_MONO
;
avcodec_get_frame_defaults
(
&
cin
->
frame
);
avctx
->
coded_frame
=
&
cin
->
frame
;
return
0
;
}
static
int
cinaudio_decode_frame
(
AVCodecContext
*
avctx
,
void
*
data
,
int
*
got_frame_ptr
,
AVPacket
*
avpkt
)
{
AVFrame
*
frame
=
data
;
const
uint8_t
*
buf
=
avpkt
->
data
;
CinAudioContext
*
cin
=
avctx
->
priv_data
;
const
uint8_t
*
buf_end
=
buf
+
avpkt
->
size
;
...
...
@@ -343,12 +340,12 @@ static int cinaudio_decode_frame(AVCodecContext *avctx, void *data,
int
delta
,
ret
;
/* get output buffer */
cin
->
frame
.
nb_samples
=
avpkt
->
size
-
cin
->
initial_decode_frame
;
if
((
ret
=
ff_get_buffer
(
avctx
,
&
cin
->
frame
))
<
0
)
{
frame
->
nb_samples
=
avpkt
->
size
-
cin
->
initial_decode_frame
;
if
((
ret
=
ff_get_buffer
(
avctx
,
frame
))
<
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"get_buffer() failed
\n
"
);
return
ret
;
}
samples
=
(
int16_t
*
)
cin
->
frame
.
data
[
0
];
samples
=
(
int16_t
*
)
frame
->
data
[
0
];
delta
=
cin
->
delta
;
if
(
cin
->
initial_decode_frame
)
{
...
...
@@ -364,8 +361,7 @@ static int cinaudio_decode_frame(AVCodecContext *avctx, void *data,
}
cin
->
delta
=
delta
;
*
got_frame_ptr
=
1
;
*
(
AVFrame
*
)
data
=
cin
->
frame
;
*
got_frame_ptr
=
1
;
return
avpkt
->
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