Commit 26e70fd5 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/vp8: fix name of copy_luma()

This function was introduced by ac4b32dfSigned-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 47fc82b5
...@@ -424,7 +424,7 @@ static void update_refs(VP8Context *s) ...@@ -424,7 +424,7 @@ static void update_refs(VP8Context *s)
} }
#endif #endif
static void copy_luma(AVFrame *dst, AVFrame *src, int width, int height) static void copy_chroma(AVFrame *dst, AVFrame *src, int width, int height)
{ {
int i, j; int i, j;
...@@ -477,7 +477,7 @@ static int vp7_fade_frame(VP8Context *s, VP56RangeCoder *c) ...@@ -477,7 +477,7 @@ static int vp7_fade_frame(VP8Context *s, VP56RangeCoder *c)
dst = s->framep[VP56_FRAME_PREVIOUS]->tf.f; dst = s->framep[VP56_FRAME_PREVIOUS]->tf.f;
copy_luma(dst, src, width, height); copy_chroma(dst, src, width, height);
} }
fade(dst->data[0], dst->linesize[0], fade(dst->data[0], dst->linesize[0],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment