Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
0420c810
Commit
0420c810
authored
11 years ago
by
Luca Barbato
Browse files
Options
Downloads
Patches
Plain Diff
log: pass the correct parameters to missing_feature_sample
CC:libav-stable@libav.org
parent
6a10142f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavutil/log.c
+2
-7
2 additions, 7 deletions
libavutil/log.c
with
2 additions
and
7 deletions
libavutil/log.c
+
2
−
7
View file @
0420c810
...
@@ -182,12 +182,9 @@ void av_log_set_callback(void (*callback)(void*, int, const char*, va_list))
...
@@ -182,12 +182,9 @@ void av_log_set_callback(void (*callback)(void*, int, const char*, va_list))
av_log_callback
=
callback
;
av_log_callback
=
callback
;
}
}
static
void
missing_feature_sample
(
int
sample
,
void
*
avc
,
const
char
*
msg
,
...)
static
void
missing_feature_sample
(
int
sample
,
void
*
avc
,
const
char
*
msg
,
va_list
argument_list
)
{
{
va_list
argument_list
;
va_start
(
argument_list
,
msg
);
av_vlog
(
avc
,
AV_LOG_WARNING
,
msg
,
argument_list
);
av_vlog
(
avc
,
AV_LOG_WARNING
,
msg
,
argument_list
);
av_log
(
avc
,
AV_LOG_WARNING
,
" is not implemented. Update your Libav "
av_log
(
avc
,
AV_LOG_WARNING
,
" is not implemented. Update your Libav "
"version to the newest one from Git. If the problem still "
"version to the newest one from Git. If the problem still "
...
@@ -197,8 +194,6 @@ static void missing_feature_sample(int sample, void *avc, const char *msg, ...)
...
@@ -197,8 +194,6 @@ static void missing_feature_sample(int sample, void *avc, const char *msg, ...)
av_log
(
avc
,
AV_LOG_WARNING
,
"If you want to help, upload a sample "
av_log
(
avc
,
AV_LOG_WARNING
,
"If you want to help, upload a sample "
"of this file to ftp://upload.libav.org/incoming/ "
"of this file to ftp://upload.libav.org/incoming/ "
"and contact the libav-devel mailing list.
\n
"
);
"and contact the libav-devel mailing list.
\n
"
);
va_end
(
argument_list
);
}
}
void
avpriv_request_sample
(
void
*
avc
,
const
char
*
msg
,
...)
void
avpriv_request_sample
(
void
*
avc
,
const
char
*
msg
,
...)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment