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
4f698be8
Commit
4f698be8
authored
Mar 20, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avutil/log: add av_log_get_flags()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
e89f3d0e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
1 deletion
+10
-1
APIchanges
doc/APIchanges
+3
-0
log.c
libavutil/log.c
+5
-0
log.h
libavutil/log.h
+1
-0
version.h
libavutil/version.h
+1
-1
No files found.
doc/APIchanges
View file @
4f698be8
...
@@ -15,6 +15,9 @@ libavutil: 2012-10-22
...
@@ -15,6 +15,9 @@ libavutil: 2012-10-22
API changes, most recent first:
API changes, most recent first:
2014-04-12 - xxxxxxx - lavu 52.76.100 - log.h
Add av_log_get_flags()
2014-04-xx - xxxxxxx - lavd 55.12.100 - avdevice.h
2014-04-xx - xxxxxxx - lavd 55.12.100 - avdevice.h
Add avdevice_capabilities_create() function.
Add avdevice_capabilities_create() function.
Add avdevice_capabilities_free() function.
Add avdevice_capabilities_free() function.
...
...
libavutil/log.c
View file @
4f698be8
...
@@ -345,6 +345,11 @@ void av_log_set_flags(int arg)
...
@@ -345,6 +345,11 @@ void av_log_set_flags(int arg)
flags
=
arg
;
flags
=
arg
;
}
}
int
av_log_get_flags
(
void
)
{
return
flags
;
}
void
av_log_set_callback
(
void
(
*
callback
)(
void
*
,
int
,
const
char
*
,
va_list
))
void
av_log_set_callback
(
void
(
*
callback
)(
void
*
,
int
,
const
char
*
,
va_list
))
{
{
av_log_callback
=
callback
;
av_log_callback
=
callback
;
...
...
libavutil/log.h
View file @
4f698be8
...
@@ -322,6 +322,7 @@ void av_log_format_line(void *ptr, int level, const char *fmt, va_list vl,
...
@@ -322,6 +322,7 @@ void av_log_format_line(void *ptr, int level, const char *fmt, va_list vl,
*/
*/
#define AV_LOG_SKIP_REPEATED 1
#define AV_LOG_SKIP_REPEATED 1
void
av_log_set_flags
(
int
arg
);
void
av_log_set_flags
(
int
arg
);
int
av_log_get_flags
(
void
);
/**
/**
* @}
* @}
...
...
libavutil/version.h
View file @
4f698be8
...
@@ -56,7 +56,7 @@
...
@@ -56,7 +56,7 @@
*/
*/
#define LIBAVUTIL_VERSION_MAJOR 52
#define LIBAVUTIL_VERSION_MAJOR 52
#define LIBAVUTIL_VERSION_MINOR 7
5
#define LIBAVUTIL_VERSION_MINOR 7
6
#define LIBAVUTIL_VERSION_MICRO 100
#define LIBAVUTIL_VERSION_MICRO 100
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
...
...
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