Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavcodec/interplayvideo.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/interplayvideo.c b/libavcodec/interplayvideo.c
index 2fbc6a1829..1ddbbee6b6 100644
--- a/libavcodec/interplayvideo.c
+++ b/libavcodec/interplayvideo.c
@@ -94,7 +94,7 @@ typedef struct IpvideoContext {
motion_offset, s->upper_motion_limit_offset); \
return -1; \
} \
- s->dsp.put_pixels_tab[0][0](s->pixel_ptr, \
+ s->dsp.put_pixels_tab[1][0](s->pixel_ptr, \
s->current_frame.data[0] + motion_offset, s->stride, 8);
#define COPY_FROM_PREVIOUS() \
@@ -109,7 +109,7 @@ typedef struct IpvideoContext {
motion_offset, s->upper_motion_limit_offset); \
return -1; \
} \
- s->dsp.put_pixels_tab[0][0](s->pixel_ptr, \
+ s->dsp.put_pixels_tab[1][0](s->pixel_ptr, \
s->last_frame.data[0] + motion_offset, s->stride, 8);
#define COPY_FROM_SECOND_LAST() \
@@ -124,7 +124,7 @@ typedef struct IpvideoContext {
motion_offset, s->upper_motion_limit_offset); \
return -1; \
} \
- s->dsp.put_pixels_tab[0][0](s->pixel_ptr, \
+ s->dsp.put_pixels_tab[1][0](s->pixel_ptr, \
s->second_last_frame.data[0] + motion_offset, s->stride, 8);
static int ipvideo_decode_block_opcode_0x0(IpvideoContext *s)