ref: 68bf95fb72197840b719074dd365b4a2a0c383c4
parent: 150fb2e5d1e0bc5670032b79df66d4787181bcce
author: knik <knik>
date: Sat Aug 10 12:12:02 EDT 2002
version update
--- a/frontend/main.c
+++ b/frontend/main.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: main.c,v 1.25 2002/08/09 16:29:41 knik Exp $
+ * $Id: main.c,v 1.26 2002/08/10 16:07:23 knik Exp $
*/
#ifdef _WIN32
@@ -105,7 +105,7 @@
#endif
fprintf(stderr, "FAAC - command line demo of %s\n", __DATE__);
- fprintf(stderr, "Uses FAACLIB version: %.1f %s\n\n", FAACENC_VERSION, (FAACENC_VERSIONB)?"beta":"");
+ fprintf(stderr, "Uses FAACLIB version: " FAACENC_VERSION "\n\n");
/* begin process command line */
progName = argv[0];
--- a/include/faac.h
+++ b/include/faac.h
@@ -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: faac.h,v 1.20 2002/08/09 16:28:13 knik Exp $
+ * $Id: faac.h,v 1.21 2002/08/10 16:09:36 knik Exp $
*/
#ifndef FAACLIB_H
@@ -37,8 +37,7 @@
#endif
#endif
-#define FAACENC_VERSION 1.9
-#define FAACENC_VERSIONB 1 /* If 1 this version is still in beta */
+#define FAACENC_VERSION "1.10 (beta)"
/* MPEG ID's */
#define MPEG2 1
--- a/plugins/cooledit/Faac.cpp
+++ b/plugins/cooledit/Faac.cpp
@@ -253,10 +253,10 @@
{
char buf[256];
sprintf(buf, "AAC-MPEG4 plugin %s by 4N\n"
- "This plugin uses FAAC encoder engine v%g and FAAD2 decoder engine\n\n"
+ "This plugin uses FAAC encoder engine v"
+ FAACENC_VERSION " and FAAD2 decoder engine\n\n"
"Compiled on %s\n",
PI_VER,
- FAACENC_VERSION,
__DATE__
);
MessageBox(hWndDlg, buf, "About", MB_OK);
--- a/plugins/winamp/Out_faac.cpp
+++ b/plugins/winamp/Out_faac.cpp
@@ -478,10 +478,9 @@
{
char buf[256];
sprintf(buf,"AAC-MPEG4 encoder plug-in %s by 4N\n"
- "This plugin uses FAAC encoder engine v%g\n\n"
+ "This plugin uses FAAC encoder engine v" FAACENC_VERSION "\n\n"
"Compiled on %s\n",
PI_VER,
- FAACENC_VERSION,
__DATE__);
MessageBox(hwnd, buf, "About", MB_OK);
}