diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-03-12 12:44:22 +0100 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-03-26 14:40:30 +0100 |
commit | 0c55c6d30e0aa07b47645fafc6a817dfbfa2e85b (patch) | |
tree | 8d7c6a33f4234d422dbdea9d1157ee3884901eb1 /cmdutils.h | |
parent | 836131546947db75f2ff81a452e5ee9392c4acf8 (diff) | |
download | ffmpeg-0c55c6d30e0aa07b47645fafc6a817dfbfa2e85b.tar.gz |
cmdutils: remove list_fmts(), simplify
The function was only used in opt_sample_fmt() for listing the sample
formats. Move list_fmts() functionality directly into
opt_sample_fmt().
Als fix the warning:
ffmpeg.c: In function ‘opt_audio_sample_fmt’:
ffmpeg.c:2877: warning: passing argument 1 of ‘list_fmts’ from incompatible pointer type
cmdutils.h:163: note: expected ‘void (*)(char *, int, int)’ but argument is of type ‘char * (*)(char *, int, enum AVSampleFormat)’
Diffstat (limited to 'cmdutils.h')
-rw-r--r-- | cmdutils.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cmdutils.h b/cmdutils.h index adc4403219..db84f55f30 100644 --- a/cmdutils.h +++ b/cmdutils.h @@ -161,8 +161,6 @@ void set_context_opts(void *ctx, void *opts_ctx, int flags, AVCodec *codec); */ void print_error(const char *filename, int err); -void list_fmts(void (*get_fmt_string)(char *buf, int buf_size, int fmt), int nb_fmts); - /** * Print the program banner to stderr. The banner contents depend on the * current version of the repository and of the libav* libraries used by |