Displaying 3 results from an estimated 3 matches for "dst_ystrid".
Did you mean:
dst_ystride
2005 Mar 23
0
[PATCH]
...diff -Naur theora-exp/lib/fragment.c theora-rel/lib/fragment.c
--- theora-exp/lib/fragment.c 2005-03-23 08:54:44.163819664 +0100
+++ theora-rel/lib/fragment.c 2005-03-23 09:42:29.000000000 +0100
@@ -1,6 +1,11 @@
#include "internal.h"
-void oc_frag_recon_intra(unsigned char *_dst,int _dst_ystride,
+inline void oc_frag_recon_intra(const oc_theora_state *_state,unsigned char *_dst,int _dst_ystride,
+ const ogg_int16_t *_residue){
+_state->opt_vtable.oc_frag_recon_intra(_dst,_dst_ystride,_residue);
+}
+
+void oc_frag_recon_intra__c(unsigned char *_dst,int _dst_ystride,
const ogg_int16_t...
2005 Mar 23
3
[PATCH] promised MMX patches rc1
...diff -Naur theora-exp/lib/fragment.c theora-rel/lib/fragment.c
--- theora-exp/lib/fragment.c 2005-03-23 08:54:44.163819664 +0100
+++ theora-rel/lib/fragment.c 2005-03-23 09:42:29.000000000 +0100
@@ -1,6 +1,11 @@
#include "internal.h"
-void oc_frag_recon_intra(unsigned char *_dst,int _dst_ystride,
+inline void oc_frag_recon_intra(const oc_theora_state *_state,unsigned char *_dst,int _dst_ystride,
+ const ogg_int16_t *_residue){
+_state->opt_vtable.oc_frag_recon_intra(_dst,_dst_ystride,_residue);
+}
+
+void oc_frag_recon_intra__c(unsigned char *_dst,int _dst_ystride,
const ogg_int16_t...
2005 Jul 20
1
MMX IDCT for theora-exp
...;
+
+void oc_state_frag_recon_mmx(oc_theora_state *_state,const oc_fragment *_frag,
+ int _pli,ogg_int16_t _dct_coeffs[64],int _last_zzi,int _ncoefs,
+ ogg_uint16_t _dc_iquant,const ogg_uint16_t _ac_iquant[64]){
+ ogg_int16_t __attribute__((aligned(8),used)) res_buf[64];
+ int dst_framei;
+ int dst_ystride;
+ int zzi;
+ int ci;
+ /*_last_zzi is subtly different from an actual count of the number of
+ coefficients we decoded for this block.
+ It contains the value of zzi BEFORE the final token in the block was
+ decoded.
+ In most cases this is an EOB token (the continuation of an EO...