summaryrefslogtreecommitdiffstats
path: root/video/image_writer.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-11-05 01:16:57 +0100
committerwm4 <wm4@nowhere>2014-11-05 01:52:20 +0100
commita7686e86fff0412454076756f333e2e271511166 (patch)
tree783751a6a63135ee798241ab63999d0000386dda /video/image_writer.c
parentfce77c05f5585c623afc312635054eb23cc69c0b (diff)
downloadmpv-a7686e86fff0412454076756f333e2e271511166.tar.bz2
mpv-a7686e86fff0412454076756f333e2e271511166.tar.xz
video: remove swapped-endian image format aliases
Like the previous commit, this removes names only, not actual support for these formats.
Diffstat (limited to 'video/image_writer.c')
-rw-r--r--video/image_writer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/image_writer.c b/video/image_writer.c
index 122379f725..e8f10978cd 100644
--- a/video/image_writer.c
+++ b/video/image_writer.c
@@ -225,7 +225,7 @@ static const struct img_writer img_writers[] = {
},
{ "tga", write_lavc,
.lavc_codec = AV_CODEC_ID_TARGA,
- .pixfmts = (const int[]) { IMGFMT_BGR24, IMGFMT_BGRA, IMGFMT_RGB555_LE,
+ .pixfmts = (const int[]) { IMGFMT_BGR24, IMGFMT_BGRA, IMGFMT_RGB555,
IMGFMT_Y8, 0},
},
#if HAVE_JPEG