1
mirror of https://github.com/mpv-player/mpv synced 2024-08-04 14:59:58 +02:00
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11282 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
michael 2003-10-27 00:14:33 +00:00
parent c7c01433e7
commit 162cbf9843

View File

@ -128,7 +128,7 @@ static void filter(struct vf_priv_s *p, uint8_t *dst, uint8_t *src, int dst_stri
int x, y, i;
const int count= 1<<p->log2_count;
const int log2_scale= 6-p->log2_count;
const int stride= p->temp_stride;
const int stride= p->temp_stride; //FIXME
uint64_t block_align[32];
DCTELEM *block = (DCTELEM *)block_align;
DCTELEM *block2= (DCTELEM *)(block_align+16);
@ -144,7 +144,7 @@ static void filter(struct vf_priv_s *p, uint8_t *dst, uint8_t *src, int dst_stri
}
for(y=0; y<8; y++){
memcpy(p->src + ( 7-y)*stride, p->src + ( y+8)*stride, stride);
memcpy(p->src + (width+8+y)*stride, p->src + (width-y+7)*stride, stride);
memcpy(p->src + (height+8+y)*stride, p->src + (height-y+7)*stride, stride);
}
//FIXME (try edge emu)