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
79f0f1a8
Commit
79f0f1a8
authored
Sep 11, 2015
by
Clément Bœsch
Committed by
Clément Bœsch
Sep 12, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avdevice/caca: remove space before ':' (English typo, cosmetics)
parent
9d0a6ede
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
caca.c
libavdevice/caca.c
+2
-2
No files found.
libavdevice/caca.c
View file @
79f0f1a8
...
...
@@ -69,7 +69,7 @@ static void list_drivers(CACAContext *c)
av_log
(
c
->
ctx
,
AV_LOG_INFO
,
"Available drivers:
\n
"
);
for
(
i
=
0
;
drivers
[
i
];
i
+=
2
)
av_log
(
c
->
ctx
,
AV_LOG_INFO
,
"%s
: %s
\n
"
,
drivers
[
i
],
drivers
[
i
+
1
]);
av_log
(
c
->
ctx
,
AV_LOG_INFO
,
"%s: %s
\n
"
,
drivers
[
i
],
drivers
[
i
+
1
]);
}
#define DEFINE_LIST_DITHER(thing, thing_str) \
...
...
@@ -80,7 +80,7 @@ static void list_dither_## thing(CACAContext *c) \
\
av_log(c->ctx, AV_LOG_INFO, "Available %s:\n", thing_str); \
for (i = 0; thing[i]; i += 2) \
av_log(c->ctx, AV_LOG_INFO, "%s
: %s\n", thing[i], thing[i + 1]);
\
av_log(c->ctx, AV_LOG_INFO, "%s
: %s\n", thing[i], thing[i + 1]);
\
}
DEFINE_LIST_DITHER
(
color
,
"colors"
);
...
...
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