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
d5d7de76
Commit
d5d7de76
authored
Sep 01, 2011
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffprobe: directly use va args in print fmt callbacks.
parent
58677d73
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
12 deletions
+7
-12
ffprobe.c
ffprobe.c
+7
-12
No files found.
ffprobe.c
View file @
d5d7de76
...
...
@@ -132,7 +132,7 @@ struct writer {
const
char
*
header
,
*
footer
;
void
(
*
print_header
)(
const
char
*
);
void
(
*
print_footer
)(
const
char
*
);
void
(
*
print_fmt_f
)(
const
char
*
,
const
char
*
,
va_list
ap
);
void
(
*
print_fmt_f
)(
const
char
*
,
const
char
*
,
...
);
void
(
*
print_int_f
)(
const
char
*
,
int
);
void
(
*
show_tags
)(
struct
writer
*
w
,
AVDictionary
*
dict
);
};
...
...
@@ -145,10 +145,13 @@ static void default_print_header(const char *section)
printf
(
"[%s]
\n
"
,
section
);
}
static
void
default_print_fmt
(
const
char
*
key
,
const
char
*
fmt
,
va_list
ap
)
static
void
default_print_fmt
(
const
char
*
key
,
const
char
*
fmt
,
...
)
{
va_list
ap
;
va_start
(
ap
,
fmt
);
printf
(
"%s="
,
key
);
vprintf
(
fmt
,
ap
);
va_end
(
ap
);
}
static
void
default_print_int
(
const
char
*
key
,
int
value
)
...
...
@@ -164,19 +167,11 @@ static void default_print_footer(const char *section)
/* Print helpers */
static
void
print_vfmt0
(
struct
writer
*
w
,
const
char
*
key
,
const
char
*
fmt
,
...)
{
va_list
ap
;
va_start
(
ap
,
fmt
);
w
->
print_fmt_f
(
key
,
fmt
,
ap
);
va_end
(
ap
);
}
#define print_fmt0(k, f, a...) print_vfmt0(w, k, f, ##a)
#define print_fmt0(k, f, a...) w->print_fmt_f(k, f, ##a)
#define print_fmt( k, f, a...) do { \
if (w->item_sep) \
printf("%s", w->item_sep); \
print_vfmt0(w,
k, f, ##a); \
w->print_fmt_f(
k, f, ##a); \
} while (0)
#define print_int0(k, v) w->print_int_f(k, v)
...
...
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