uhm, proper name

Original commit message from CVS:
uhm, proper name
This commit is contained in:
Thomas Vander Stichele 2002-09-20 22:41:19 +00:00
parent 7261209095
commit 946af0e1ef
3 changed files with 10 additions and 10 deletions

View file

@ -14,19 +14,19 @@ bin_PROGRAMS = gst-launch \
$(GST_REGISTRY_SRC) \ $(GST_REGISTRY_SRC) \
gst-inspect \ gst-inspect \
$(GST_LOADSAVE_SRC) \ $(GST_LOADSAVE_SRC) \
gst-md5 \ gst-md5sum \
gst-complete gst-complete
bin_SCRIPTS = gst-feedback bin_SCRIPTS = gst-feedback
man_MANS = gst-launch.1 gst-md5.1 gst-register.1 gst-inspect.1 \ man_MANS = gst-launch.1 gst-md5sum.1 gst-register.1 gst-inspect.1 \
gst-complete.1 gst-compprep.1 gst-xmllaunch.1 \ gst-complete.1 gst-compprep.1 gst-xmllaunch.1 \
gst-feedback.1 gst-feedback.1
gst_launch_LDADD = $(GST_LIBS) #-lefence gst_launch_LDADD = $(GST_LIBS) #-lefence
gst_launch_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\" gst_launch_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\"
gst_md5_LDADD = $(GST_LIBS) #-lefence gst_md5sum_LDADD = $(GST_LIBS) #-lefence
gst_md5_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\" gst_md5sum_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\"
if !GST_DISABLE_REGISTRY if !GST_DISABLE_REGISTRY
gst_register_LDADD = $(GST_LIBS) gst_register_LDADD = $(GST_LIBS)

View file

@ -1,6 +1,6 @@
.TH "GStreamer" "1" "September 2002" .TH "GStreamer" "1" "September 2002"
.SH "NAME" .SH "NAME"
gst\-md5 \- get an md5sum of a GStreamer pipeline through md5sink gst\-md5sum \- get an md5sum of a GStreamer pipeline through md5sink
.SH "SYNOPSIS" .SH "SYNOPSIS"
\fBgst\-md5sum\fR \fI[OPTION...]\fR PARTIAL\-PIPELINE\-DESCRIPTION \fBgst\-md5sum\fR \fI[OPTION...]\fR PARTIAL\-PIPELINE\-DESCRIPTION
.SH "DESCRIPTION" .SH "DESCRIPTION"
@ -10,7 +10,7 @@ a basic \fIGStreamer\fP pipeline.
In theory, running In theory, running
gst-md5 filesrc location=music.mp3 gst-md5sum filesrc location=music.mp3
should print out the same md5sum as should print out the same md5sum as
@ -24,7 +24,7 @@ create a PARTIAL\-PIPELINE\-DESCRIPTION.
. .
.SH "OPTIONS" .SH "OPTIONS"
.l .l
\fIgst\-md5\fP accepts the following options: \fIgst\-md5sum\fP accepts the following options:
.TP 8 .TP 8
.B \-\-help .B \-\-help
Print help synopsis and available FLAGS Print help synopsis and available FLAGS

View file

@ -46,10 +46,10 @@ int
main (int argc, char *argv[]) main (int argc, char *argv[])
{ {
/* options */ /* options */
gboolean silent = TRUE; gboolean verbose = FALSE;
gchar *exclude_args = NULL; gchar *exclude_args = NULL;
struct poptOption options[] = { struct poptOption options[] = {
{"verbose", 'v', POPT_ARG_NONE|POPT_ARGFLAG_STRIP, &silent, 1, {"verbose", 'v', POPT_ARG_NONE|POPT_ARGFLAG_STRIP, &verbose, 0,
"do not output status information", NULL}, "do not output status information", NULL},
POPT_TABLEEND POPT_TABLEEND
}; };
@ -85,7 +85,7 @@ main (int argc, char *argv[])
return 1; return 1;
} }
if (!silent) if (verbose)
{ {
gchar **exclude_list = exclude_args ? g_strsplit (exclude_args, ",", 0) gchar **exclude_list = exclude_args ? g_strsplit (exclude_args, ",", 0)
: NULL; : NULL;