diff options
| author | David Schleef <ds@schleef.org> | 2003-07-26 04:23:32 +0000 | 
|---|---|---|
| committer | David Schleef <ds@schleef.org> | 2003-07-26 04:23:32 +0000 | 
| commit | 1a0ae7753f64772ef9e4db5787d6efa96a2ab17c (patch) | |
| tree | 286bd1882afac2b7c92d0b99d88e1c2810a9c84f | |
| parent | 15111453cf1b6384479a49c2acaa919daa21c5c2 (diff) | |
fix initialization
Original commit message from CVS:
fix initialization
| -rw-r--r-- | examples/indexing/Makefile.am | 2 | ||||
| -rw-r--r-- | examples/indexing/indexmpeg.c | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/indexing/Makefile.am b/examples/indexing/Makefile.am index 800135f1..022bfc85 100644 --- a/examples/indexing/Makefile.am +++ b/examples/indexing/Makefile.am @@ -3,5 +3,5 @@ examples = indexmpeg  noinst_PROGRAMS = $(examples)  # we have nothing but apps here, we can do this safely -LIBS = $(GST_LIBS) $(GTK_LIBS) $(FT2_LIBS) +LIBS = $(GST_LIBS) $(GTK_LIBS)  AM_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS) diff --git a/examples/indexing/indexmpeg.c b/examples/indexing/indexmpeg.c index 7540d163..85df98d4 100644 --- a/examples/indexing/indexmpeg.c +++ b/examples/indexing/indexmpeg.c @@ -215,7 +215,7 @@ main (gint argc, gchar *argv[])        POPT_TABLEEND      }; -  if (!gst_init_with_popt_table (&argc, &argv, options) || argc < 3) { +  if (!gst_init_check_with_popt_table (&argc, &argv, options) || argc < 3) {      g_print ("usage: %s [-v] <type> <filename>  \n"   	     "  type can be: 0 mpeg_systems\n"  	     "               1 mpeg_decoder\n"  | 
