shithub: aacenc

Download patch

ref: a66bde45993a9ab3bb96e5054f1c153b8aceae0e
parent: aad6b685e8611a37455ecacbbb8cb42fb0dafb7d
author: danchr <danchr>
date: Tue Apr 13 09:47:34 EDT 2004

clarify release <> unstable status

--- a/libfaac/frame.c
+++ b/libfaac/frame.c
@@ -16,7 +16,7 @@
  * License along with this library; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  *
- * $Id: frame.c,v 1.59 2004/04/02 14:56:17 danchr Exp $
+ * $Id: frame.c,v 1.60 2004/04/13 13:47:33 danchr Exp $
  */
 
 /*
@@ -48,7 +48,11 @@
 #include "backpred.h"
 #include "version.h"
 
-static char *libfaacName = FAAC_VERSION " (" __DATE__ ")";
+#if FAAC_RELEASE
+static char *libfaacName = FAAC_VERSION;
+#else
+static char *libfaacName = FAAC_VERSION " (" __DATE__ ") UNSTABLE";
+#endif
 static char *libCopyright =
   "FAAC - Freeware Advanced Audio Coder (http://www.audiocoding.com/)\n"
   " Copyright (C) 1999,2000,2001  Menno Bakker\n"
@@ -944,6 +948,9 @@
 
 /*
 $Log: frame.c,v $
+Revision 1.60  2004/04/13 13:47:33  danchr
+clarify release <> unstable status
+
 Revision 1.59  2004/04/02 14:56:17  danchr
 fix name clash w/ libavcodec: fft_init -> fft_initialize
 bump version number to 1.24 beta
--- a/libfaac/version.h
+++ b/libfaac/version.h
@@ -1,6 +1,8 @@
 #ifndef _VERSION_H_
 #define _VERSION_H_
 
+#define FAAC_RELEASE 0
+
 #define FAAC_VERSION "1.24 beta"
 
 #endif