search for: oc_state_frag_recon_c

Displaying 4 results from an estimated 4 matches for "oc_state_frag_recon_c".

2007 Sep 26
1
Theora decoding problem on PowerPC
...agment.c:77 #1 0x0ffcfca0 in oc_frag_recon_inter2 (_state=0x25, _dst=0x37 <Address 0x37 out of bounds>, _dst_ystride=110, _src1=0x0, _src1_ystride=0, _src2=0xffffffff <Address 0xffffffff out of bounds>, _src2_ystride=55, _residue=0x6e) at dec/fragment.c:64 #2 0x0ffcbfcc in oc_state_frag_recon_c (_state=0x1002f988, _frag=0x4, _pli=805491056, _dct_coeffs=0x37, _last_zzi=-24576, _ncoefs=-1, _dc_iquant=0, _ac_iquant=0x6e) at dec/state.c:888 #3 0x0ffcbfcc in oc_state_frag_recon_c (_state=0x1002f988, _frag=0x4, _pli=805491056, _dct_coeffs=0x37, _last_zzi=-24576, _ncoefs=-1, _dc_iqua...
2005 Aug 20
0
[PATCH] remove some FZIGZAG
..._ac_iquant[64]); void oc_restore_fpu(const oc_theora_state *_state); void oc_state_loop_filter_frag_rows(oc_theora_state *_state,int *_bv, @@ -426,7 +426,7 @@ void oc_state_frag_copy_c(const oc_theora_state *_state,const int *_fragis, int _nfragis,int _dst_frame,int _src_frame,int _pli); void oc_state_frag_recon_c(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 oc_restore_fpu_c(void); void oc_state_loop_filt...
2005 Jul 20
1
MMX IDCT for theora-exp
...filter_init(oc_theora_state *_state,int *_bv); void oc_state_loop_filter(oc_theora_state *_state,int _frame); @@ -421,5 +421,8 @@ void oc_state_frag_copy_c(const oc_theora_state *_state,const int *_fragis, int _nfragis,int _dst_frame,int _src_frame,int _pli); void oc_restore_fpu_c(void); +void oc_state_frag_recon_c(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]); #endif diff -Naur a/lib/Makefile.am b/lib/Makefile.am --- a/lib/Makefile.am 2005-07-20 11:39:30.383889500 +0200 +++ b/...
2005 Aug 17
2
MMX loop filter for theora-exp
...,int _fragy_end); #endif diff -Naur a/lib/state.c b/lib/state.c --- a/lib/state.c 2005-08-17 09:29:57.314872250 +0200 +++ b/lib/state.c 2005-08-17 10:29:23.000000000 +0200 @@ -514,6 +514,8 @@ _state->opt_vtable.state_frag_copy=oc_state_frag_copy_c; _state->opt_vtable.state_frag_recon=oc_state_frag_recon_c; _state->opt_vtable.restore_fpu=oc_restore_fpu_c; + _state->opt_vtable.oc_state_loop_filter_frag_rows= + oc_state_loop_filter_frag_rows_c; } /*Initialize the accelerated function pointers.*/ @@ -922,7 +924,7 @@ } } -static void loop_filter_h(unsigned char *_pix,int _ystride,...