vpx/vp8/encoder
John Koleszar a910049aea New RTCD implementation
This is a proof of concept RTCD implementation to replace the current
system of nested includes, prototypes, INVOKE macros, etc. Currently
only the decoder specific functions are implemented in the new system.
Additional functions will be added in subsequent commits.

Overview:
  RTCD "functions" are implemented as either a global function pointer
  or a macro (when only one eligible specialization available).
  Functions which have RTCD specializations are listed using a simple
  DSL identifying the function's base name, its prototype, and the
  architecture extensions that specializations are available for.

Advantages over the old system:
  - No INVOKE macros. A call to an RTCD function looks like an ordinary
    function call.
  - No need to pass vtables around.
  - If there is only one eligible function to call, the function is
    called directly, rather than indirecting through a function pointer.
  - Supports the notion of "required" extensions, so in combination with
    the above, on x86_64 if the best function available is sse2 or lower
    it will be called directly, since all x86_64 platforms implement
    sse2.
  - Elides all references to functions which will never be called, which
    could reduce binary size. For example if sse2 is required and there
    are both mmx and sse2 implementations of a certain function, the
    code will have no link time references to the mmx code.
  - Significantly easier to add a new function, just one file to edit.

Disadvantages:
  - Requires global writable data (though this is not a new requirement)
  - 1 new generated source file.

Change-Id: Iae6edab65315f79c168485c96872641c5aa09d55
2012-01-30 12:06:27 -08:00
..
arm Disconnect ARM tgt_isa from dsp extensions 2012-01-20 10:38:15 -08:00
generic Reduce partial frame copy in encoder's pick_filter_level_fast 2011-10-26 15:25:07 +03:00
ppc remove one set of 16x16 variance funcations 2011-06-09 11:23:05 -07:00
x86 Improve SSSE3 fast quantizer function 2011-12-29 12:05:50 -05:00
asm_enc_offsets.c Disconnect ARM tgt_isa from dsp extensions 2012-01-20 10:38:15 -08:00
bitstream.c Correct clamping in use of vp8_find_near_mvs() 2012-01-26 09:37:27 -08:00
bitstream.h Disconnect ARM tgt_isa from dsp extensions 2012-01-20 10:38:15 -08:00
block.h Remove unused MACROBLOCK member vector_range 2011-12-28 14:58:38 -08:00
boolhuff.c Fix: check cx_data buffer prior to write 2011-10-20 15:55:00 -04:00
boolhuff.h Fix: check cx_data buffer prior to write 2011-10-20 15:55:00 -04:00
dct.c Use WebM in copyright notice for consistency 2010-09-09 10:01:21 -04:00
dct.h Use WebM in copyright notice for consistency 2010-09-09 10:01:21 -04:00
defaultcoefcounts.h Faster vp8_default_coef_probs 2011-08-16 16:21:21 -04:00
encodeframe.c New RTCD implementation 2012-01-30 12:06:27 -08:00
encodeintra.c Remove useless g_common.h 2011-12-21 15:02:23 -08:00
encodeintra.h Fix RT only build 2011-06-14 13:39:06 +03:00
encodemb.c Moved dequant idct into common 2011-12-15 14:23:41 -05:00
encodemb.h Moved dequant idct into common 2011-12-15 14:23:41 -05:00
encodemv.c Fix encoder partitioned output on ARM 2011-11-23 12:29:43 +02:00
encodemv.h Use full-pixel MV in mvsadcost calculation 2011-04-01 16:41:58 -04:00
ethreading.c Reduced the size of Y1Dequant and friends to [128][2] 2012-01-06 11:12:00 -08:00
firstpass.c Remove legacy integer types 2011-12-22 09:58:40 -08:00
firstpass.h Move firstpass motion map to stats packet 2010-10-21 14:04:20 -04:00
lookahead.c squash some signed/unsigned comparison warnings 2011-12-21 13:49:19 -08:00
lookahead.h squash some signed/unsigned comparison warnings 2011-12-21 13:49:19 -08:00
mcomp.c squash some signed/unsigned comparison warnings 2011-12-21 13:49:19 -08:00
mcomp.h Bug fix in motion vector limit calculation 2011-06-30 11:20:13 -04:00
modecosts.c Fix relative include paths 2011-02-10 15:09:44 -05:00
modecosts.h Use WebM in copyright notice for consistency 2010-09-09 10:01:21 -04:00
mr_dissim.c Multiple-resolution encoder 2011-12-05 17:59:42 -05:00
mr_dissim.h Multiple-resolution encoder 2011-12-05 17:59:42 -05:00
onyx_if.c New RTCD implementation 2012-01-30 12:06:27 -08:00
onyx_int.h Fixed bugs in multi-layer code related to changing params 2012-01-13 16:52:25 -08:00
pickinter.c Correct clamping in use of vp8_find_near_mvs() 2012-01-26 09:37:27 -08:00
pickinter.h Merge mr_pick_inter_mode and pick_inter_mode 2011-12-16 18:02:29 -05:00
picklpf.c Remove unnecessary ternary constructs 2011-12-22 10:09:46 -08:00
psnr.c Increase static linkage, remove unused functions 2011-03-17 20:53:47 -04:00
psnr.h Increase static linkage, remove unused functions 2011-03-17 20:53:47 -04:00
quantize.c Reduced the size of Y1Dequant and friends to [128][2] 2012-01-06 11:12:00 -08:00
quantize.h Fix checks in MB quantizer initialization 2011-11-08 12:11:48 -05:00
ratectrl.c Remove legacy integer types 2011-12-22 09:58:40 -08:00
ratectrl.h Move pick_frame_size() to ratectrl.c 2011-04-26 16:49:54 -04:00
rdopt.c Correct clamping in use of vp8_find_near_mvs() 2012-01-26 09:37:27 -08:00
rdopt.h get_plane_pointers: use u/v planes consistently 2012-01-18 12:50:06 -08:00
sad_c.c Replace vpx_ports/config.h with vpx_config.h 2011-09-22 13:33:54 +03:00
segmentation.c Use WebM in copyright notice for consistency 2010-09-09 10:01:21 -04:00
segmentation.h Fix relative include paths 2011-02-10 15:09:44 -05:00
ssim.c Reclassify optimized ssim calculations as SSE2. 2011-08-22 12:36:28 -07:00
temporal_filter.c Merge "Remove useless g_common.h" 2012-01-03 09:48:35 -08:00
temporal_filter.h x86 sse2 temporal_filter_apply 2011-01-06 14:00:30 -05:00
tokenize.c tokenizer: use correct block type context in stuff1st_order_b 2011-12-13 11:58:56 -08:00
tokenize.h Use MAX_ENTROPY_TOKENS and ENTROPY_NODES more consistently 2011-06-28 17:03:55 -04:00
treewriter.c Use WebM in copyright notice for consistency 2010-09-09 10:01:21 -04:00
treewriter.h Fix relative include paths 2011-02-10 15:09:44 -05:00
variance_c.c remove redundant functions 2011-06-06 16:44:05 -07:00
variance.h Reclassify optimized ssim calculations as SSE2. 2011-08-22 12:36:28 -07:00