Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2009-12-12 20:45:20 +0300
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2009-12-12 20:45:20 +0300
commitc5dc6026008110adee05555fcf2f235850cb506d (patch)
treead42fdfc7c1ed6fc57ef03c9c957a2919243dcf2 /ffmpeg.c
parentae5e8caa3db1872dd85d3e985577c004107a5ba1 (diff)
Move list_fmts() from ffmpeg.c to cmdutils.{h,c}, so that it can be
shared by the other ff* tools code. Originally committed as revision 20812 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index d1a00b81d0..a1abd30cfe 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2564,16 +2564,6 @@ static void opt_frame_pad_right(const char *arg)
}
}
-static void list_fmts(void (*get_fmt_string)(char *buf, int buf_size, int fmt), int nb_fmts)
-{
- int i;
- char fmt_str[128];
- for (i=-1; i < nb_fmts; i++) {
- get_fmt_string (fmt_str, sizeof(fmt_str), i);
- fprintf(stdout, "%s\n", fmt_str);
- }
-}
-
static void opt_frame_pix_fmt(const char *arg)
{
if (strcmp(arg, "list")) {