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
79d501a8
Commit
79d501a8
authored
Nov 09, 2013
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
indeo2: use the AVFrame API properly.
parent
4b8a1941
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
12 deletions
+13
-12
indeo2.c
libavcodec/indeo2.c
+13
-12
No files found.
libavcodec/indeo2.c
View file @
79d501a8
...
@@ -34,7 +34,7 @@
...
@@ -34,7 +34,7 @@
typedef
struct
Ir2Context
{
typedef
struct
Ir2Context
{
AVCodecContext
*
avctx
;
AVCodecContext
*
avctx
;
AVFrame
picture
;
AVFrame
*
picture
;
GetBitContext
gb
;
GetBitContext
gb
;
int
decode_delta
;
int
decode_delta
;
}
Ir2Context
;
}
Ir2Context
;
...
@@ -146,7 +146,7 @@ static int ir2_decode_frame(AVCodecContext *avctx,
...
@@ -146,7 +146,7 @@ static int ir2_decode_frame(AVCodecContext *avctx,
const
uint8_t
*
buf
=
avpkt
->
data
;
const
uint8_t
*
buf
=
avpkt
->
data
;
int
buf_size
=
avpkt
->
size
;
int
buf_size
=
avpkt
->
size
;
AVFrame
*
picture
=
data
;
AVFrame
*
picture
=
data
;
AVFrame
*
const
p
=
&
s
->
picture
;
AVFrame
*
const
p
=
s
->
picture
;
int
start
,
ret
;
int
start
,
ret
;
if
((
ret
=
ff_reget_buffer
(
avctx
,
p
))
<
0
)
{
if
((
ret
=
ff_reget_buffer
(
avctx
,
p
))
<
0
)
{
...
@@ -173,36 +173,36 @@ static int ir2_decode_frame(AVCodecContext *avctx,
...
@@ -173,36 +173,36 @@ static int ir2_decode_frame(AVCodecContext *avctx,
if
(
s
->
decode_delta
)
{
/* intraframe */
if
(
s
->
decode_delta
)
{
/* intraframe */
if
((
ret
=
ir2_decode_plane
(
s
,
avctx
->
width
,
avctx
->
height
,
if
((
ret
=
ir2_decode_plane
(
s
,
avctx
->
width
,
avctx
->
height
,
s
->
picture
.
data
[
0
],
s
->
picture
.
linesize
[
0
],
p
->
data
[
0
],
p
->
linesize
[
0
],
ir2_luma_table
))
<
0
)
ir2_luma_table
))
<
0
)
return
ret
;
return
ret
;
/* swapped U and V */
/* swapped U and V */
if
((
ret
=
ir2_decode_plane
(
s
,
avctx
->
width
>>
2
,
avctx
->
height
>>
2
,
if
((
ret
=
ir2_decode_plane
(
s
,
avctx
->
width
>>
2
,
avctx
->
height
>>
2
,
s
->
picture
.
data
[
2
],
s
->
picture
.
linesize
[
2
],
p
->
data
[
2
],
p
->
linesize
[
2
],
ir2_luma_table
))
<
0
)
ir2_luma_table
))
<
0
)
return
ret
;
return
ret
;
if
((
ret
=
ir2_decode_plane
(
s
,
avctx
->
width
>>
2
,
avctx
->
height
>>
2
,
if
((
ret
=
ir2_decode_plane
(
s
,
avctx
->
width
>>
2
,
avctx
->
height
>>
2
,
s
->
picture
.
data
[
1
],
s
->
picture
.
linesize
[
1
],
p
->
data
[
1
],
p
->
linesize
[
1
],
ir2_luma_table
))
<
0
)
ir2_luma_table
))
<
0
)
return
ret
;
return
ret
;
}
else
{
/* interframe */
}
else
{
/* interframe */
if
((
ret
=
ir2_decode_plane_inter
(
s
,
avctx
->
width
,
avctx
->
height
,
if
((
ret
=
ir2_decode_plane_inter
(
s
,
avctx
->
width
,
avctx
->
height
,
s
->
picture
.
data
[
0
],
s
->
picture
.
linesize
[
0
],
p
->
data
[
0
],
p
->
linesize
[
0
],
ir2_luma_table
))
<
0
)
ir2_luma_table
))
<
0
)
return
ret
;
return
ret
;
/* swapped U and V */
/* swapped U and V */
if
((
ret
=
ir2_decode_plane_inter
(
s
,
avctx
->
width
>>
2
,
avctx
->
height
>>
2
,
if
((
ret
=
ir2_decode_plane_inter
(
s
,
avctx
->
width
>>
2
,
avctx
->
height
>>
2
,
s
->
picture
.
data
[
2
],
s
->
picture
.
linesize
[
2
],
p
->
data
[
2
],
p
->
linesize
[
2
],
ir2_luma_table
))
<
0
)
ir2_luma_table
))
<
0
)
return
ret
;
return
ret
;
if
((
ret
=
ir2_decode_plane_inter
(
s
,
avctx
->
width
>>
2
,
avctx
->
height
>>
2
,
if
((
ret
=
ir2_decode_plane_inter
(
s
,
avctx
->
width
>>
2
,
avctx
->
height
>>
2
,
s
->
picture
.
data
[
1
],
s
->
picture
.
linesize
[
1
],
p
->
data
[
1
],
p
->
linesize
[
1
],
ir2_luma_table
))
<
0
)
ir2_luma_table
))
<
0
)
return
ret
;
return
ret
;
}
}
if
((
ret
=
av_frame_ref
(
picture
,
&
s
->
picture
))
<
0
)
if
((
ret
=
av_frame_ref
(
picture
,
p
))
<
0
)
return
ret
;
return
ret
;
*
got_frame
=
1
;
*
got_frame
=
1
;
...
@@ -219,7 +219,9 @@ static av_cold int ir2_decode_init(AVCodecContext *avctx)
...
@@ -219,7 +219,9 @@ static av_cold int ir2_decode_init(AVCodecContext *avctx)
avctx
->
pix_fmt
=
AV_PIX_FMT_YUV410P
;
avctx
->
pix_fmt
=
AV_PIX_FMT_YUV410P
;
avcodec_get_frame_defaults
(
&
ic
->
picture
);
ic
->
picture
=
av_frame_alloc
();
if
(
!
ic
->
picture
)
return
AVERROR
(
ENOMEM
);
ir2_vlc
.
table
=
vlc_tables
;
ir2_vlc
.
table
=
vlc_tables
;
ir2_vlc
.
table_allocated
=
1
<<
CODE_VLC_BITS
;
ir2_vlc
.
table_allocated
=
1
<<
CODE_VLC_BITS
;
...
@@ -239,9 +241,8 @@ static av_cold int ir2_decode_init(AVCodecContext *avctx)
...
@@ -239,9 +241,8 @@ static av_cold int ir2_decode_init(AVCodecContext *avctx)
static
av_cold
int
ir2_decode_end
(
AVCodecContext
*
avctx
)
static
av_cold
int
ir2_decode_end
(
AVCodecContext
*
avctx
)
{
{
Ir2Context
*
const
ic
=
avctx
->
priv_data
;
Ir2Context
*
const
ic
=
avctx
->
priv_data
;
AVFrame
*
pic
=
&
ic
->
picture
;
av_frame_
unref
(
pic
);
av_frame_
free
(
&
ic
->
picture
);
return
0
;
return
0
;
}
}
...
...
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