[cvs] / xvidcore / src / bitstream / bitstream.c Repository:
ViewVC logotype

Log of /xvidcore/src/bitstream/bitstream.c

Parent Directory Parent Directory


Links to HEAD: (view) (download) (annotate)
Links to release-1_2-branch: (view) (download) (annotate)
Sticky Tag:

Revision 1.58 - (view) (download) (annotate) - [select for diffs]
Tue Jul 24 09:43:10 2007 UTC (16 years, 8 months ago) by Isibaar
Branch: MAIN
CVS Tags: release-1_2_0, release-1_2_2, tag-branching-1_2_0
Branch point for: release-1_2-branch
Changes since 1.57: +4 -3 lines
Diff to previous 1.57
- improve b-frame decoding robustness (with broken stream or missing
  ref frame)

Revision 1.57 - (view) (download) (annotate) - [select for diffs]
Mon Apr 16 19:01:28 2007 UTC (16 years, 11 months ago) by Skal
Branch: MAIN
Changes since 1.56: +2 -2 lines
Diff to previous 1.56
        fix for bad resync_marker length in b-vops (both enc and dec)

        Thanks to Mathieu Monnier for the report
        (mathieu.monnier at polytechnique dot org)

Revision 1.56 - (view) (download) (annotate) - [select for diffs]
Mon Mar 27 11:21:48 2006 UTC (18 years ago) by Skal
Branch: MAIN
Changes since 1.55: +5 -6 lines
Diff to previous 1.55
        fix for the visual_object_verid vs. video_object_layer_verid
        problem of 6.3.3, reported by Li Xiang (lixiang01 at gmail dot com)
        Thanks for report and test bitstreams!

Revision 1.55 - (view) (download) (annotate) - [select for diffs]
Tue Nov 22 10:23:01 2005 UTC (18 years, 4 months ago) by suxen_drol
Branch: MAIN
CVS Tags: release-1_1_0, release-1_1_0_final
Branch point for: release-1_1-branch
Changes since 1.54: +2 -2 lines
Diff to previous 1.54
cleanings in code spotted by sparse (ed dot gomez at free dot fr>

Revision 1.54 - (view) (download) (annotate) - [select for diffs]
Thu Oct 6 10:46:42 2005 UTC (18 years, 5 months ago) by Isibaar
Branch: MAIN
Changes since 1.53: +3 -12 lines
Diff to previous 1.53
- Wiped the remainders of RRV encoding support
- Marked the RRV flags as obsolete in xvid.h API

Revision 1.53 - (view) (download) (annotate) - [select for diffs]
Mon Aug 1 10:53:46 2005 UTC (18 years, 8 months ago) by Isibaar
Branch: MAIN
Changes since 1.52: +7 -7 lines
Diff to previous 1.52
 * Writing pointed data is always better than memory
   addresses (Patch by GomGom)
 * Trivial style thingies (Patch by GomGom)
 * No width and height declared in write_tga bug
   (Patch by GomGom, spotted by Paul Kurucz
    ptk9417 at ritvax.isc.rit.edu)

Revision 1.52 - (view) (download) (annotate) - [select for diffs]
Mon May 23 09:29:43 2005 UTC (18 years, 10 months ago) by Skal
Branch: MAIN
Changes since 1.51: +19 -25 lines
Diff to previous 1.51
	encoder.c: simplify_time() optimized by Euclid.

	bitstream.c: write_video_packet_header() was buggy and
	kind of obfuscated, as noticed by Sigdrak at free.fr.

	from Edouard:

	gcc4 warning removal.
	- No executable shared objects installed
	  (Do not install the lib as executable. It's no use as the SO has no
 	   main symbol anyway, and the static lib is not runnable anyway.)
	- Statically link xvid_bench with libxvidcore.a
	- New autoconf garbage removal
	- Quotes in configure.in

Revision 1.51 - (view) (download) (annotate) - [select for diffs]
Tue May 17 21:03:32 2005 UTC (18 years, 10 months ago) by Skal
Branch: MAIN
Changes since 1.50: +77 -11 lines
Diff to previous 1.50
	encoder.c: better error handling upon MEM_ERROR
	bitstream.c: faster log2bin (xvid_bench.c updated)
	bitstream.c: added unused functions:
BitstreamWriteEndOfSequence()
BitstreamWriteGroupOfVopHeader()
write_video_packet_header()

	Original input: sigdrak at free.fr and Angela Belda. Thanks.

Revision 1.50 - (view) (download) (annotate) - [select for diffs]
Sun Apr 10 00:27:25 2005 UTC (18 years, 11 months ago) by suxen_drol
Branch: MAIN
Changes since 1.49: +3 -3 lines
Diff to previous 1.49
improved profile/level id auto-detection

Revision 1.49 - (view) (download) (annotate) - [select for diffs]
Sun Mar 27 03:59:42 2005 UTC (19 years ago) by suxen_drol
Branch: MAIN
Changes since 1.48: +7 -5 lines
Diff to previous 1.48
xvidcore
========
* added XVID_GLOBAL_DIVX5_USERDATA global flag
* removed the bvop delay warning text ("warning: nothing to output), as this often confuses joe user.
* minor changed to closed gop image_printf statement: s/"DX50 BVOP->PVOP"/"CLOSED GOP BVOP->PVOP"
* additional comments for low_delay_default mode within decoder_decode()
* divx userdata string: s/DivX999b000/DivX503b1393. this has been suggested by dxn for improved hardware compatibility [nb: i dont have a hardware player to confirm this]
* vbv_peakrate constraint is ignored if <= 0

vfw frontend
============
* dxn profiles now confirm to "DivX Certified Profile Compatibility v1.1", February 2005. this document was provided by DivXNetworks, USA. when a dxn profile is selected, strict conformance is enabled:
  - force 1:1 picture aspect ratio
  - disable bframes if interlacing is enabled
  - force maximum of 1 consecutive bvops for the portable and ht profiles, 2 bvops for the hd profile
  - always write divx 5 userdata string to bitstream
  - force packed bitstream option
  - updated dxn vbv parameters
* added PROFILE_4MV flag. 4mv is now disabled for the dxn handheld profile.
* moved PROFILE_AS/PROFILE_ARTS/PROFILE_S to config.c
* profile[].max_bitrate now measured in bit/sec (not kbps)
* profile->level box: widgets are now greyed-out if they are not used.
* increase vertical size of profile drop down list.
* about box button: s/Dismiss/OK

Revision 1.48 - (view) (download) (annotate) - [select for diffs]
Sun Dec 5 13:56:13 2004 UTC (19 years, 3 months ago) by syskin
Branch: MAIN
Changes since 1.47: +4 -9 lines
Diff to previous 1.47
RRV removed from everything else

Revision 1.47 - (view) (download) (annotate) - [select for diffs]
Sun Oct 3 16:20:51 2004 UTC (19 years, 5 months ago) by syskin
Branch: MAIN
Changes since 1.46: +2 -3 lines
Diff to previous 1.46
don't touch a frame that doesn't have at least 4 bytes. safety, and removes one visible error in a rare case

Revision 1.46 - (view) (download) (annotate) - [select for diffs]
Sat Sep 4 14:16:24 2004 UTC (19 years, 6 months ago) by edgomez
Branch: MAIN
Changes since 1.45: +2 -1 lines
Diff to previous 1.45
Fixes and enhancements

Revision 1.45 - (view) (download) (annotate) - [select for diffs]
Fri Jul 9 14:52:56 2004 UTC (19 years, 8 months ago) by syskin
Branch: MAIN
Changes since 1.44: +4 -2 lines
Diff to previous 1.44
bs_get_matrix() buglet

Revision 1.44 - (view) (download) (annotate) - [select for diffs]
Mon May 31 21:36:23 2004 UTC (19 years, 10 months ago) by edgomez
Branch: MAIN
Changes since 1.43: +6 -17 lines
Diff to previous 1.43
Merging release-1_0 fixes

Revision 1.43 - (view) (download) (annotate) - [select for diffs]
Fri May 21 14:40:15 2004 UTC (19 years, 10 months ago) by edgomez
Branch: MAIN
Changes since 1.42: +10 -13 lines
Diff to previous 1.42
patch-26 (stable merge), patch-27 no 64bit, patch-28 (setedges only once per frame)

Revision 1.42 - (view) (download) (annotate) - [select for diffs]
Mon Mar 22 22:36:23 2004 UTC (20 years ago) by edgomez
Branch: MAIN
Branch point for: release-1_0-branch
Changes since 1.41: +447 -440 lines
Diff to previous 1.41
xvidcore 1.0.0 rc3 merge back to HEAD

Revision 1.41 - (view) (download) (annotate) - [select for diffs]
Mon Jul 28 12:36:29 2003 UTC (20 years, 8 months ago) by edgomez
Branch: MAIN
CVS Tags: cvs-head, tag-merging-20040322
Changes since 1.40: +16 -3 lines
Diff to previous 1.40
Bitstream fixes (mainly a VOL syntax error and a missing/wrong paddings)

Revision 1.40 - (view) (download) (annotate) - [select for diffs]
Mon Jun 9 17:07:57 2003 UTC (20 years, 9 months ago) by Isibaar
Branch: MAIN
Changes since 1.39: +6 -0 lines
Diff to previous 1.39
don't use Walken idct anymore, simple idct is now used by default instead

Revision 1.39 - (view) (download) (annotate) - [select for diffs]
Wed Feb 19 21:59:30 2003 UTC (21 years, 1 month ago) by edgomez
Branch: MAIN
Branch point for: Isibaar, dev-api-4
Changes since 1.38: +1 -1 lines
Diff to previous 1.38
Small fixes patch

Revision 1.38 - (view) (download) (annotate) - [select for diffs]
Sat Feb 15 15:22:18 2003 UTC (21 years, 1 month ago) by edgomez
Branch: MAIN
CVS Tags: merged-dev-api-3
Changes since 1.37: +859 -295 lines
Diff to previous 1.37
Moved dev-api-3 to HEAD -- Nasty but efficient -- Merging work has been done too

Revision 1.37 - (view) (download) (annotate) - [select for diffs]
Sun Dec 15 01:21:12 2002 UTC (21 years, 3 months ago) by edgomez
Branch: MAIN
CVS Tags: release-0_9_1
Branch point for: release-0_9_1-fixes
Changes since 1.36: +3 -3 lines
Diff to previous 1.36
Another series of warnings for aggressive compilers

Revision 1.36 - (view) (download) (annotate) - [select for diffs]
Tue Nov 26 23:44:10 2002 UTC (21 years, 4 months ago) by edgomez
Branch: MAIN
Changes since 1.35: +148 -148 lines
Diff to previous 1.35
ANSI C compliancy - thx Rick Foos

Revision 1.35 - (view) (download) (annotate) - [select for diffs]
Sun Nov 17 00:57:56 2002 UTC (21 years, 4 months ago) by edgomez
Branch: MAIN
CVS Tags: release-0_9_0
Changes since 1.34: +37 -15 lines
Diff to previous 1.34
License changed

Revision 1.34 - (view) (download) (annotate) - [select for diffs]
Mon Sep 23 10:59:10 2002 UTC (21 years, 6 months ago) by suxen_drol
Branch: MAIN
Changes since 1.33: +2 -2 lines
Diff to previous 1.33
mingw/msvc compat. patch

Revision 1.33 - (view) (download) (annotate) - [select for diffs]
Sun Sep 22 17:01:36 2002 UTC (21 years, 6 months ago) by edgomez
Branch: MAIN
Changes since 1.32: +2 -2 lines
Diff to previous 1.32
Removed DEBUGXXXs calls

Revision 1.32 - (view) (download) (annotate) - [select for diffs]
Sat Sep 21 03:07:56 2002 UTC (21 years, 6 months ago) by suxen_drol
Branch: MAIN
Changes since 1.31: +2 -2 lines
Diff to previous 1.31
pross email address updates

Revision 1.31 - (view) (download) (annotate) - [select for diffs]
Thu Sep 19 19:25:06 2002 UTC (21 years, 6 months ago) by edgomez
Branch: MAIN
Changes since 1.30: +9 -38 lines
Diff to previous 1.30
- Removed last bits of BFRAMES #ifdefs

Revision 1.30 - (view) (download) (annotate) - [select for diffs]
Thu Sep 12 19:06:37 2002 UTC (21 years, 6 months ago) by edgomez
Branch: MAIN
Changes since 1.29: +2 -2 lines
Diff to previous 1.29
Fixed an uninitialized variable (gcc 3.1)

Revision 1.29 - (view) (download) (annotate) - [select for diffs]
Tue Sep 10 22:52:12 2002 UTC (21 years, 6 months ago) by edgomez
Branch: MAIN
Changes since 1.28: +36 -82 lines
Diff to previous 1.28
Added headers, removed unused code

Revision 1.28 - (view) (download) (annotate) - [select for diffs]
Tue Sep 3 17:25:45 2002 UTC (21 years, 6 months ago) by chl
Branch: MAIN
CVS Tags: tag-branching-20020904
Branch point for: dev-api-3
Changes since 1.27: +15 -13 lines
Diff to previous 1.27
Support for timestamps even without #define BFRAMES

Revision 1.27 - (view) (download) (annotate) - [select for diffs]
Mon Sep 2 21:15:37 2002 UTC (21 years, 6 months ago) by chl
Branch: MAIN
Changes since 1.26: +4 -2 lines
Diff to previous 1.26
Added low_delay=1 for non-Bframes mode.

Revision 1.26 - (view) (download) (annotate) - [select for diffs]
Wed Jul 24 00:49:16 2002 UTC (21 years, 8 months ago) by Isibaar
Branch: MAIN
Changes since 1.25: +5 -6 lines
Diff to previous 1.25
qpel decoding support

Revision 1.25 - (view) (download) (annotate) - [select for diffs]
Fri Jul 19 13:34:32 2002 UTC (21 years, 8 months ago) by chl
Branch: MAIN
Changes since 1.24: +8 -5 lines
Diff to previous 1.24
Minor fix for time-hack

Revision 1.24 - (view) (download) (annotate) - [select for diffs]
Thu Jul 18 23:52:39 2002 UTC (21 years, 8 months ago) by chl
Branch: MAIN
Changes since 1.23: +7 -5 lines
Diff to previous 1.23
Fixed for Bframes encoding and maybe decoding, too.

Revision 1.23 - (view) (download) (annotate) - [select for diffs]
Fri Jul 12 00:49:59 2002 UTC (21 years, 8 months ago) by chenm001
Branch: MAIN
Changes since 1.22: +10 -1 lines
Diff to previous 1.22
support the decode examples in ex1

Revision 1.22 - (view) (download) (annotate) - [select for diffs]
Sun Jun 30 10:46:29 2002 UTC (21 years, 9 months ago) by suxen_drol
Branch: MAIN
Changes since 1.21: +115 -78 lines
Diff to previous 1.21
resync patch

Revision 1.21 - (view) (download) (annotate) - [select for diffs]
Fri Jun 28 15:14:40 2002 UTC (21 years, 9 months ago) by suxen_drol
Branch: MAIN
Changes since 1.20: +43 -0 lines
Diff to previous 1.20
resync support, check_cpu_features() fixed

Revision 1.20 - (view) (download) (annotate) - [select for diffs]
Wed Jun 26 09:41:52 2002 UTC (21 years, 9 months ago) by suxen_drol
Branch: MAIN
Changes since 1.19: +6 -5 lines
Diff to previous 1.19
fixed_vop_rate

Revision 1.19 - (view) (download) (annotate) - [select for diffs]
Tue Jun 25 09:41:54 2002 UTC (21 years, 9 months ago) by suxen_drol
Branch: MAIN
Changes since 1.18: +8 -3 lines
Diff to previous 1.18
minor dx50bvop fix

Revision 1.18 - (view) (download) (annotate) - [select for diffs]
Sat Jun 22 07:23:10 2002 UTC (21 years, 9 months ago) by suxen_drol
Branch: MAIN
Changes since 1.17: +54 -53 lines
Diff to previous 1.17
minor fixes: bframe N_VOP support, custom quant bug, BFRAME inc_frame_num()

Revision 1.17 - (view) (download) (annotate) - [select for diffs]
Thu Jun 20 14:05:58 2002 UTC (21 years, 9 months ago) by suxen_drol
Branch: MAIN
Changes since 1.16: +27 -3 lines
Diff to previous 1.16
bframe patch

Revision 1.16 - (view) (download) (annotate) - [select for diffs]
Wed Jun 19 01:01:02 2002 UTC (21 years, 9 months ago) by chenm001
Branch: MAIN
Changes since 1.15: +13 -10 lines
Diff to previous 1.15
fix a little bug in use custom quant matrix

Revision 1.15 - (view) (download) (annotate) - [select for diffs]
Fri Jun 14 12:26:06 2002 UTC (21 years, 9 months ago) by suxen_drol
Branch: MAIN
Changes since 1.14: +3 -1 lines
Diff to previous 1.14
msvc asm{} codingstyle fix

Revision 1.14 - (view) (download) (annotate) - [select for diffs]
Wed Jun 12 20:38:40 2002 UTC (21 years, 9 months ago) by edgomez
Branch: MAIN
Changes since 1.13: +259 -300 lines
Diff to previous 1.13
Cosmetic - CodingStyle Applied - Legal Headers will be added later

Revision 1.13 - (view) (download) (annotate) - [select for diffs]
Thu May 9 00:15:51 2002 UTC (21 years, 10 months ago) by chenm001
Branch: MAIN
Changes since 1.12: +3 -1 lines
Diff to previous 1.12
add low_delay decode support

Revision 1.12 - (view) (download) (annotate) - [select for diffs]
Mon May 6 10:07:19 2002 UTC (21 years, 10 months ago) by suxen_drol
Branch: MAIN
Changes since 1.11: +18 -1 lines
Diff to previous 1.11
low_delay

Revision 1.11 - (view) (download) (annotate) - [select for diffs]
Mon May 6 08:18:11 2002 UTC (21 years, 10 months ago) by suxen_drol
Branch: MAIN
Changes since 1.10: +9 -4 lines
Diff to previous 1.10
bitstream finc/fbase bug fix

Revision 1.10 - (view) (download) (annotate) - [select for diffs]
Fri May 3 08:37:55 2002 UTC (21 years, 11 months ago) by Isibaar
Branch: MAIN
Changes since 1.9: +3 -1 lines
Diff to previous 1.9
quant range checking

Revision 1.9 - (view) (download) (annotate) - [select for diffs]
Fri May 3 00:45:10 2002 UTC (21 years, 11 months ago) by chenm001
Branch: MAIN
Changes since 1.8: +39 -15 lines
Diff to previous 1.8
add B-frame decode support

Revision 1.8 - (view) (download) (annotate) - [select for diffs]
Wed May 1 13:00:02 2002 UTC (21 years, 11 months ago) by suxen_drol
Branch: MAIN
Changes since 1.7: +22 -1 lines
Diff to previous 1.7
#define BFRAMES

Revision 1.7 - (view) (download) (annotate) - [select for diffs]
Thu Apr 25 06:55:00 2002 UTC (21 years, 11 months ago) by suxen_drol
Branch: MAIN
Changes since 1.6: +13 -12 lines
Diff to previous 1.6
FRAMEINFO

Revision 1.6 - (view) (download) (annotate) - [select for diffs]
Tue Apr 16 00:17:35 2002 UTC (21 years, 11 months ago) by chenm001
Branch: MAIN
Changes since 1.5: +12 -2 lines
Diff to previous 1.5
rewrite log2bin() use asm386(only in VC)

Revision 1.5 - (view) (download) (annotate) - [select for diffs]
Thu Mar 28 12:26:44 2002 UTC (22 years ago) by canard
Branch: MAIN
CVS Tags: xvidcore
Changes since 1.4: +3 -3 lines
Diff to previous 1.4
fixed some warnings

Revision 1.4 - (view) (download) (annotate) - [select for diffs]
Tue Mar 26 11:16:08 2002 UTC (22 years ago) by h
Branch: MAIN
Changes since 1.3: +33 -27 lines
Diff to previous 1.3
interlacing support - slow (MBDecideFieldDCT()), buggy (p-frames), incomplete (field motion prediction)

Revision 1.3 - (view) (download) (annotate) - [select for diffs]
Sat Mar 9 21:40:36 2002 UTC (22 years ago) by Isibaar
Branch: MAIN
Changes since 1.2: +6 -2 lines
Diff to previous 1.2
qmatrix bugfix

Revision 1.2 - (view) (download) (annotate) - [select for diffs]
Fri Mar 8 19:17:24 2002 UTC (22 years ago) by Isibaar
Branch: MAIN
Changes since 1.1: +36 -21 lines
Diff to previous 1.1
custom qmatrix support

Revision 1.1 - (view) (download) (annotate) - [select for diffs]
Fri Mar 8 02:44:34 2002 UTC (22 years ago) by Isibaar
Branch: MAIN
Branch point for: core
Initial revision

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4