*** empty log message ***
authorJosh Coalson <jcoalson@users.sourceforce.net>
Wed, 12 Sep 2007 05:34:36 +0000 (05:34 +0000)
committerJosh Coalson <jcoalson@users.sourceforce.net>
Wed, 12 Sep 2007 05:34:36 +0000 (05:34 +0000)
examples/c/decode/file/Makefile.am
examples/c/decode/file/Makefile.lite
examples/c/decode/file/main.c

index a7d692d..5505020 100644 (file)
@@ -20,8 +20,6 @@ EXTRA_DIST = \
        example_c_decode_file.dsp \
        example_c_decode_file.vcproj \
 
-INCLUDES = -I$(top_srcdir)/src/libFLAC/include
-
 noinst_PROGRAMS = example_c_decode_file
 example_c_decode_file_LDADD = \
        @OGG_LIBS@ \
index 111b262..e5070c1 100644 (file)
@@ -24,7 +24,7 @@ libdir = $(topdir)/obj/$(BUILD)/lib
 
 PROGRAM_NAME = example_c_decode_file
 
-INCLUDES = -I../libFLAC/include -I$(topdir)/include
+INCLUDES = -I$(topdir)/include
 
 ifeq ($(DARWIN_BUILD),yes)
 EXPLICIT_LIBS = $(libdir)/libFLAC.a $(OGG_LIB_DIR)/libogg.a -lm
index 6448ba5..27eb799 100644 (file)
@@ -73,13 +73,14 @@ int main(int argc, char *argv[])
                return 1;
        }
 
-       if((decoder = FLAC__stream_decoder_new()) == NULL) {
-               fprintf(stderr, "ERROR: allocation decoder\n");
+       if((fout = fopen(argv[2], "wb")) == NULL) {
+               fprintf(stderr, "ERROR: opening %s for output\n", argv[2]);
                return 1;
        }
 
-       if((fout = fopen(argv[2], "wb")) == NULL) {
-               fprintf(stderr, "ERROR: opening %s for output\n", argv[2]);
+       if((decoder = FLAC__stream_decoder_new()) == NULL) {
+               fprintf(stderr, "ERROR: allocating decoder\n");
+               fclose(fout);
                return 1;
        }