Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
5932e2d7
Commit
5932e2d7
authored
Dec 23, 2012
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ape: decode directly to the user-provided AVFrame
parent
da28bb3f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
11 deletions
+7
-11
apedec.c
libavcodec/apedec.c
+7
-11
No files found.
libavcodec/apedec.c
View file @
5932e2d7
...
...
@@ -129,7 +129,6 @@ typedef struct APEPredictor {
typedef
struct
APEContext
{
AVClass
*
class
;
///< class for AVOptions
AVCodecContext
*
avctx
;
AVFrame
frame
;
DSPContext
dsp
;
int
channels
;
int
samples
;
///< samples left to decode in current frame
...
...
@@ -235,9 +234,6 @@ static av_cold int ape_decode_init(AVCodecContext *avctx)
ff_dsputil_init
(
&
s
->
dsp
,
avctx
);
avctx
->
channel_layout
=
(
avctx
->
channels
==
2
)
?
AV_CH_LAYOUT_STEREO
:
AV_CH_LAYOUT_MONO
;
avcodec_get_frame_defaults
(
&
s
->
frame
);
avctx
->
coded_frame
=
&
s
->
frame
;
return
0
;
filter_alloc_fail:
ape_decode_close
(
avctx
);
...
...
@@ -826,6 +822,7 @@ static void ape_unpack_stereo(APEContext *ctx, int count)
static
int
ape_decode_frame
(
AVCodecContext
*
avctx
,
void
*
data
,
int
*
got_frame_ptr
,
AVPacket
*
avpkt
)
{
AVFrame
*
frame
=
data
;
const
uint8_t
*
buf
=
avpkt
->
data
;
APEContext
*
s
=
avctx
->
priv_data
;
uint8_t
*
sample8
;
...
...
@@ -909,8 +906,8 @@ static int ape_decode_frame(AVCodecContext *avctx, void *data,
s
->
decoded
[
1
]
=
s
->
decoded_buffer
+
FFALIGN
(
blockstodecode
,
8
);
/* get output buffer */
s
->
frame
.
nb_samples
=
blockstodecode
;
if
((
ret
=
ff_get_buffer
(
avctx
,
&
s
->
frame
))
<
0
)
{
frame
->
nb_samples
=
blockstodecode
;
if
((
ret
=
ff_get_buffer
(
avctx
,
frame
))
<
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"get_buffer() failed
\n
"
);
return
ret
;
}
...
...
@@ -932,21 +929,21 @@ static int ape_decode_frame(AVCodecContext *avctx, void *data,
switch
(
s
->
bps
)
{
case
8
:
for
(
ch
=
0
;
ch
<
s
->
channels
;
ch
++
)
{
sample8
=
(
uint8_t
*
)
s
->
frame
.
data
[
ch
];
sample8
=
(
uint8_t
*
)
frame
->
data
[
ch
];
for
(
i
=
0
;
i
<
blockstodecode
;
i
++
)
*
sample8
++
=
(
s
->
decoded
[
ch
][
i
]
+
0x80
)
&
0xff
;
}
break
;
case
16
:
for
(
ch
=
0
;
ch
<
s
->
channels
;
ch
++
)
{
sample16
=
(
int16_t
*
)
s
->
frame
.
data
[
ch
];
sample16
=
(
int16_t
*
)
frame
->
data
[
ch
];
for
(
i
=
0
;
i
<
blockstodecode
;
i
++
)
*
sample16
++
=
s
->
decoded
[
ch
][
i
];
}
break
;
case
24
:
for
(
ch
=
0
;
ch
<
s
->
channels
;
ch
++
)
{
sample24
=
(
int32_t
*
)
s
->
frame
.
data
[
ch
];
sample24
=
(
int32_t
*
)
frame
->
data
[
ch
];
for
(
i
=
0
;
i
<
blockstodecode
;
i
++
)
*
sample24
++
=
s
->
decoded
[
ch
][
i
]
<<
8
;
}
...
...
@@ -955,8 +952,7 @@ static int ape_decode_frame(AVCodecContext *avctx, void *data,
s
->
samples
-=
blockstodecode
;
*
got_frame_ptr
=
1
;
*
(
AVFrame
*
)
data
=
s
->
frame
;
*
got_frame_ptr
=
1
;
return
bytes_used
;
}
...
...
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