search for: _pli

Displaying 7 results from an estimated 7 matches for "_pli".

2005 Aug 20
0
[PATCH] remove some FZIGZAG
...st/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 (*restore_...
2007 Sep 26
1
Theora decoding problem on PowerPC
..._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_iquant=0, _ac_iquant=0x6e) at dec/state....
2005 Aug 17
2
MMX loop filter for theora-exp
...ragy_end[pli]-edelay); } /*To fill the borders, we have an additional two pixel delay, since a diff -Naur a/lib/internal.h b/lib/internal.h --- a/lib/internal.h 2005-08-17 09:29:57.318872500 +0200 +++ b/lib/internal.h 2005-08-17 10:05:34.076411500 +0200 @@ -242,6 +242,8 @@ 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]); void (*restore_fpu)(void); + void (*oc_state_loop_filter_frag_rows)(oc_theora_state *_state,int *_bv, + int _refi,int _pli,int _fragy0,int _fragy_end); }oc_base_opt_vtable;...
2005 Mar 23
0
[PATCH]
...nsigned 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]; + /*Table for a...
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 Mar 23
3
[PATCH] promised MMX patches rc1
...nsigned 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]; + /*Table for a...
2005 Jul 20
1
MMX IDCT for theora-exp
...aur 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, + ogg_ui...