2006-10-15 |
michael |
10l
libavcodec
|
2006-10-15 |
michael |
this code will not work with PIC as it needs 7 registers and gcc doesnt support that in PIC
libavcodec
|
2006-10-15 |
michael |
shift CABACContext.range right, this reduces the number of shifts needed in get_cabac() and is slightly faster on P3 (and should be much faster on P4 as the P4 except the more recent variants lacks an integer shifter and so shifts have ~10 times longer latency then simple operations like adds)
libavcodec
|
2006-10-15 |
gpoirier |
Have xvid encoder wrapper honnor -vtag option
libavcodec
|
2006-10-15 |
diego |
Revert putting EXTRALIBS in common.mak, linking fails on MinGW.
libavcodec
|
2006-10-15 |
kostya |
Ignore blocks with no samples and flags (but usually with MD5 sum)
libavcodec
|
2006-10-14 |
diego |
Put libmpeg2 IDCT functions under CONFIG_GPL, fixes link failure
libavcodec
|
2006-10-14 |
gpoirier |
Remove empty structures,
libavcodec
|
2006-10-14 |
kostya |
Make PNG produce correct 8-bit pictures
libavcodec
|
2006-10-14 |
kostya |
Move block size check to decoder
libavcodec
|
2006-10-13 |
michael |
simplify escape decoding
libavcodec
|
2006-10-13 |
diego |
Remove intrinsics checks, they are no longer used.
libavcodec
|
2006-10-13 |
michael |
dehack *ps_state indexing in the branchless decoder
libavcodec
|
2006-10-13 |
kostya |
TIFF decoder
libavcodec
|
2006-10-12 |
michael |
add "memory" to the clobber list we change memory so we need it, this also fixes some problems with gcc svn
libavcodec
|
2006-10-12 |
michael |
-1 is a valid return value in ratecontrol_1pass() -> 100l for takis
libavcodec
|
2006-10-12 |
rathann |
Fixes:
libavcodec
|
2006-10-12 |
michael |
10l int vs uint8_t
libavcodec
|
2006-10-12 |
michael |
prevent "mb level" get_cabac() calls from being inlined (3% faster decode_mb_cabac() on P3)
libavcodec
|
2006-10-12 |
michael |
int->uint8_t for 2 tables
libavcodec
|
2006-10-12 |
bcoudurier |
support for Tiertex .seq files demuxing/video decoding, by Gregory Montoir %cyx A users P sourceforge P net%
libavcodec
|
2006-10-12 |
bcoudurier |
fix SHOW_SBITS for ALT_BITSTREAM_READER_LE, patch by Gregory Montoir %cyx A users P sourceforge P net%
libavcodec
|
2006-10-12 |
diego |
Rename internal.h --> xvid_internal.h, it clashes with libavutil/internal.h.
libavcodec
|
2006-10-12 |
lu_zero |
ppc generic prefetch
libavcodec
|
2006-10-12 |
gpoirier |
adds some useful comments after some of the #else, #elseif,
libavcodec
|
2006-10-11 |
diego |
Rename ABS macro to FFABS.
libavcodec
|
2006-10-11 |
lorenm |
more prefetches, 2% faster h264
libavcodec
|
2006-10-11 |
michael |
slightly faster on P3 slightly slower on athlon and probably faster on P4
libavcodec
|
2006-10-11 |
bcoudurier |
update doc, changelog, and increase libavcodec version for .cin files support
libavcodec
|
2006-10-11 |
bcoudurier |
support for Delphine Software .cin files demuxing / audio and video decoding, by Gregory Montoir %cyx A users P sourceforge P net%
libavcodec
|
2006-10-11 |
michael |
moving lps state transition code a little up in the branched asm code (1% faster on P3)
libavcodec
|
2006-10-11 |
michael |
write cabac low and range variables as early as possible to prevent stalls from reading them before they where written, the P4 is said to disslike that alot, on P3 its 2% faster (START/STOP_TIMER over decode_residual)
libavcodec
|