[FFmpeg-devel] [PATCH 2/3] Move log_callback_help to cmdutils.[hc], for allowing sharing.
Stefano Sabatini
stefano.sabatini-lala
Mon Sep 20 21:12:45 CEST 2010
---
cmdutils.c | 5 +++++
cmdutils.h | 6 ++++++
ffmpeg.c | 9 ---------
3 files changed, 11 insertions(+), 9 deletions(-)
diff --git a/cmdutils.c b/cmdutils.c
index a79c38e..382c6c1 100644
--- a/cmdutils.c
+++ b/cmdutils.c
@@ -56,6 +56,11 @@ struct SwsContext *sws_opts;
const int this_year = 2010;
+void log_callback_help(void* ptr, int level, const char* fmt, va_list vl)
+{
+ vfprintf(stdout, fmt, vl);
+}
+
double parse_number_or_die(const char *context, const char *numstr, int type, double min, double max)
{
char *tail;
diff --git a/cmdutils.h b/cmdutils.h
index d48abab..68a29b4 100644
--- a/cmdutils.h
+++ b/cmdutils.h
@@ -45,6 +45,12 @@ extern AVFormatContext *avformat_opts;
extern struct SwsContext *sws_opts;
/**
+ * Trivial log callback.
+ * Only suitable for show_help and similar since it lacks prefix handling.
+ */
+void log_callback_help(void* ptr, int level, const char* fmt, va_list vl);
+
+/**
* Fallback for options that are not explicitly handled, these will be
* parsed through AVOptions.
*/
diff --git a/ffmpeg.c b/ffmpeg.c
index 378375a..9d7b2e5 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -3870,15 +3870,6 @@ static void opt_intra_matrix(const char *arg)
parse_matrix_coeffs(intra_matrix, arg);
}
-/**
- * Trivial log callback.
- * Only suitable for show_help and similar since it lacks prefix handling.
- */
-static void log_callback_help(void* ptr, int level, const char* fmt, va_list vl)
-{
- vfprintf(stdout, fmt, vl);
-}
-
static void show_usage(void)
{
printf("Hyper fast Audio and Video encoder\n");
--
1.7.1
More information about the ffmpeg-devel
mailing list