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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-04-05 23:31:25 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-04-05 23:33:53 +0400
commit26e70fd5ba50443fde738a606322d3fba0cc4985 (patch)
tree644afba4c0a9eeaa91b7c345296469a55a21339b /libavcodec/vp8.c
parent47fc82b5b34677f49bb263ee9e67350cb004fe31 (diff)
avcodec/vp8: fix name of copy_luma()
This function was introduced by ac4b32df71bd932838043a4838b86d11e169707f Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vp8.c')
-rw-r--r--libavcodec/vp8.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c
index 522ffd37b0..22a1993312 100644
--- a/libavcodec/vp8.c
+++ b/libavcodec/vp8.c
@@ -424,7 +424,7 @@ static void update_refs(VP8Context *s)
}
#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;
@@ -477,7 +477,7 @@ static int vp7_fade_frame(VP8Context *s, VP56RangeCoder *c)
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],