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
cbeb3ed3
Commit
cbeb3ed3
authored
Dec 24, 2012
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ralf: decode directly to the user-provided AVFrame
parent
e01e1a46
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
12 deletions
+7
-12
ralf.c
libavcodec/ralf.c
+7
-12
No files found.
libavcodec/ralf.c
View file @
cbeb3ed3
...
...
@@ -49,8 +49,6 @@ typedef struct VLCSet {
#define RALF_MAX_PKT_SIZE 8192
typedef
struct
RALFContext
{
AVFrame
frame
;
int
version
;
int
max_frame_size
;
VLCSet
sets
[
3
];
...
...
@@ -154,9 +152,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
avctx
->
channel_layout
=
(
avctx
->
channels
==
2
)
?
AV_CH_LAYOUT_STEREO
:
AV_CH_LAYOUT_MONO
;
avcodec_get_frame_defaults
(
&
ctx
->
frame
);
avctx
->
coded_frame
=
&
ctx
->
frame
;
ctx
->
max_frame_size
=
AV_RB32
(
avctx
->
extradata
+
16
);
if
(
ctx
->
max_frame_size
>
(
1
<<
20
)
||
!
ctx
->
max_frame_size
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"invalid frame size %d
\n
"
,
...
...
@@ -426,6 +421,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr,
AVPacket
*
avpkt
)
{
RALFContext
*
ctx
=
avctx
->
priv_data
;
AVFrame
*
frame
=
data
;
int16_t
*
samples0
;
int16_t
*
samples1
;
int
ret
;
...
...
@@ -463,13 +459,13 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr,
src_size
=
avpkt
->
size
;
}
ctx
->
frame
.
nb_samples
=
ctx
->
max_frame_size
;
if
((
ret
=
ff_get_buffer
(
avctx
,
&
ctx
->
frame
))
<
0
)
{
frame
->
nb_samples
=
ctx
->
max_frame_size
;
if
((
ret
=
ff_get_buffer
(
avctx
,
frame
))
<
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Me fail get_buffer()? That's unpossible!
\n
"
);
return
ret
;
}
samples0
=
(
int16_t
*
)
ctx
->
frame
.
data
[
0
];
samples1
=
(
int16_t
*
)
ctx
->
frame
.
data
[
1
];
samples0
=
(
int16_t
*
)
frame
->
data
[
0
];
samples1
=
(
int16_t
*
)
frame
->
data
[
1
];
if
(
src_size
<
5
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"too short packets are too short!
\n
"
);
...
...
@@ -511,9 +507,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr,
bytes_left
-=
ctx
->
block_size
[
i
];
}
ctx
->
frame
.
nb_samples
=
ctx
->
sample_offset
;
*
got_frame_ptr
=
ctx
->
sample_offset
>
0
;
*
(
AVFrame
*
)
data
=
ctx
->
frame
;
frame
->
nb_samples
=
ctx
->
sample_offset
;
*
got_frame_ptr
=
ctx
->
sample_offset
>
0
;
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