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
4a34e54b
Commit
4a34e54b
authored
Jun 15, 2011
by
Clément Bœsch
Committed by
Michael Niedermayer
Jun 21, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix zero-length gnu_printf format string warning.
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
5f654897
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
ffmpeg.c
ffmpeg.c
+1
-1
ffplay.c
ffplay.c
+1
-1
log.h
libavutil/log.h
+1
-1
No files found.
ffmpeg.c
View file @
4a34e54b
...
...
@@ -444,7 +444,7 @@ static int configure_video_filters(AVInputStream *ist, AVOutputStream *ost)
static
void
term_exit
(
void
)
{
av_log
(
NULL
,
AV_LOG_QUIET
,
""
);
av_log
(
NULL
,
AV_LOG_QUIET
,
"
%s"
,
"
"
);
#if HAVE_TERMIOS_H
if
(
!
run_as_daemon
)
tcsetattr
(
0
,
TCSANOW
,
&
oldtty
);
...
...
ffplay.c
View file @
4a34e54b
...
...
@@ -904,7 +904,7 @@ static void do_exit(void)
if
(
show_status
)
printf
(
"
\n
"
);
SDL_Quit
();
av_log
(
NULL
,
AV_LOG_QUIET
,
""
);
av_log
(
NULL
,
AV_LOG_QUIET
,
"
%s"
,
"
"
);
exit
(
0
);
}
...
...
libavutil/log.h
View file @
4a34e54b
...
...
@@ -159,7 +159,7 @@ const char* av_default_item_name(void* ctx);
* "Last message repeated x times" messages below (f)printf messages with some
* bad luck.
* Also to receive the last, "last repeated" line if any, the user app must
* call av_log(NULL, AV_LOG_QUIET, ""); at the end
* call av_log(NULL, AV_LOG_QUIET, "
%s", "
"); at the end
*/
#define AV_LOG_SKIP_REPEATED 1
void
av_log_set_flags
(
int
arg
);
...
...
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