changeset 84:fa9e4ed85309 trunk

[svn] - try this
author nenolod
date Wed, 04 Oct 2006 18:42:11 -0700
parents 74b4ffde8100
children 86ce11c6b8c3
files ChangeLog src/alac/demux.c
diffstat 2 files changed, 16 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Oct 04 18:24:55 2006 -0700
+++ b/ChangeLog	Wed Oct 04 18:42:11 2006 -0700
@@ -1,3 +1,12 @@
+2006-10-05 01:24:55 +0000  Jonathan Schleifer <js@h3c.de>
+  revision [166]
+  The same change like for the FT8 MODs, but this time for FT6 MODs.
+  (Sorry, I forget to move them as well.)
+  
+  trunk/src/modplug/modplugbmp.cxx |    8 ++++----
+  1 file changed, 4 insertions(+), 4 deletions(-)
+
+
 2006-10-05 01:21:08 +0000  Jonathan Schleifer <js@h3c.de>
   revision [164]
   Always grab FT8 files, they're NOT Amiga MODs. (They are software mixed
--- a/src/alac/demux.c	Wed Oct 04 18:24:55 2006 -0700
+++ b/src/alac/demux.c	Wed Oct 04 18:42:11 2006 -0700
@@ -45,6 +45,7 @@
     stream_t *stream;
     demux_res_t *res;
     long saved_mdat_pos;
+    int isfilenotalac;
 } qtmovie_t;
 
 
@@ -243,7 +244,10 @@
             stream_skip(qtmovie->stream, entry_remaining);
 
         if (qtmovie->res->format != MAKEFOURCC('a','l','a','c'))
+	{
+	    qtmovie->isfilenotalac = 1;
             return;
+	}
     }
 }
 
@@ -648,6 +652,7 @@
     /* construct the stream */
     qtmovie->stream = file;
     qtmovie->res = demux_res;
+    qtmovie->isfilenotalac = 0;
 
     memset(demux_res, 0, sizeof(demux_res_t));
 
@@ -701,7 +706,8 @@
         }
 
     }
-    return 0;
+
+    return qtmovie->isfilenotalac;
 }