search for: _src_frame

Displaying 5 results from an estimated 5 matches for "_src_frame".

2005 Mar 23
0
[PATCH]
...econ_inter2) (unsigned char *_dst,int _dst_ystride, + const unsigned char *_src1,int _src1_ystride,const unsigned char *_src2, + int _src2_ystride,const ogg_int16_t *_residue); +void (* oc_state_frag_copy) (const struct oc_theora_state *_state, const int *_fragis, + int _nfragis,int _dst_frame,int _src_frame,int _pli); +void (* restore_fpu)(void); +} oc_base_opt_vtable; /*Common state information between the encoder and decoder.*/ @@ -291,10 +306,12 @@ oc_quant_tables dequant_table_data[2][3]; /*Loop filter strength parameters.*/ unsigned char loop_filter_limits[64]; + /*Ta...
2005 Aug 20
0
[PATCH] remove some FZIGZAG
...b/internal.h test/lib/internal.h --- ../mergeSTATE/test/lib/internal.h 2005-08-17 10:05:34.000000000 +0200 +++ test/lib/internal.h 2005-08-20 11:39:38.797310000 +0200 @@ -239,7 +239,7 @@ void (*state_frag_copy)(const oc_theora_state *_state, const int *_fragis,int _nfragis,int _dst_frame,int _src_frame,int _pli); void (*state_frag_recon)(oc_theora_state *_state,const oc_fragment *_frag, - int _pli,ogg_int16_t _dct_coeffs[64],int _last_zzi,int _ncoefs, + int _pli,ogg_int16_t _dct_coeffs[128],int _last_zzi,int _ncoefs, ogg_uint16_t _dc_iquant,const ogg_uint16_t _ac_iquant[64]); void (...
2005 Mar 23
3
[PATCH] promised MMX patches rc1
...econ_inter2) (unsigned char *_dst,int _dst_ystride, + const unsigned char *_src1,int _src1_ystride,const unsigned char *_src2, + int _src2_ystride,const ogg_int16_t *_residue); +void (* oc_state_frag_copy) (const struct oc_theora_state *_state, const int *_fragis, + int _nfragis,int _dst_frame,int _src_frame,int _pli); +void (* restore_fpu)(void); +} oc_base_opt_vtable; /*Common state information between the encoder and decoder.*/ @@ -291,10 +306,12 @@ oc_quant_tables dequant_table_data[2][3]; /*Loop filter strength parameters.*/ unsigned char loop_filter_limits[64]; + /*Ta...
2010 Jul 24
2
theorarm build
Hi all-- I tried building the ARM-optimized theora codec from the theorarm- merge-branch, and encountered the following compile and runtime problems before getting something to run. If there is another way to build it, it would be nice to know, but I got the sense that its current state in svn is incomplete. I'm using a gcc cross-compiler for ARM on an x86 Linux PC. After running
2005 Jul 20
1
MMX IDCT for theora-exp
...#endif diff -Naur a/lib/internal.h b/lib/internal.h --- a/lib/internal.h 2005-07-20 11:39:30.355887750 +0200 +++ b/lib/internal.h 2005-07-20 11:46:53.083556500 +0200 @@ -239,6 +239,9 @@ void (*state_frag_copy)(const oc_theora_state *_state, const int *_fragis,int _nfragis,int _dst_frame,int _src_frame,int _pli); void (*restore_fpu)(void); + void (*oc_state_frag_recon)(oc_theora_state *_state,const oc_fragment *_frag, + int _pli,ogg_int16_t _dct_coeffs[64],int _last_zzi,int _ncoefs, +...