]> git.sesse.net Git - x264/log
x264
15 years agoAdd missing x264util.asm
Fiona Glaser [Wed, 30 Jul 2008 21:29:46 +0000 (15:29 -0600)]
Add missing x264util.asm

15 years agoBasic sanity checking of qpmax/qpmin options
Fiona Glaser [Wed, 30 Jul 2008 21:28:21 +0000 (15:28 -0600)]
Basic sanity checking of qpmax/qpmin options

15 years agoFix regression in r922
Fiona Glaser [Wed, 30 Jul 2008 20:42:29 +0000 (14:42 -0600)]
Fix regression in r922
set the chroma DC coefficients to zero for residual coding in qpel-rd
fix C99ism

15 years agoRefactor asm macros part 2: DCT
Holger Lubitz [Wed, 30 Jul 2008 03:36:01 +0000 (21:36 -0600)]
Refactor asm macros part 2: DCT

15 years agoRefactor asm macros part 1: DCT
Holger Lubitz [Wed, 30 Jul 2008 03:26:58 +0000 (21:26 -0600)]
Refactor asm macros part 1: DCT

15 years agoImprove intra RD refine, speed up residual_write_cabac
Fiona Glaser [Tue, 29 Jul 2008 23:08:38 +0000 (17:08 -0600)]
Improve intra RD refine, speed up residual_write_cabac
a do/while loop can be used for residual_write, but i8x8 had to be fixed so that it wouldn't call residual_write with zero coeffs
proper nnz handling added to cabac intra rd refine
chroma cbp added to 8x8 chroma rd
cbp was tested, but wasn't useful

15 years agoFix a few more minor memleaks
Fiona Glaser [Tue, 29 Jul 2008 19:42:41 +0000 (13:42 -0600)]
Fix a few more minor memleaks

15 years agostats summary: print distribution of numbers of consecutive B-frames
Loren Merritt [Sat, 26 Jul 2008 00:14:31 +0000 (18:14 -0600)]
stats summary: print distribution of numbers of consecutive B-frames

15 years agoadd interlacing to the list of stuff checked by x264_validate_levels
Loic Le Loarer [Fri, 25 Jul 2008 22:08:32 +0000 (16:08 -0600)]
add interlacing to the list of stuff checked by x264_validate_levels

15 years agoFix C99-ism in r907
Fiona Glaser [Thu, 24 Jul 2008 13:58:50 +0000 (07:58 -0600)]
Fix C99-ism in r907

15 years agoFaster temporal predictor calculation
Fiona Glaser [Fri, 18 Jul 2008 00:17:22 +0000 (18:17 -0600)]
Faster temporal predictor calculation
Split into a separate commit because this changes rounding, and thus changes output slightly.

15 years agoAlign lowres planes for improved cacheline split performance
Fiona Glaser [Thu, 17 Jul 2008 13:55:24 +0000 (07:55 -0600)]
Align lowres planes for improved cacheline split performance

15 years agoautodetect level based on resolution/bitrate/refs/etc, rather than defaulting to...
Loren Merritt [Wed, 16 Jul 2008 02:16:16 +0000 (20:16 -0600)]
autodetect level based on resolution/bitrate/refs/etc, rather than defaulting to L5.1
if vbv is not enabled (and especially in crf/cqp), we have to guess max bitrate, so we might underestimate the required level.

15 years agofix bs_write_ue_big for values >= 0x10000.
Loren Merritt [Fri, 18 Jul 2008 02:25:03 +0000 (20:25 -0600)]
fix bs_write_ue_big for values >= 0x10000.
(no immediate effect, since nothing writes such values yet)

15 years agoFix lossless mode borked in r901
BugMaster [Wed, 16 Jul 2008 17:54:51 +0000 (11:54 -0600)]
Fix lossless mode borked in r901

15 years agoRelax QPfile restrictions
Fiona Glaser [Sat, 12 Jul 2008 20:37:58 +0000 (14:37 -0600)]
Relax QPfile restrictions
Allow a QPfile to contain fewer frames than the total number of frames in the video and have ratecontrol fill in the rest.
Patch by kemuri9.

15 years agoLimit MVrange correctly in interlaced mode
Fiona Glaser [Sat, 12 Jul 2008 20:10:38 +0000 (14:10 -0600)]
Limit MVrange correctly in interlaced mode
Bug report by Sigma Designs, Inc.

15 years agoFix bug with PCM and adaptive quantization
Fiona Glaser [Sat, 12 Jul 2008 04:53:27 +0000 (22:53 -0600)]
Fix bug with PCM and adaptive quantization
In rare cases CABAC desync could occur, causing bitstream corruption

15 years agoFix memory leak upon x264 closing
BugMaster [Fri, 11 Jul 2008 22:00:02 +0000 (16:00 -0600)]
Fix memory leak upon x264 closing
Doesn't affect the CLI, but potentially important for programs which call x264 as a shared library.

15 years agoFix compilation on PPC systems (borked in r903)
Fiona Glaser [Fri, 11 Jul 2008 21:45:54 +0000 (15:45 -0600)]
Fix compilation on PPC systems (borked in r903)
Bigendian systems didn't have endian_fix32 defined

15 years agoAdd L1 reflist and B macroblock types to x264 info
Fiona Glaser [Fri, 11 Jul 2008 20:16:18 +0000 (14:16 -0600)]
Add L1 reflist and B macroblock types to x264 info
Also remove display of "PCM" if PCM mode is never used in the encode.
L1 reflist information will only show if pyramid coding is used.

15 years agoFix and enable I_PCM macroblock support
Fiona Glaser [Thu, 10 Jul 2008 14:36:45 +0000 (08:36 -0600)]
Fix and enable I_PCM macroblock support
In RD mode, always consider PCM as a macroblock mode possibility
Fix bitstream writing for PCM blocks in CAVLC and CABAC, and a few other minor changes to make PCM work.
PCM macroblocks improve compression at very low QPs (1-5) and in lossless mode.

15 years agode-duplicate vlc tables
Loren Merritt [Sat, 5 Jul 2008 03:03:26 +0000 (21:03 -0600)]
de-duplicate vlc tables

15 years agofaster ue/se/te write
Loren Merritt [Sat, 5 Jul 2008 00:56:30 +0000 (18:56 -0600)]
faster ue/se/te write

15 years agofaster bs_write
Fiona Glaser [Sat, 5 Jul 2008 00:32:32 +0000 (18:32 -0600)]
faster bs_write

15 years agocosmetics in ssd asm
Loren Merritt [Thu, 3 Jul 2008 06:37:16 +0000 (00:37 -0600)]
cosmetics in ssd asm

16 years agoVarious optimizations and cosmetics
Fiona Glaser [Sun, 6 Jul 2008 18:59:15 +0000 (12:59 -0600)]
Various optimizations and cosmetics
Update AUTHORS file with Gabriel and me
update XCHG macro to work correctly in if statements
Add new lookup tables for block_idx and fdec/fenc addresses
Slightly faster array_non_zero_count_mmx (patch by holger)
Eliminate branch in analyse_intra
Unroll loops in and clean up chroma encode
Convert some for loops to do/while loops for speed improvement
Do explicit write-combining on --me tesa mvsad_t struct
Shrink --me esa zero[] array
Speed up bime by reducing size of visited[][][] array

16 years agoResolve floating point exception with frame_init_lowres mmx
Fiona Glaser [Sun, 6 Jul 2008 17:15:19 +0000 (11:15 -0600)]
Resolve floating point exception with frame_init_lowres mmx
In some cases, the mmx version of frame_init_lowres could leave the FPU uninitialized for use in ratecontrol, resulting in floating point exceptions.
Since frame_init_lowres is such a time-consuming function, an emms was just put at the end, since it costs almost nothing compared to the total time of frame_init_lowres.

16 years agoUpdate my email address
Eric Petit [Fri, 4 Jul 2008 09:31:32 +0000 (11:31 +0200)]
Update my email address

16 years agoUpdate file headers throughout x264
Fiona Glaser [Fri, 4 Jul 2008 02:05:00 +0000 (20:05 -0600)]
Update file headers throughout x264
Update "Authors" lists based on actual authorship; highest is most important
Update copyright notices and remove old CVS tags from file headers
Add file headers to GTK and other sections missing them
Update FSF address
Other header-related cosmetics

16 years agodenoise_dct asm
Fiona Glaser [Thu, 3 Jul 2008 02:59:24 +0000 (20:59 -0600)]
denoise_dct asm

16 years agocosmetics in permutation macros
Loren Merritt [Thu, 3 Jul 2008 02:55:10 +0000 (20:55 -0600)]
cosmetics in permutation macros
SWAP can now take mmregs directly, rather than just their numbers

16 years agoFix bug in adaptive quantization
Fiona Glaser [Wed, 2 Jul 2008 16:43:57 +0000 (10:43 -0600)]
Fix bug in adaptive quantization
In some cases adaptive quantization did not correctly calculate the variance.
Bug reported by MasterNobody

16 years agolowres_init asm
Loren Merritt [Sun, 29 Jun 2008 06:00:03 +0000 (00:00 -0600)]
lowres_init asm
rounding is changed for asm convenience. this makes the c version slower, but there's no way around that if all the implementations are to have the same results.

16 years agoOptimizations and cosmetics in macroblock.c
Fiona Glaser [Wed, 2 Jul 2008 05:42:39 +0000 (23:42 -0600)]
Optimizations and cosmetics in macroblock.c
If an i4x4 dct block has no coefficients, don't bother with dequant/zigzag/idct.  Not useful for larger sizes because the odds of an empty block are much lower.
Cosmetics in i16x16 to be more consistent with other similar functions.
Add an SSD threshold for chroma in probe_skip to improve speed and minimize time spent on chroma skip analysis.
Rename lambda arrays to lambda_tab for consistency.

16 years agosome asm functions require aligned stack. disable these when compiling with msvc...
Gabriel Bouvigne [Fri, 27 Jun 2008 03:09:55 +0000 (21:09 -0600)]
some asm functions require aligned stack. disable these when compiling with msvc/icc.

16 years agoMove bitstream end check to macroblock level
Fiona Glaser [Tue, 24 Jun 2008 21:27:41 +0000 (15:27 -0600)]
Move bitstream end check to macroblock level
Additionally, instead of silently truncating the frame upon reaching the end of the buffer, reallocate a larger buffer instead.

16 years agoConvert NNZ to raster order and other optimizations
Fiona Glaser [Tue, 24 Jun 2008 18:23:50 +0000 (12:23 -0600)]
Convert NNZ to raster order and other optimizations
Converting NNZ to raster order simplifies a lot of the load/store code and allows more use of write-combining.
More use of write-combining throughout load/save code in common/macroblock.c
GCC has aliasing issues in the case of stores to 8-bit heap-allocated arrays; dereferencing the pointer once avoids this problem and significantly increases performance.
More manual loop unrolling and such.
Move all packXtoY functions to macroblock.h so any function can use them.
Add pack8to32.
Minor optimizations to encoder/macroblock.c

16 years agomc_chroma_sse2/ssse3
Loren Merritt [Thu, 12 Jun 2008 09:00:23 +0000 (03:00 -0600)]
mc_chroma_sse2/ssse3

16 years agocheckasm --bench=function_name
Loren Merritt [Thu, 12 Jun 2008 14:43:41 +0000 (08:43 -0600)]
checkasm --bench=function_name

16 years agointerleave psnr/ssim computation with reference frame filtering, to improve cache...
Loren Merritt [Thu, 12 Jun 2008 07:39:22 +0000 (01:39 -0600)]
interleave psnr/ssim computation with reference frame filtering, to improve cache coherency

16 years agoAdd more inline asm and a runtime check for MMXEXT support
Fiona Glaser [Sun, 15 Jun 2008 17:59:25 +0000 (11:59 -0600)]
Add more inline asm and a runtime check for MMXEXT support
x264 will now terminate gracefully rather than SIGILL when run on a machine with no MMXEXT support.
A configure option is now available to build x264 without assembly support for support on such old CPUs as the Pentium 2, K6, etc.

16 years agoUse aligned memcpy for x264_me_t struct and cosmetics
Fiona Glaser [Sun, 15 Jun 2008 17:51:36 +0000 (11:51 -0600)]
Use aligned memcpy for x264_me_t struct and cosmetics

16 years agoCosmetics and loop unrolling
Fiona Glaser [Sun, 15 Jun 2008 17:50:17 +0000 (11:50 -0600)]
Cosmetics and loop unrolling
GCC is not very good at loop unrolling in cases where it can perform constant propagation, so the unrolling unfortunately has to be done manually.

16 years agoFix regression in 64-bit in r882
Fiona Glaser [Thu, 12 Jun 2008 15:17:49 +0000 (09:17 -0600)]
Fix regression in 64-bit in r882
i_mvc needs to be 64-bit when used with a 64-bit memory pointer

16 years agoMore tweaks to me.c
Fiona Glaser [Thu, 12 Jun 2008 14:09:22 +0000 (08:09 -0600)]
More tweaks to me.c
Added inline MMX version of UMH's predictor difference test
Various cosmetics throughout me.c
Removed a C99-ism introduced in r878.

16 years agoFix regression in r736
Fiona Glaser [Thu, 12 Jun 2008 00:23:00 +0000 (18:23 -0600)]
Fix regression in r736
r736 added intra RD refinement to B-frames; however, it is possible for subme=7 to be used without b-rdo.
This means intra RD isn't run, and therefore it is possible for intra chroma analysis to not have been run, since update_cache was never called for an intra block, and chroma ME is not required even at subme=7.
r801, which removed a memset, made this worse because previously the chroma prediction mode was at least initialized to zero; now it was not initialized at all.
Therefore, --no-chroma-me, --subme 7, and no --b-rdo had the potential to crash.
This change restricts intra RD refinement to only be run when --b-rdo is enabled (sensible to begin with), thus preventing a crash in this case.

16 years agoFix regression in r850
Fiona Glaser [Wed, 11 Jun 2008 03:37:57 +0000 (21:37 -0600)]
Fix regression in r850
Bug resulted in rare incorrect chroma encoding

16 years agoCosmetics in VBV handling
Gabriel Bouvigne [Wed, 11 Jun 2008 00:40:52 +0000 (18:40 -0600)]
Cosmetics in VBV handling

16 years agoTweaks and cosmetics in me.c
Fiona Glaser [Wed, 11 Jun 2008 00:34:46 +0000 (18:34 -0600)]
Tweaks and cosmetics in me.c
Use write-combining for predictor checking and other tweaks.

16 years agoPartially inline trellis quantization
Fiona Glaser [Fri, 6 Jun 2008 20:59:10 +0000 (14:59 -0600)]
Partially inline trellis quantization
Inlining trellis into the 4x4/8x8 trellis wrappers increases trellis speed by about 5-10% through constant propagation.

16 years agoVarious cosmetic changes.
Fiona Glaser [Fri, 6 Jun 2008 18:32:57 +0000 (12:32 -0600)]
Various cosmetic changes.

16 years agoavg_weight_sse2
Fiona Glaser [Sat, 7 Jun 2008 04:57:33 +0000 (22:57 -0600)]
avg_weight_sse2

16 years agomany changes to which asm functions are enabled on which cpus.
Loren Merritt [Sat, 7 Jun 2008 05:31:22 +0000 (23:31 -0600)]
many changes to which asm functions are enabled on which cpus.
with Phenom, 3dnow is no longer equivalent to "sse2 is slow", so make a new flag for that.
some sse2 functions are useful only on Core2 and Phenom, so make a "sse2 is fast" flag for that.
some ssse3 instructions didn't become useful until Penryn, so yet another flag.
disable sse2 completely on Pentium M and Core1, because it's uniformly slower than mmx.
enable some sse2 functions on Athlon64 that always were faster and we just didn't notice.
remove mc_luma_sse3, because the only cpu that has lddqu (namely Pentium 4D) doesn't have "sse2 is fast".
don't print mmx1, sse1, nor 3dnow in the detected cpuflags, since we don't really have any such functions. likewise don't print sse3 unless it's used (Pentium 4D).

16 years agoenable ssse3 phadd satd on Penryn.
Loren Merritt [Sat, 7 Jun 2008 05:30:37 +0000 (23:30 -0600)]
enable ssse3 phadd satd on Penryn.

16 years agobenchmark most of the asm functions (checkasm --bench).
Loren Merritt [Sat, 7 Jun 2008 04:59:37 +0000 (22:59 -0600)]
benchmark most of the asm functions (checkasm --bench).

16 years agoCosmetic: fix C99-ism
Fiona Glaser [Thu, 5 Jun 2008 17:32:05 +0000 (11:32 -0600)]
Cosmetic: fix C99-ism

16 years agoUse a gaussian window for cplxblur
Fiona Glaser [Thu, 5 Jun 2008 03:28:48 +0000 (21:28 -0600)]
Use a gaussian window for cplxblur
Cplxblur was originally intended to use a gaussian window, but in its current form did not.  This change provides a tiny improvement to 2pass ratecontrol.

16 years agocosmetics
Loren Merritt [Mon, 2 Jun 2008 15:47:50 +0000 (09:47 -0600)]
cosmetics

16 years agonasm compatible NX stack
Loren Merritt [Mon, 2 Jun 2008 15:40:49 +0000 (09:40 -0600)]
nasm compatible NX stack

16 years agoCQP is incompatible with AQ
Loren Merritt [Mon, 2 Jun 2008 14:57:59 +0000 (08:57 -0600)]
CQP is incompatible with AQ

16 years agomemzero_aligned_mmx
Fiona Glaser [Sat, 24 May 2008 19:10:21 +0000 (13:10 -0600)]
memzero_aligned_mmx

16 years agobinmode stdin on mingw, not just msvc
BugMaster [Sat, 24 May 2008 07:09:07 +0000 (01:09 -0600)]
binmode stdin on mingw, not just msvc

16 years agoomit redundant mc after non-rdo dct size decision, and in b-direct rdo
Fiona Glaser [Sat, 24 May 2008 03:22:29 +0000 (21:22 -0600)]
omit redundant mc after non-rdo dct size decision, and in b-direct rdo

16 years agoallow fractional CRF values with AQ.
Fiona Glaser [Wed, 9 Apr 2008 22:46:51 +0000 (16:46 -0600)]
allow fractional CRF values with AQ.

16 years agofix some uninitialized partitions in rdo
Noboru Asai [Mon, 2 Jun 2008 15:12:29 +0000 (09:12 -0600)]
fix some uninitialized partitions in rdo

16 years ago2-pass VBV support and improved VBV handling
Gabriel Bouvigne [Mon, 2 Jun 2008 18:53:01 +0000 (12:53 -0600)]
2-pass VBV support and improved VBV handling
Dramatically improves 1-pass VBV ratecontrol (especially CBR) and provides support for VBV in 2-pass mode.  This consists of a series of functions that attempts to find overflows and underflows in the VBV from the first-pass statsfile and fix them before encoding.
1-pass VBV code partially by Fiona Glaser.

16 years agoFix noise reduction in threaded mode.
Alexander Strange [Mon, 2 Jun 2008 18:16:51 +0000 (12:16 -0600)]
Fix noise reduction in threaded mode.
Previously enabling noise reduction with threads had no effect.
Note that this is not an optimal solution; each thread still tracks noise reducation separately (unlike in single-threaded mode).

16 years agofix a crash on win32 with threads.
Loren Merritt [Wed, 21 May 2008 02:15:41 +0000 (20:15 -0600)]
fix a crash on win32 with threads.
r852 introduced an assumption in deblock that the stack is aligned.

16 years agoremove nasm version check. a feature check is all that's needed.
Loren Merritt [Tue, 20 May 2008 09:58:08 +0000 (03:58 -0600)]
remove nasm version check. a feature check is all that's needed.
silence stderr in yasm version check.

16 years agocosmetics in cabac
Loren Merritt [Sun, 18 May 2008 14:33:34 +0000 (08:33 -0600)]
cosmetics in cabac

16 years agofaster residual_write_cabac
Fiona Glaser [Sun, 18 May 2008 13:14:28 +0000 (07:14 -0600)]
faster residual_write_cabac

16 years agochange DEBUG_DUMP_FRAME to run-time --dump-yuv
Loren Merritt [Sun, 18 May 2008 12:23:57 +0000 (06:23 -0600)]
change DEBUG_DUMP_FRAME to run-time --dump-yuv

16 years agox264_median_mv_mmxext
Loren Merritt [Sat, 17 May 2008 09:39:59 +0000 (03:39 -0600)]
x264_median_mv_mmxext
this is the first non-runtime-detected use of mmxext, but it has to be inlined

16 years agofactor duplicated code out of deblock chroma mmx
Loren Merritt [Sun, 20 Apr 2008 09:18:19 +0000 (03:18 -0600)]
factor duplicated code out of deblock chroma mmx

16 years agodeblock_luma_intra_mmx
Loren Merritt [Tue, 15 Apr 2008 23:52:32 +0000 (17:52 -0600)]
deblock_luma_intra_mmx

16 years agowrite aspect ratio in mp4
vmrsss [Sat, 17 May 2008 06:50:22 +0000 (00:50 -0600)]
write aspect ratio in mp4

16 years agoomit delta_quant in i16x16 blocks with no residual
Fiona Glaser [Fri, 16 May 2008 04:44:12 +0000 (22:44 -0600)]
omit delta_quant in i16x16 blocks with no residual
(all other block types were already covered, but i16x16 cbp is special)

16 years agoexplicit write combining, because gcc fails at optimizing consecutive memory accesses
Fiona Glaser [Thu, 15 May 2008 12:01:01 +0000 (06:01 -0600)]
explicit write combining, because gcc fails at optimizing consecutive memory accesses

16 years agoforce unroll macroblock_load_pic_pointers
Fiona Glaser [Thu, 15 May 2008 11:41:43 +0000 (05:41 -0600)]
force unroll macroblock_load_pic_pointers
and a few other minor optimizations

16 years agoquant_2x2_dc_ssse3
Fiona Glaser [Thu, 15 May 2008 11:14:53 +0000 (05:14 -0600)]
quant_2x2_dc_ssse3

16 years agor836 borked lossless cabac nnz
Fiona Glaser [Sat, 17 May 2008 06:47:31 +0000 (00:47 -0600)]
r836 borked lossless cabac nnz

16 years agouse elf instead of a.out on netbsd
Henry Bent [Thu, 8 May 2008 01:49:14 +0000 (19:49 -0600)]
use elf instead of a.out on netbsd

16 years agofix x264_realloc when not using libc realloc.
Ning Xin [Wed, 7 May 2008 23:18:44 +0000 (17:18 -0600)]
fix x264_realloc when not using libc realloc.

16 years agodon't pretend to support win64. remove all related code.
Loren Merritt [Mon, 5 May 2008 22:28:24 +0000 (16:28 -0600)]
don't pretend to support win64. remove all related code.
it hasn't worked since probably some time in 2005, and won't ever be fixed unless someone steps up to maintain it.

16 years agocosmetics: replace last instances of parm# asm macros with r#
Loren Merritt [Mon, 5 May 2008 22:25:19 +0000 (16:25 -0600)]
cosmetics: replace last instances of parm# asm macros with r#

16 years agoremove DEBUG_BENCHMARK
Loren Merritt [Mon, 28 Apr 2008 09:12:29 +0000 (03:12 -0600)]
remove DEBUG_BENCHMARK

16 years agofaster probe_skip
Fiona Glaser [Sun, 27 Apr 2008 09:10:28 +0000 (03:10 -0600)]
faster probe_skip

16 years agodrop support for pre-SSE3 assemblers
Loren Merritt [Tue, 22 Apr 2008 23:16:25 +0000 (17:16 -0600)]
drop support for pre-SSE3 assemblers

16 years agos/x264_cpu_restore/x264_emms/
Loren Merritt [Fri, 25 Apr 2008 06:33:12 +0000 (00:33 -0600)]
s/x264_cpu_restore/x264_emms/
no point in giving it a generic name when it's not generic

16 years agofaster cabac_mb_cbp_luma
Fiona Glaser [Sun, 27 Apr 2008 08:37:37 +0000 (02:37 -0600)]
faster cabac_mb_cbp_luma
ported from ffmpeg

16 years agoremove some redundant nnz counts
Fiona Glaser [Sat, 26 Apr 2008 03:41:40 +0000 (21:41 -0600)]
remove some redundant nnz counts
move some nnz counts from macroblock_encode to cavlc if cabac doesn't need them

16 years agocompute missing nnz count in subme7 cavlc
Fiona Glaser [Sat, 26 Apr 2008 02:43:57 +0000 (20:43 -0600)]
compute missing nnz count in subme7 cavlc

16 years agoremove a division in macroblock-level bookkeeping
Fiona Glaser [Fri, 25 Apr 2008 07:47:47 +0000 (01:47 -0600)]
remove a division in macroblock-level bookkeeping

16 years agoomit P/B-skip mc from macroblock_encode if the pixels haven't been overwritten since...
Fiona Glaser [Fri, 25 Apr 2008 00:55:30 +0000 (18:55 -0600)]
omit P/B-skip mc from macroblock_encode if the pixels haven't been overwritten since probe_skip

16 years agoearlier termination in SEA if mvcost exceeds residual
Loren Merritt [Thu, 24 Apr 2008 11:17:04 +0000 (05:17 -0600)]
earlier termination in SEA if mvcost exceeds residual

16 years agoremove void* arithmetic from r821
Loren Merritt [Tue, 22 Apr 2008 10:00:24 +0000 (04:00 -0600)]
remove void* arithmetic from r821

16 years agoFix define of illegal function identifiers (as defined in section "7.1.3 Reserved...
Guillaume Poirier [Fri, 25 Apr 2008 09:29:09 +0000 (11:29 +0200)]
Fix define of illegal function identifiers (as defined in section "7.1.3 Reserved identiers" of C99 spec)

16 years agoFix define of illegal identifier (as defined in section "7.1.3 Reserved identiers...
Guillaume Poirier [Fri, 25 Apr 2008 08:50:48 +0000 (10:50 +0200)]
Fix define of illegal identifier (as defined in section "7.1.3 Reserved identiers" of C99 spec) "__UNUSED__", and use the one defined in common/osdep.h, i.e. "UNUSED"
based on a patch by Diego Biurrun

16 years agomore consistent include name (in line with other PPC includes)
Guillaume Poirier [Thu, 24 Apr 2008 12:46:11 +0000 (14:46 +0200)]
more consistent include name (in line with other PPC includes)