summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorStefano Pigozzi <stefano.pigozzi@gmail.com>2013-03-03 11:14:44 +0100
committerStefano Pigozzi <stefano.pigozzi@gmail.com>2013-03-03 11:14:44 +0100
commit428a4243e9aa352adf432f54d5106eabf16f04e7 (patch)
tree434a28c87f6b73b7bc312d1a72420311f5690de9 /video
parent6944f2e8bb186bfd9580f4033501287d18589a9a (diff)
downloadmpv-428a4243e9aa352adf432f54d5106eabf16f04e7.tar.bz2
mpv-428a4243e9aa352adf432f54d5106eabf16f04e7.tar.xz
fix clang compiler warnings
Diffstat (limited to 'video')
-rw-r--r--video/img_format.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/img_format.c b/video/img_format.c
index dfee130090..dfb82d2081 100644
--- a/video/img_format.c
+++ b/video/img_format.c
@@ -161,7 +161,7 @@ static struct mp_imgfmt_desc get_avutil_fmt(enum PixelFormat fmt)
struct mp_imgfmt_desc desc = {
.id = mpfmt,
.avformat = fmt,
- .name = mp_imgfmt_to_name(desc.id),
+ .name = mp_imgfmt_to_name(mpfmt),
.chroma_xs = pd->log2_chroma_w,
.chroma_ys = pd->log2_chroma_h,
};