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
16b771b1
Commit
16b771b1
authored
Dec 13, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup: for(int
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
b39e01a6
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
10 deletions
+15
-10
ffplay.c
ffplay.c
+2
-1
proresenc.c
libavcodec/proresenc.c
+5
-5
dv1394.h
libavdevice/dv1394.h
+2
-1
transform.c
libavfilter/transform.c
+6
-3
No files found.
ffplay.c
View file @
16b771b1
...
...
@@ -2773,10 +2773,11 @@ static void stream_cycle_channel(VideoState *is, int codec_type)
static
void
toggle_full_screen
(
VideoState
*
is
)
{
int
i
;
is_full_screen
=
!
is_full_screen
;
#if defined(__APPLE__) && SDL_VERSION_ATLEAST(1, 2, 14)
/* OS X needs to reallocate the SDL overlays */
for
(
i
nt
i
=
0
;
i
<
VIDEO_PICTURE_QUEUE_SIZE
;
i
++
)
{
for
(
i
=
0
;
i
<
VIDEO_PICTURE_QUEUE_SIZE
;
i
++
)
{
is
->
pictq
[
i
].
reallocate
=
1
;
}
#endif
...
...
libavcodec/proresenc.c
View file @
16b771b1
...
...
@@ -234,10 +234,10 @@ static void encode_ac_coeffs(AVCodecContext *avctx, PutBitContext *pb,
int
prev_run
=
4
;
int
prev_level
=
2
;
int
run
=
0
,
level
,
code
;
for
(
i
nt
i
=
1
;
i
<
64
;
i
++
)
{
int
run
=
0
,
level
,
code
,
i
,
j
;
for
(
i
=
1
;
i
<
64
;
i
++
)
{
int
indp
=
progressive_scan
[
i
];
for
(
int
j
=
0
;
j
<
blocks_per_slice
;
j
++
)
{
for
(
j
=
0
;
j
<
blocks_per_slice
;
j
++
)
{
int
val
=
QSCALE
(
qmat
,
indp
,
in
[(
j
<<
6
)
+
indp
]);
if
(
val
)
{
encode_codeword
(
pb
,
run
,
run_to_cb
[
FFMIN
(
prev_run
,
15
)]);
...
...
@@ -441,13 +441,13 @@ static int prores_encode_picture(AVCodecContext *avctx, AVFrame *pic,
{
int
mb_width
=
(
avctx
->
width
+
15
)
>>
4
;
int
mb_height
=
(
avctx
->
height
+
15
)
>>
4
;
int
hdr_size
,
sl_size
;
int
hdr_size
,
sl_size
,
i
;
int
mb_y
,
sl_data_size
,
qp
;
int
unsafe_bot
,
unsafe_right
;
uint8_t
*
sl_data
,
*
sl_data_sizes
;
int
slice_per_line
=
0
,
rem
=
mb_width
;
for
(
i
nt
i
=
av_log2
(
DEFAULT_SLICE_MB_WIDTH
);
i
>=
0
;
--
i
)
{
for
(
i
=
av_log2
(
DEFAULT_SLICE_MB_WIDTH
);
i
>=
0
;
--
i
)
{
slice_per_line
+=
rem
>>
i
;
rem
&=
(
1
<<
i
)
-
1
;
}
...
...
libavdevice/dv1394.h
View file @
16b771b1
...
...
@@ -175,7 +175,8 @@
if(status.dropped_frames > 0) {
reset_dv1394();
} else {
for(int i = 0; i < status.n_clear_frames; i++) {
int i;
for(i = 0; i < status.n_clear_frames; i++) {
copy_DV_frame();
}
}
...
...
libavfilter/transform.c
View file @
16b771b1
...
...
@@ -116,19 +116,22 @@ void avfilter_get_matrix(float x_shift, float y_shift, float angle, float zoom,
void
avfilter_add_matrix
(
const
float
*
m1
,
const
float
*
m2
,
float
*
result
)
{
for
(
int
i
=
0
;
i
<
9
;
i
++
)
int
i
;
for
(
i
=
0
;
i
<
9
;
i
++
)
result
[
i
]
=
m1
[
i
]
+
m2
[
i
];
}
void
avfilter_sub_matrix
(
const
float
*
m1
,
const
float
*
m2
,
float
*
result
)
{
for
(
int
i
=
0
;
i
<
9
;
i
++
)
int
i
;
for
(
i
=
0
;
i
<
9
;
i
++
)
result
[
i
]
=
m1
[
i
]
-
m2
[
i
];
}
void
avfilter_mul_matrix
(
const
float
*
m1
,
float
scalar
,
float
*
result
)
{
for
(
int
i
=
0
;
i
<
9
;
i
++
)
int
i
;
for
(
i
=
0
;
i
<
9
;
i
++
)
result
[
i
]
=
m1
[
i
]
*
scalar
;
}
...
...
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