Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
ffmpeg
Commits
399e4652
Commit
399e4652
authored
Apr 19, 2008
by
Ramiro Polla
Browse files
Cosmetics and style.
Originally committed as revision 12907 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
c9108634
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
libavcodec/mimic.c
libavcodec/mimic.c
+4
-4
No files found.
libavcodec/mimic.c
View file @
399e4652
...
@@ -99,7 +99,7 @@ static const uint8_t col_zag[64] = {
...
@@ -99,7 +99,7 @@ static const uint8_t col_zag[64] = {
28
,
21
,
14
,
7
,
15
,
22
,
29
,
36
,
28
,
21
,
14
,
7
,
15
,
22
,
29
,
36
,
43
,
50
,
57
,
58
,
51
,
44
,
37
,
30
,
43
,
50
,
57
,
58
,
51
,
44
,
37
,
30
,
23
,
31
,
38
,
45
,
52
,
59
,
39
,
46
,
23
,
31
,
38
,
45
,
52
,
59
,
39
,
46
,
53
,
60
,
61
,
54
,
47
,
55
,
62
,
63
53
,
60
,
61
,
54
,
47
,
55
,
62
,
63
,
};
};
static
av_cold
int
mimic_decode_init
(
AVCodecContext
*
avctx
)
static
av_cold
int
mimic_decode_init
(
AVCodecContext
*
avctx
)
...
@@ -213,7 +213,7 @@ static int decode(MimicContext *ctx, int quality, int num_coeffs,
...
@@ -213,7 +213,7 @@ static int decode(MimicContext *ctx, int quality, int num_coeffs,
const
uint8_t
*
src
=
ctx
->
flipped_ptrs
[
ctx
->
prev_index
].
data
[
plane
];
const
uint8_t
*
src
=
ctx
->
flipped_ptrs
[
ctx
->
prev_index
].
data
[
plane
];
uint8_t
*
dst
=
ctx
->
flipped_ptrs
[
ctx
->
cur_index
].
data
[
plane
];
uint8_t
*
dst
=
ctx
->
flipped_ptrs
[
ctx
->
cur_index
].
data
[
plane
];
for
(
y
=
0
;
y
<
ctx
->
num_vblocks
[
plane
]
;
y
++
)
{
for
(
y
=
0
;
y
<
ctx
->
num_vblocks
[
plane
];
y
++
)
{
for
(
x
=
0
;
x
<
ctx
->
num_hblocks
[
plane
];
x
++
)
{
for
(
x
=
0
;
x
<
ctx
->
num_hblocks
[
plane
];
x
++
)
{
/* Check for a change condition in the current block.
/* Check for a change condition in the current block.
...
@@ -269,7 +269,7 @@ static void prepare_avpic(MimicContext *ctx, AVPicture *dst, AVPicture *src)
...
@@ -269,7 +269,7 @@ static void prepare_avpic(MimicContext *ctx, AVPicture *dst, AVPicture *src)
dst
->
data
[
0
]
=
src
->
data
[
0
]
+
(
ctx
->
avctx
->
height
-
1
)
*
src
->
linesize
[
0
];
dst
->
data
[
0
]
=
src
->
data
[
0
]
+
(
ctx
->
avctx
->
height
-
1
)
*
src
->
linesize
[
0
];
dst
->
data
[
1
]
=
src
->
data
[
2
]
+
((
ctx
->
avctx
->
height
>>
1
)
-
1
)
*
src
->
linesize
[
2
];
dst
->
data
[
1
]
=
src
->
data
[
2
]
+
((
ctx
->
avctx
->
height
>>
1
)
-
1
)
*
src
->
linesize
[
2
];
dst
->
data
[
2
]
=
src
->
data
[
1
]
+
((
ctx
->
avctx
->
height
>>
1
)
-
1
)
*
src
->
linesize
[
1
];
dst
->
data
[
2
]
=
src
->
data
[
1
]
+
((
ctx
->
avctx
->
height
>>
1
)
-
1
)
*
src
->
linesize
[
1
];
for
(
i
=
0
;
i
<
3
;
i
++
)
for
(
i
=
0
;
i
<
3
;
i
++
)
dst
->
linesize
[
i
]
=
-
src
->
linesize
[
i
];
dst
->
linesize
[
i
]
=
-
src
->
linesize
[
i
];
}
}
...
@@ -314,7 +314,7 @@ static int mimic_decode_frame(AVCodecContext *avctx, void *data,
...
@@ -314,7 +314,7 @@ static int mimic_decode_frame(AVCodecContext *avctx, void *data,
avctx
->
width
=
width
;
avctx
->
width
=
width
;
avctx
->
height
=
height
;
avctx
->
height
=
height
;
avctx
->
pix_fmt
=
PIX_FMT_YUV420P
;
avctx
->
pix_fmt
=
PIX_FMT_YUV420P
;
for
(
i
=
0
;
i
<
3
;
i
++
)
{
for
(
i
=
0
;
i
<
3
;
i
++
)
{
ctx
->
num_vblocks
[
i
]
=
-
((
-
height
)
>>
(
3
+
!!
i
));
ctx
->
num_vblocks
[
i
]
=
-
((
-
height
)
>>
(
3
+
!!
i
));
ctx
->
num_hblocks
[
i
]
=
width
>>
(
3
+
!!
i
)
;
ctx
->
num_hblocks
[
i
]
=
width
>>
(
3
+
!!
i
)
;
}
}
...
...
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