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
fb12fca3
Commit
fb12fca3
authored
Apr 08, 2007
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
factorize & 0x0F
Originally committed as revision 8675 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
bee4f778
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
c93.c
libavcodec/c93.c
+7
-6
No files found.
libavcodec/c93.c
View file @
fb12fca3
...
@@ -121,8 +121,7 @@ static int decode_frame(AVCodecContext *avctx, void *data,
...
@@ -121,8 +121,7 @@ static int decode_frame(AVCodecContext *avctx, void *data,
AVFrame
*
const
oldpic
=
&
c93
->
pictures
[
c93
->
currentpic
^
1
];
AVFrame
*
const
oldpic
=
&
c93
->
pictures
[
c93
->
currentpic
^
1
];
AVFrame
*
picture
=
data
;
AVFrame
*
picture
=
data
;
uint8_t
*
out
;
uint8_t
*
out
;
int
stride
,
i
,
x
,
y
;
int
stride
,
i
,
x
,
y
,
bt
=
0
;
C93BlockType
bt
=
0
;
c93
->
currentpic
^=
1
;
c93
->
currentpic
^=
1
;
...
@@ -161,11 +160,13 @@ static int decode_frame(AVCodecContext *avctx, void *data,
...
@@ -161,11 +160,13 @@ static int decode_frame(AVCodecContext *avctx, void *data,
uint8_t
*
copy_from
=
oldpic
->
data
[
0
];
uint8_t
*
copy_from
=
oldpic
->
data
[
0
];
unsigned
int
offset
,
j
;
unsigned
int
offset
,
j
;
uint8_t
cols
[
4
],
grps
[
4
];
uint8_t
cols
[
4
],
grps
[
4
];
C93BlockType
block_type
;
if
(
!
bt
)
if
(
!
bt
)
bt
=
*
buf
++
;
bt
=
*
buf
++
;
switch
(
bt
&
0x0F
)
{
block_type
=
bt
&
0x0F
;
switch
(
block_type
)
{
case
C93_8X8_FROM_PREV
:
case
C93_8X8_FROM_PREV
:
offset
=
bytestream_get_le16
(
&
buf
);
offset
=
bytestream_get_le16
(
&
buf
);
if
(
copy_block
(
avctx
,
out
,
copy_from
,
offset
,
8
,
stride
))
if
(
copy_block
(
avctx
,
out
,
copy_from
,
offset
,
8
,
stride
))
...
@@ -199,11 +200,11 @@ static int decode_frame(AVCodecContext *avctx, void *data,
...
@@ -199,11 +200,11 @@ static int decode_frame(AVCodecContext *avctx, void *data,
case
C93_4X4_4COLOR_GRP
:
case
C93_4X4_4COLOR_GRP
:
for
(
j
=
0
;
j
<
8
;
j
+=
4
)
{
for
(
j
=
0
;
j
<
8
;
j
+=
4
)
{
for
(
i
=
0
;
i
<
8
;
i
+=
4
)
{
for
(
i
=
0
;
i
<
8
;
i
+=
4
)
{
if
(
(
bt
&
0x0F
)
==
C93_4X4_2COLOR
)
{
if
(
block_type
==
C93_4X4_2COLOR
)
{
bytestream_get_buffer
(
&
buf
,
cols
,
2
);
bytestream_get_buffer
(
&
buf
,
cols
,
2
);
draw_n_color
(
out
+
i
+
j
*
stride
,
stride
,
4
,
4
,
draw_n_color
(
out
+
i
+
j
*
stride
,
stride
,
4
,
4
,
1
,
cols
,
NULL
,
bytestream_get_le16
(
&
buf
));
1
,
cols
,
NULL
,
bytestream_get_le16
(
&
buf
));
}
else
if
(
(
bt
&
0x0F
)
==
C93_4X4_4COLOR
)
{
}
else
if
(
block_type
==
C93_4X4_4COLOR
)
{
bytestream_get_buffer
(
&
buf
,
cols
,
4
);
bytestream_get_buffer
(
&
buf
,
cols
,
4
);
draw_n_color
(
out
+
i
+
j
*
stride
,
stride
,
4
,
4
,
draw_n_color
(
out
+
i
+
j
*
stride
,
stride
,
4
,
4
,
2
,
cols
,
NULL
,
bytestream_get_le32
(
&
buf
));
2
,
cols
,
NULL
,
bytestream_get_le32
(
&
buf
));
...
@@ -226,7 +227,7 @@ static int decode_frame(AVCodecContext *avctx, void *data,
...
@@ -226,7 +227,7 @@ static int decode_frame(AVCodecContext *avctx, void *data,
default:
default:
av_log
(
avctx
,
AV_LOG_ERROR
,
"unexpected type %x at %dx%d
\n
"
,
av_log
(
avctx
,
AV_LOG_ERROR
,
"unexpected type %x at %dx%d
\n
"
,
b
t
&
0x0F
,
x
,
y
);
b
lock_type
,
x
,
y
);
return
-
1
;
return
-
1
;
}
}
bt
>>=
4
;
bt
>>=
4
;
...
...
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