Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
f4228097
Commit
f4228097
authored
Jun 21, 2011
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi: minor style fixes in formats.c
parent
b2ad33de
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
formats.c
libavfilter/formats.c
+11
-11
No files found.
libavfilter/formats.c
View file @
f4228097
...
...
@@ -30,7 +30,7 @@ static void merge_ref(AVFilterFormats *ret, AVFilterFormats *a)
{
int
i
;
for
(
i
=
0
;
i
<
a
->
refcount
;
i
++
)
{
for
(
i
=
0
;
i
<
a
->
refcount
;
i
++
)
{
ret
->
refs
[
ret
->
refcount
]
=
a
->
refs
[
i
];
*
ret
->
refs
[
ret
->
refcount
++
]
=
ret
;
}
...
...
@@ -52,14 +52,14 @@ AVFilterFormats *avfilter_merge_formats(AVFilterFormats *a, AVFilterFormats *b)
/* merge list of formats */
ret
->
formats
=
av_malloc
(
sizeof
(
*
ret
->
formats
)
*
FFMIN
(
a
->
format_count
,
b
->
format_count
));
for
(
i
=
0
;
i
<
a
->
format_count
;
i
++
)
for
(
j
=
0
;
j
<
b
->
format_count
;
j
++
)
if
(
a
->
formats
[
i
]
==
b
->
formats
[
j
])
for
(
i
=
0
;
i
<
a
->
format_count
;
i
++
)
for
(
j
=
0
;
j
<
b
->
format_count
;
j
++
)
if
(
a
->
formats
[
i
]
==
b
->
formats
[
j
])
ret
->
formats
[
k
++
]
=
a
->
formats
[
i
];
ret
->
format_count
=
k
;
/* check that there was at least one common format */
if
(
!
ret
->
format_count
)
{
if
(
!
ret
->
format_count
)
{
av_free
(
ret
->
formats
);
av_free
(
ret
);
return
NULL
;
...
...
@@ -171,8 +171,8 @@ void avfilter_formats_ref(AVFilterFormats *f, AVFilterFormats **ref)
static
int
find_ref_index
(
AVFilterFormats
**
ref
)
{
int
i
;
for
(
i
=
0
;
i
<
(
*
ref
)
->
refcount
;
i
++
)
if
((
*
ref
)
->
refs
[
i
]
==
ref
)
for
(
i
=
0
;
i
<
(
*
ref
)
->
refcount
;
i
++
)
if
((
*
ref
)
->
refs
[
i
]
==
ref
)
return
i
;
return
-
1
;
}
...
...
@@ -186,11 +186,11 @@ void avfilter_formats_unref(AVFilterFormats **ref)
idx
=
find_ref_index
(
ref
);
if
(
idx
>=
0
)
if
(
idx
>=
0
)
memmove
((
*
ref
)
->
refs
+
idx
,
(
*
ref
)
->
refs
+
idx
+
1
,
sizeof
(
AVFilterFormats
**
)
*
((
*
ref
)
->
refcount
-
idx
-
1
));
if
(
!--
(
*
ref
)
->
refcount
)
{
if
(
!--
(
*
ref
)
->
refcount
)
{
av_free
((
*
ref
)
->
formats
);
av_free
((
*
ref
)
->
refs
);
av_free
(
*
ref
);
...
...
@@ -203,7 +203,7 @@ void avfilter_formats_changeref(AVFilterFormats **oldref,
{
int
idx
=
find_ref_index
(
oldref
);
if
(
idx
>=
0
)
{
if
(
idx
>=
0
)
{
(
*
oldref
)
->
refs
[
idx
]
=
newref
;
*
newref
=
*
oldref
;
*
oldref
=
NULL
;
...
...
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