search for: _frame

Displaying 6 results from an estimated 6 matches for "_frame".

Did you mean: frame
2014 Mar 20
3
[LLVMdev] So what's the deal with debug_frame V eh_frame
While comparing debug info between GCC and Clang I found a section that only Clang produces and GCC never produces: debug_frame. It seems (though I haven't verified this with absolute certainty) as though GCC just always uses eh_frame. LLVM on the other hand sometimes uses eh_frame and sometimes uses debug_frame. Here's an example: int f1(); int i = f1(); void func() { } Compiled with -fno-exceptions -g. The fi...
2005 Aug 17
2
MMX loop filter for theora-exp
...); + 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; @@ -391,8 +393,6 @@ int oc_state_loop_filter_init(oc_theora_state *_state,int *_bv); void oc_state_loop_filter(oc_theora_state *_state,int _frame); -void oc_state_loop_filter_frag_rows(oc_theora_state *_state,int *_bv, - int _refi,int _pli,int _fragy0,int _fragy_end); #if defined(OC_DUMP_IMAGES) int oc_state_dump_frame(const oc_theora_state *_state,int _frame, const char *_suf); @@ -412,6 +412,8 @@ int _pli,ogg_int16_t _dct_coeffs[64],...
2014 Mar 20
2
[LLVMdev] So what's the deal with debug_frame V eh_frame
...2014 at 10:41 AM, Rafael EspĂ­ndola <rafael.espindola at gmail.com> wrote: > On 19 March 2014 17:31, David Blaikie <dblaikie at gmail.com> wrote: >> While comparing debug info between GCC and Clang I found a section >> that only Clang produces and GCC never produces: debug_frame. >> >> It seems (though I haven't verified this with absolute certainty) as >> though GCC just always uses eh_frame. LLVM on the other hand sometimes >> uses eh_frame and sometimes uses debug_frame. >> >> Here's an example: >> >> int f1(); &gt...
2005 Mar 23
0
[PATCH]
...* oc_frag_recon_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_limi...
2005 Mar 23
3
[PATCH] promised MMX patches rc1
...* oc_frag_recon_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_limi...
2005 Jul 20
1
MMX IDCT for theora-exp
..._x[64]); #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,...