Nick Kurshev | 31 Mar 2007 10:19
Picon

CVS: biew/doc biew_en.txt, 1.8, 1.9 biew_ru.txt, 1.8, 1.9

Update of /cvsroot/biew/biew/doc
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24862

Modified Files:
	biew_en.txt biew_ru.txt 
Log Message:
forgot to commit

Index: biew_en.txt
===================================================================
RCS file: /cvsroot/biew/biew/doc/biew_en.txt,v
retrieving revision 1.8
retrieving revision 1.9
diff -p -u -d -r1.8 -r1.9
--- biew_en.txt	9 Apr 2004 16:39:39 -0000	1.8
+++ biew_en.txt	31 Mar 2007 08:19:13 -0000	1.9
 <at>  <at>  -1139,7 +1139,21  <at>  <at>  v5.0.2        ! Changes:
                 * Fixed correct elf32 reading after applying 64-bit support
                 * Other minor/major fixes.
 5.6.1         ! Changes:
-01 apr 2004     * Fixed focus positioning in dialog
+01 apr 2004     * Fixed focus positioning in dialog
+5.6.2         ! Changes:
+20 sep 2004     * os2 compilation fixes from Max Alekseyev <relf <at> os2.ru>
+		* Various amd64-related fixes
+		  (thanks to "Alexey Khoshenko" <alexey_khosh <at> rambler.ru>):
+                  * fixed encoding order of spl, bpl, sil and dil registers
+                  * in 'mov rax, [moff64]' address length affected only by rex.b
+                  * 'mov CR(DR)x, GPR' and 'push/pop GPR' always use GPR64
+                  * enabled access to CR8-CR15,DR8-DR15
(Continue reading)

Nick Kurshev | 31 Mar 2007 10:43
Picon

CVS: biew/doc biew_en.txt, 1.9, 1.10 biew_ru.txt, 1.9, 1.10 release.txt, 1.9, 1.10

Update of /cvsroot/biew/biew/doc
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv1602/doc

Modified Files:
	biew_en.txt biew_ru.txt release.txt 
Log Message:
INitial support for multimedia format (based on my other project mplayerxp.sf.net)

Index: biew_en.txt
===================================================================
RCS file: /cvsroot/biew/biew/doc/biew_en.txt,v
retrieving revision 1.9
retrieving revision 1.10
diff -p -u -d -r1.9 -r1.10
--- biew_en.txt	31 Mar 2007 08:19:13 -0000	1.9
+++ biew_en.txt	31 Mar 2007 08:43:26 -0000	1.10
 <at>  <at>  -1154,6 +1154,8  <at>  <at>  v5.0.2        ! Changes:
                 * Fixed computing of link-table for 32-bit big-endian elfs
                 * Fixed gcc-3.4.2 compilation
                 * Big-endian and 64-bit related a.out fixes
+5.6.3         ! Changes:
+XX yyy 2007     + Added initial support for multimedia file formats (AVI,WAV,BMP,MP3)
 []======================================================================[]
 []  Thank you for your interest.                                        []
 []  Nick Kurshev.                                                       []

Index: biew_ru.txt
===================================================================
RCS file: /cvsroot/biew/biew/doc/biew_ru.txt,v
retrieving revision 1.9
(Continue reading)

Nick Kurshev | 31 Mar 2007 10:43
Picon

CVS: biew biew.c, 1.7, 1.8 makefile, 1.9, 1.10 tstrings.h, 1.11, 1.12

Update of /cvsroot/biew/biew
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv1602

Modified Files:
	biew.c makefile tstrings.h 
Log Message:
INitial support for multimedia format (based on my other project mplayerxp.sf.net)

Index: biew.c
===================================================================
RCS file: /cvsroot/biew/biew/biew.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -p -u -d -r1.7 -r1.8
--- biew.c	5 Sep 2006 16:20:29 -0000	1.7
+++ biew.c	31 Mar 2007 08:43:26 -0000	1.8
 <at>  <at>  -71,6 +71,14  <at>  <at>  TWindow * MainWnd = 0,*HelpWnd = 0,*Titl
 char shortname[SHORT_PATH_LEN + 1];

 extern REGISTRY_BIN binTable;
+extern REGISTRY_BIN movTable;
+extern REGISTRY_BIN mp3Table;
+extern REGISTRY_BIN mpegTable;
+extern REGISTRY_BIN jpegTable;
+extern REGISTRY_BIN wavTable;
+extern REGISTRY_BIN aviTable;
+extern REGISTRY_BIN asfTable;
+extern REGISTRY_BIN bmpTable;
 extern REGISTRY_BIN neTable;
 extern REGISTRY_BIN peTable;
(Continue reading)

Nick Kurshev | 31 Mar 2007 10:43
Picon

CVS: biew/plugins/bin asf.c, NONE, 1.1 avi.c, NONE, 1.1 bmp.c, NONE, 1.1 jpeg.c, NONE, 1.1 mov.c, NONE, 1.1 mp3.c, NONE, 1.1 mpeg.c, NONE, 1.1 wav.c, NONE, 1.1

Update of /cvsroot/biew/biew/plugins/bin
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv1602/plugins/bin

Added Files:
	asf.c avi.c bmp.c jpeg.c mov.c mp3.c mpeg.c wav.c 
Log Message:
INitial support for multimedia format (based on my other project mplayerxp.sf.net)

--- NEW FILE: asf.c ---
/**
 *  <at> namespace   biew_plugins_auto
 *  <at> file        plugins/bin/asf.c
 *  <at> brief       This file contains implementation of decoder for ASF v1
 *              file format.
 *  <at> version     -
 *  <at> remark      this source file is part of asfary vIEW project (BIEW).
 *              The asfary vIEW (BIEW) is copyright (C) 1995 Nick Kurshev.
 *              All rights reserved. This software is redistributable under the
 *              licence given in the file "Licence.en" ("Licence.ru" in russian
 *              translation) distributed in the BIEW archive.
 *  <at> note        Requires POSIX compatible development system
 *
 *  <at> author      Nick Kurshev
 *  <at> since       1995
 *  <at> note        Development, fixes and improvements
**/
#include <stddef.h>

#include "bconsole.h"
#include "biewhelp.h"
(Continue reading)


Gmane