FFmpeg
img2.c
Go to the documentation of this file.
1 /*
2  * Image format
3  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4  * Copyright (c) 2004 Michael Niedermayer
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 #include "libavutil/avstring.h"
24 #include "internal.h"
25 #include "img2.h"
26 
27 const IdStrMap ff_img_tags[] = {
28  { AV_CODEC_ID_MJPEG, "jpeg" },
29  { AV_CODEC_ID_MJPEG, "jpg" },
30  { AV_CODEC_ID_MJPEG, "jps" },
31  { AV_CODEC_ID_MJPEG, "mpo" },
32  { AV_CODEC_ID_LJPEG, "ljpg" },
33  { AV_CODEC_ID_JPEGLS, "jls" },
34  { AV_CODEC_ID_PNG, "png" },
35  { AV_CODEC_ID_PNG, "pns" },
36  { AV_CODEC_ID_PNG, "mng" },
37  { AV_CODEC_ID_PPM, "ppm" },
38  { AV_CODEC_ID_PPM, "pnm" },
39  { AV_CODEC_ID_PGM, "pgm" },
40  { AV_CODEC_ID_PGMYUV, "pgmyuv" },
41  { AV_CODEC_ID_PBM, "pbm" },
42  { AV_CODEC_ID_PAM, "pam" },
43  { AV_CODEC_ID_ALIAS_PIX, "pix" },
44  { AV_CODEC_ID_DDS, "dds" },
45  { AV_CODEC_ID_MPEG1VIDEO, "mpg1-img" },
46  { AV_CODEC_ID_MPEG2VIDEO, "mpg2-img" },
47  { AV_CODEC_ID_MPEG4, "mpg4-img" },
48  { AV_CODEC_ID_RAWVIDEO, "y" },
49  { AV_CODEC_ID_RAWVIDEO, "raw" },
50  { AV_CODEC_ID_BMP, "bmp" },
51  { AV_CODEC_ID_TARGA, "tga" },
52  { AV_CODEC_ID_TIFF, "tiff" },
53  { AV_CODEC_ID_TIFF, "tif" },
54  { AV_CODEC_ID_TIFF, "dng" },
55  { AV_CODEC_ID_SGI, "sgi" },
56  { AV_CODEC_ID_PTX, "ptx" },
57  { AV_CODEC_ID_PCX, "pcx" },
58  { AV_CODEC_ID_QDRAW, "pic" },
59  { AV_CODEC_ID_QDRAW, "pct" },
60  { AV_CODEC_ID_QDRAW, "pict" },
61  { AV_CODEC_ID_SUNRAST, "sun" },
62  { AV_CODEC_ID_SUNRAST, "ras" },
63  { AV_CODEC_ID_SUNRAST, "rs" },
64  { AV_CODEC_ID_SUNRAST, "im1" },
65  { AV_CODEC_ID_SUNRAST, "im8" },
66  { AV_CODEC_ID_SUNRAST, "im24" },
67  { AV_CODEC_ID_SUNRAST, "im32" },
68  { AV_CODEC_ID_SUNRAST, "sunras" },
69  { AV_CODEC_ID_SVG, "svg" },
70  { AV_CODEC_ID_SVG, "svgz" },
71  { AV_CODEC_ID_JPEG2000, "j2c" },
72  { AV_CODEC_ID_JPEG2000, "jp2" },
73  { AV_CODEC_ID_JPEG2000, "jpc" },
74  { AV_CODEC_ID_JPEG2000, "j2k" },
75  { AV_CODEC_ID_DPX, "dpx" },
76  { AV_CODEC_ID_EXR, "exr" },
77  { AV_CODEC_ID_PICTOR, "pic" },
78  { AV_CODEC_ID_V210X, "yuv10" },
79  { AV_CODEC_ID_WEBP, "webp" },
80  { AV_CODEC_ID_XBM, "xbm" },
81  { AV_CODEC_ID_XPM, "xpm" },
82  { AV_CODEC_ID_XFACE, "xface" },
83  { AV_CODEC_ID_XWD, "xwd" },
85 };
86 
87 static enum AVCodecID str2id(const IdStrMap *tags, const char *str)
88 {
89  str = strrchr(str, '.');
90  if (!str)
91  return AV_CODEC_ID_NONE;
92  str++;
93 
94  while (tags->id) {
95  if (!av_strcasecmp(str, tags->str))
96  return tags->id;
97 
98  tags++;
99  }
100  return AV_CODEC_ID_NONE;
101 }
102 
103 enum AVCodecID ff_guess_image2_codec(const char *filename)
104 {
105  return str2id(ff_img_tags, filename);
106 }
AV_CODEC_ID_DPX
@ AV_CODEC_ID_DPX
Definition: avcodec.h:346
AV_CODEC_ID_PBM
@ AV_CODEC_ID_PBM
Definition: avcodec.h:281
av_strcasecmp
int av_strcasecmp(const char *a, const char *b)
Locale-independent case-insensitive compare.
Definition: avstring.c:213
AV_CODEC_ID_RAWVIDEO
@ AV_CODEC_ID_RAWVIDEO
Definition: avcodec.h:231
AV_CODEC_ID_MPEG4
@ AV_CODEC_ID_MPEG4
Definition: avcodec.h:230
AV_CODEC_ID_PPM
@ AV_CODEC_ID_PPM
Definition: avcodec.h:280
AV_CODEC_ID_PGM
@ AV_CODEC_ID_PGM
Definition: avcodec.h:282
ff_guess_image2_codec
enum AVCodecID ff_guess_image2_codec(const char *filename)
Definition: img2.c:103
AV_CODEC_ID_XFACE
@ AV_CODEC_ID_XFACE
Definition: avcodec.h:425
ff_img_tags
const IdStrMap ff_img_tags[]
Definition: img2.c:27
AV_CODEC_ID_BMP
@ AV_CODEC_ID_BMP
Definition: avcodec.h:296
AV_CODEC_ID_ALIAS_PIX
@ AV_CODEC_ID_ALIAS_PIX
Definition: avcodec.h:395
str2id
static enum AVCodecID str2id(const IdStrMap *tags, const char *str)
Definition: img2.c:87
AV_CODEC_ID_PNG
@ AV_CODEC_ID_PNG
Definition: avcodec.h:279
internal.h
AV_CODEC_ID_EXR
@ AV_CODEC_ID_EXR
Definition: avcodec.h:398
NULL
#define NULL
Definition: coverity.c:32
AV_CODEC_ID_XWD
@ AV_CODEC_ID_XWD
Definition: avcodec.h:376
IdStrMap::id
enum AVCodecID id
Definition: img2.h:67
IdStrMap::str
const char * str
Definition: img2.h:68
AV_CODEC_ID_PICTOR
@ AV_CODEC_ID_PICTOR
Definition: avcodec.h:359
AV_CODEC_ID_PGMYUV
@ AV_CODEC_ID_PGMYUV
Definition: avcodec.h:283
AV_CODEC_ID_MPEG1VIDEO
@ AV_CODEC_ID_MPEG1VIDEO
Definition: avcodec.h:219
AVCodecID
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: avcodec.h:215
AV_CODEC_ID_PAM
@ AV_CODEC_ID_PAM
Definition: avcodec.h:284
AV_CODEC_ID_PCX
@ AV_CODEC_ID_PCX
Definition: avcodec.h:327
AV_CODEC_ID_QDRAW
@ AV_CODEC_ID_QDRAW
Definition: avcodec.h:276
AV_CODEC_ID_V210X
@ AV_CODEC_ID_V210X
Definition: avcodec.h:343
AV_CODEC_ID_XPM
@ AV_CODEC_ID_XPM
Definition: avcodec.h:442
AV_CODEC_ID_SVG
@ AV_CODEC_ID_SVG
Definition: avcodec.h:447
AV_CODEC_ID_MJPEG
@ AV_CODEC_ID_MJPEG
Definition: avcodec.h:225
AV_CODEC_ID_NONE
@ AV_CODEC_ID_NONE
Definition: avcodec.h:216
img2.h
AV_CODEC_ID_WEBP
@ AV_CODEC_ID_WEBP
Definition: avcodec.h:390
AV_CODEC_ID_JPEG2000
@ AV_CODEC_ID_JPEG2000
Definition: avcodec.h:306
AV_CODEC_ID_XBM
@ AV_CODEC_ID_XBM
Definition: avcodec.h:378
AV_CODEC_ID_JPEGLS
@ AV_CODEC_ID_JPEGLS
Definition: avcodec.h:229
AV_CODEC_ID_DDS
@ AV_CODEC_ID_DDS
Definition: avcodec.h:408
IdStrMap
Definition: img2.h:66
AV_CODEC_ID_SGI
@ AV_CODEC_ID_SGI
Definition: avcodec.h:319
AV_CODEC_ID_SUNRAST
@ AV_CODEC_ID_SUNRAST
Definition: avcodec.h:328
AV_CODEC_ID_TARGA
@ AV_CODEC_ID_TARGA
Definition: avcodec.h:311
AV_CODEC_ID_TIFF
@ AV_CODEC_ID_TIFF
Definition: avcodec.h:314
avstring.h
AV_CODEC_ID_MPEG2VIDEO
@ AV_CODEC_ID_MPEG2VIDEO
preferred ID for MPEG-1/2 video decoding
Definition: avcodec.h:220
AV_CODEC_ID_LJPEG
@ AV_CODEC_ID_LJPEG
Definition: avcodec.h:227
AV_CODEC_ID_PTX
@ AV_CODEC_ID_PTX
Definition: avcodec.h:322