Log of /branches/dev-api-4/xvidcore/src/bitstream
Directory Listing
Revision
1192 -
Directory Listing
Modified
Tue Oct 28 22:23:03 2003 UTC (19 years, 5 months ago) by
edgomez
* Applied same style to all asm files
* Replaced current sad sse2 operators with skal's ones
* Removed old and unused colorspace asm files
Revision
1169 -
Directory Listing
Modified
Fri Oct 3 16:57:55 2003 UTC (19 years, 5 months ago) by
edgomez
Removed BIGLUT support and fixes to sysKin last commit
Revision
1166 -
Directory Listing
Modified
Fri Oct 3 14:01:59 2003 UTC (19 years, 5 months ago) by
syskin
gmc+interlacing fixed: no field_me flag in mcsel-ed MBs
Revision
1165 -
Directory Listing
Modified
Fri Oct 3 13:47:24 2003 UTC (19 years, 5 months ago) by
syskin
interlacing support for bvops
Revision
1161 -
Directory Listing
Modified
Wed Oct 1 23:23:01 2003 UTC (19 years, 6 months ago) by
edgomez
removed trailing spaces
Revision
1160 -
Directory Listing
Modified
Tue Sep 30 18:20:31 2003 UTC (19 years, 6 months ago) by
edgomez
Warnings and ANSI C cleanups
Revision
1142 -
Directory Listing
Modified
Wed Sep 10 22:19:00 2003 UTC (19 years, 6 months ago) by
edgomez
Motion Estimation module splitting.
Revision
1141 -
Directory Listing
Modified
Wed Sep 10 19:28:40 2003 UTC (19 years, 6 months ago) by
chl
Fixed wrong number of bits for fincr if fbase is a power 2
Revision
1131 -
Directory Listing
Modified
Tue Aug 26 14:07:11 2003 UTC (19 years, 7 months ago) by
edgomez
Final bits of AR flag support during encoding
Revision
1122 -
Directory Listing
Modified
Wed Aug 13 11:44:02 2003 UTC (19 years, 7 months ago) by
edgomez
Better architecture separation
Revision
1113 -
Directory Listing
Modified
Wed Aug 6 20:28:18 2003 UTC (19 years, 7 months ago) by
chl
VLC bugfix for GMC sprite_trajectory_len==9
Revision
1097 -
Directory Listing
Modified
Mon Jul 28 12:29:07 2003 UTC (19 years, 8 months ago) by
edgomez
Bitstream fixes (mainly a VOL syntax error and a missing/wrong paddings)
Revision
1079 -
Directory Listing
Modified
Sun Jun 29 16:17:51 2003 UTC (19 years, 9 months ago) by
chl
3 warp point GME - first bugfix
Revision
1067 -
Directory Listing
Modified
Thu Jun 12 14:16:41 2003 UTC (19 years, 9 months ago) by
Isibaar
removed rather useless log2bin asm code
Revision
1058 -
Directory Listing
Modified
Mon Jun 9 19:42:25 2003 UTC (19 years, 9 months ago) by
edgomez
Activated simple_idct for MMX - Backward compatibility with bistream version 9 ensures the use of the standard idct_mmx function
Revision
1054 -
Directory Listing
Modified
Mon Jun 9 13:55:56 2003 UTC (19 years, 9 months ago) by
edgomez
Added legal header
Revision
1053 -
Directory Listing
Modified
Mon Jun 9 01:25:19 2003 UTC (19 years, 9 months ago) by
edgomez
ISO C89 comment style
Revision
1038 -
Directory Listing
Modified
Thu May 22 16:36:07 2003 UTC (19 years, 10 months ago) by
edgomez
Removed this annoying \n from DPRINTF output. DPRINTF behaves
now like usual printf.
Just for fun, i decided to exercice my regexp skills:
for i in `find . -name "*.c"` ; do
sed s/'\(DPRINTF(XVID_DEBUG.*\)"\([^"]\+[^\\][^n]\)"\(.*\)$'/'\1"\2\\n"\3'/g $i > $i.tmp;
mv $i.tmp $i
done
Nice isn't it ? It just adds a \n to every DPRINTF call that
was relying on old behavior (automatic trailing \n).
Revision
1032 -
Directory Listing
Modified
Sat May 17 13:37:49 2003 UTC (19 years, 10 months ago) by
suxen_drol
* dynamic bvop decision stats bug fixed
* added runtime debug level option. this only only activated when _DEBUG is defined.
level is specified globaly, via "xvid_glb_init_t.debug" and XVID_DEBUG_xxx defines.
references to previous DPRINTF_LEVEL_xxx's have been replaced throughout libxvidcore
* futher bitrate zone fixes for plugin_2pass2.c
* removed old ratecontrol.c from msvc project
* xvid_encraw.c specifc:
* added "-max_key_interval integer" option
* renamed -debug to -vop_debug
* added "-debug integer" option, which sets xvid_gbl_init_t.debug field
* s/length/len/ status line
* vfw specific:
* zone/bitrate typos fixed ("you eediot")
* renamed "debug" regkey to "vop_debug"
* added "debug" regeky and textbox which sets xvid_gbl_init_t.debug field
Revision
1014 -
Directory Listing
Modified
Mon May 12 12:33:16 2003 UTC (19 years, 10 months ago) by
suxen_drol
zones, profiles, vfw changes
Revision
1011 -
Directory Listing
Modified
Fri May 9 22:03:13 2003 UTC (19 years, 10 months ago) by
chl
New Trellis Quant by Skal, moved from mbcoding to mbtransquant
Revision
1003 -
Directory Listing
Modified
Sat May 3 19:11:58 2003 UTC (19 years, 11 months ago) by
chl
Trellis: Removed double calculation of "last" => +0.02dB
Revision
995 -
Directory Listing
Modified
Sun Apr 27 19:47:48 2003 UTC (19 years, 11 months ago) by
chl
Trellis based R-D optimal quantization (H263, INTER)
Revision
982 -
Directory Listing
Modified
Thu Apr 10 13:05:54 2003 UTC (19 years, 11 months ago) by
edgomez
2003-04-10 GMT Edouard Gomez <ed.gomez@free.fr> patch-14
Summary:
Removed all ABS() macros.
Revision:
xvidcore--devapi4--1.0--patch-14
All ABS macros have been replace with their stdlib.h/math.h
equivalent. This gives a 33% overall speedup for the plain C encoder,
while the ia32 one seems to suffer a small speed loss. However this
speed loss is very small and it seems it depends on the CPU type as
the abs/fabs usage is impacting badly on sad functions but impacting
well on interpolate functions ... weird inst'it ?
modified files:
src/bitstream/mbcoding.c src/global.h src/image/image.c
src/motion/motion_comp.c src/motion/motion_est.c
src/motion/sad.c src/prediction/mbprediction.c
src/utils/mbtransquant.c src/xvid.c
Revision
972 -
Directory Listing
Modified
Fri Apr 4 22:16:15 2003 UTC (19 years, 11 months ago) by
edgomez
Fixes 32 bit misaligned reads on ARM (+ some sync work with old 0.9.x tree for cleanups)
Revision
958 -
Directory Listing
Modified
Sat Mar 29 01:29:53 2003 UTC (20 years ago) by
edgomez
Fixed a namespace conflict with libavcodec which caused dev-api-4 mencoder module to fail
Revision
952 -
Directory Listing
Modified
Thu Mar 27 15:00:34 2003 UTC (20 years ago) by
edgomez
Synced with CVS_HEAD
Revision
949 -
Directory Listing
Modified
Wed Mar 26 14:56:49 2003 UTC (20 years ago) by
edgomez
Changed flags naming conventions
Revision
947 -
Directory Listing
Modified
Wed Mar 26 10:47:59 2003 UTC (20 years ago) by
suxen_drol
encoder asp indication support
Revision
946 -
Directory Listing
Modified
Wed Mar 26 10:39:53 2003 UTC (20 years ago) by
suxen_drol
asp indication support
Revision
926 -
Directory Listing
Modified
Sun Mar 16 12:05:09 2003 UTC (20 years ago) by
suxen_drol
dquant cleanup
xvid_pluing_lumimasking added
xvid_encraw -lumimasking option added
Revision
924 -
Directory Listing
Modified
Sat Mar 15 17:03:17 2003 UTC (20 years ago) by
suxen_drol
variable frame rate encoding
Revision
920 -
Directory Listing
Modified
Sat Mar 15 14:32:56 2003 UTC (20 years ago) by
suxen_drol
enc_encode CLOSE_GOP fixed, further cleanup
XVID_REQORIGINAL plugin support
plugin examples: xvid_plugin_psnr, xvid_plugin_dump
Revision
890 -
Directory Listing
Modified
Sat Feb 22 08:49:45 2003 UTC (20 years, 1 month ago) by
suxen_drol
++api v1.-127.0
Revision
886 -
Directory Listing
Modified
Fri Feb 21 14:49:29 2003 UTC (20 years, 1 month ago) by
This commit was manufactured by cvs2svn to create branch 'dev-api-4'.
Revision
824 -
Directory Listing
Modified
Sun Feb 9 19:32:52 2003 UTC (20 years, 1 month ago) by
edgomez
Original Path:
trunk/xvidcore/src/bitstream
I made all these changes on my own working copy until i had
something really usable wihtout regressions for most users.
I think its place is now in CVS. Here is a ChangeLog summary
generated from my local patches.
base-0
Imported xvidcore 0.9.0 into arch repository
patch-1
Updated to current stable CVS_HEAD
patch-2
Changed build system for Unix OSes
patch-3
Fixes for the new build system in sources.
patch-4
Fixed options and added the --disable-assembly option
patch-5
Fixed a BSD checking in nasm output format.
patch-6
Fixed the "ar" "s" option for some platforms.
patch-7
Changed the way I add strings into variables.
patch-8
Fixed portab.h for _DEBUG target and GCC/ICC compilers.
patch-9
Added Altivec detection (Guillaume Morin)
patch-10
Fixed MacOSX build.
patch-11
Fixed WIN32/_MSC_VER confusion and updated MSVC libxvidcore.dsp project file.
patch-12
DivX4 compatibility layer has been turned into an option (default:disable).
ToDo:
- Fix IA64 assembly file selection.
- Do I disable PPC assembly code ? (according to Guillaume, it needs to be updated)
Revision
816 -
Directory Listing
Modified
Thu Feb 6 00:48:08 2003 UTC (20 years, 1 month ago) by
edgomez
Original Path:
trunk/xvidcore/src/bitstream
Fixed a bug where run_esc==-1 was indexing an array -> segfault (spoted on a strong arm CPU ;-)
Revision
731 -
Directory Listing
Modified
Thu Dec 19 22:58:58 2002 UTC (20 years, 3 months ago) by
edgomez
Original Path:
trunk/xvidcore/src/bitstream
Fixed a buffer overflow in vlc_init (lacked a few more VLC in intra/inter tables) - should solve the static problem on MSVC targets too
Revision
603 -
Directory Listing
Modified
Sat Oct 19 11:41:12 2002 UTC (20 years, 5 months ago) by
edgomez
Original Path:
trunk/xvidcore/src/bitstream
Changed Michael Militzer to name + email (next patch will fix copyrights with the right holders)
Revision
466 -
Directory Listing
Modified
Tue Sep 10 22:25:23 2002 UTC (20 years, 6 months ago) by
edgomez
Original Path:
trunk/xvidcore/src/bitstream
- Changed header
- Extended peter's copyright to 2002
- Cosmetic separation between logical sections
Revision
453 -
Directory Listing
Modified
Sun Sep 8 15:39:01 2002 UTC (20 years, 6 months ago) by
edgomez
Original Path:
trunk/xvidcore/src/bitstream
- Moved get_coeff from vlc_codes.h
- Disabled MBCodingBVOP with #ifdef 0 #endif (Will be removed completly when i'm sure it doesn't hurt)
Revision
450 -
Directory Listing
Modified
Sun Sep 8 13:44:11 2002 UTC (20 years, 6 months ago) by
edgomez
Original Path:
trunk/xvidcore/src/bitstream
- Added GPL Header + patent infringement
- Cosmetic
- The inlined function will be moved later
Revision
347 -
Directory Listing
Modified
Sun Jul 28 13:06:46 2002 UTC (20 years, 8 months ago) by
chl
Original Path:
trunk/xvidcore/src/bitstream
Modified SKIP mb behaviour for Pframes when Bframes are active: Check if
intermediate B-block can be skipped, too. Check for SKIP is now done
in encode_pframe(), not in MBCoding().
Revision
335 -
Directory Listing
Modified
Wed Jul 24 19:34:14 2002 UTC (20 years, 8 months ago) by
chl
Original Path:
trunk/xvidcore/src/bitstream
Added #ifdef _DISABLE_SKIP in MBCoding(). If this is defined, there
will be __no skipped macroblocks__ in P-frames!
This is of course bad (bigger files), but it's needed for clean B-frame
encoding until we have a workaround for the SKIP-flaw in the standard. :-(
Revision
78 -
Directory Listing
Modified
Thu Mar 28 20:57:25 2002 UTC (21 years ago) by
edgomez
Original Path:
trunk/xvidcore/src/bitstream
Big patch, use it with care (tests done with GNU/Linux) :
- Trivial warnings in encoder.c line 282 ret1 = ret 2 = 0;
- Lot of "New line at end of file missing" warnings fixed (gcc3)
- All 2d arrays have been turned into 1d arrays
To force alignment of matrices on stack, use DECLARE_ALIGNED_MATRIX
(read portab.h)
Win32 users should give feedback.
Revision
69 -
Directory Listing
Modified
Tue Mar 26 11:16:08 2002 UTC (21 years ago) by
h
Original Path:
trunk/xvidcore/src/bitstream
interlacing support - slow (MBDecideFieldDCT()), buggy (p-frames), incomplete (field motion prediction)