diff options
author | Mike Melanson <mike@multimedia.cx> | 2003-06-21 19:55:56 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2003-06-21 19:55:56 +0000 |
commit | 06fba75357d39e331072cc0f5f802c602635a4c9 (patch) | |
tree | bc3a862f05de17c08ab58b8ff5801697960a0a1d | |
parent | 8be40344a6887c16b307bd3b25189b0b6c3fce84 (diff) | |
download | xine-lib-06fba75357d39e331072cc0f5f802c602635a4c9.tar.gz xine-lib-06fba75357d39e331072cc0f5f802c602635a4c9.tar.bz2 |
missed file in the last sync
CVS patchset: 5083
CVS date: 2003/06/21 19:55:56
-rw-r--r-- | src/libffmpeg/libavcodec/svq3.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libffmpeg/libavcodec/svq3.c b/src/libffmpeg/libavcodec/svq3.c index e565bd0a8..24762f8b1 100644 --- a/src/libffmpeg/libavcodec/svq3.c +++ b/src/libffmpeg/libavcodec/svq3.c @@ -291,7 +291,7 @@ static inline void svq3_mc_dir_part (MpegEncContext *s, src = pic->data[0] + mx + my*s->linesize; if (emu) { - ff_emulated_edge_mc (s, src, s->linesize, (width + 1), (height + 1), + ff_emulated_edge_mc (s->edge_emu_buffer, src, s->linesize, (width + 1), (height + 1), mx, my, s->h_edge_pos, s->v_edge_pos); src = s->edge_emu_buffer; } @@ -312,9 +312,9 @@ static inline void svq3_mc_dir_part (MpegEncContext *s, src = pic->data[i] + mx + my*s->uvlinesize; if (emu) { - ff_emulated_edge_mc (s, src, s->uvlinesize, (width + 1), (height + 1), + ff_emulated_edge_mc (s->edge_emu_buffer, src, s->uvlinesize, (width + 1), (height + 1), mx, my, (s->h_edge_pos >> 1), (s->v_edge_pos >> 1)); - src = s->edge_emu_buffer; + src = s->edge_emu_buffer; } if(thirdpel) (avg ? s->dsp.avg_tpel_pixels_tab : s->dsp.put_tpel_pixels_tab)[dxy](dest, src, s->uvlinesize, width, height); |