comparison dsputil.h @ 6445:2b553c57ec51 libavcodec

move ff_emulated_edge_mc() to dsputil
author aurel
date Tue, 04 Mar 2008 23:10:47 +0000
parents b6d05f8827cd
children 208074826b34
comparison
equal deleted inserted replaced
6444:3572cc5bc8ff 6445:2b553c57ec51
165 DECLARE_ALIGNED(16, uint8_t, inverse[64]); 165 DECLARE_ALIGNED(16, uint8_t, inverse[64]);
166 #endif 166 #endif
167 } ScanTable; 167 } ScanTable;
168 168
169 void ff_init_scantable(uint8_t *, ScanTable *st, const uint8_t *src_scantable); 169 void ff_init_scantable(uint8_t *, ScanTable *st, const uint8_t *src_scantable);
170
171 void ff_emulated_edge_mc(uint8_t *buf, uint8_t *src, int linesize,
172 int block_w, int block_h,
173 int src_x, int src_y, int w, int h);
170 174
171 /** 175 /**
172 * DSPContext. 176 * DSPContext.
173 */ 177 */
174 typedef struct DSPContext { 178 typedef struct DSPContext {