Files
FFmpeg/libavformat/img2.c
T

91 lines
2.7 KiB
C
Raw Normal View History

2004-07-15 18:32:54 +00:00
/*
* Image format
* Copyright (c) 2000, 2001, 2002 Fabrice Bellard
2004-07-15 18:32:54 +00:00
* Copyright (c) 2004 Michael Niedermayer
*
* This file is part of Libav.
*
* Libav is free software; you can redistribute it and/or
2004-07-15 18:32:54 +00:00
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
2004-07-15 18:32:54 +00:00
*
* Libav is distributed in the hope that it will be useful,
2004-07-15 18:32:54 +00:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Libav; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2004-07-15 18:32:54 +00:00
*/
#include "libavutil/avstring.h"
2011-04-05 13:13:53 +02:00
#include "internal.h"
2004-07-15 18:32:54 +00:00
typedef struct {
enum CodecID id;
const char *str;
} IdStrMap;
static const IdStrMap img_tags[] = {
{ CODEC_ID_MJPEG , "jpeg"},
{ CODEC_ID_MJPEG , "jpg"},
2009-06-20 14:51:03 +00:00
{ CODEC_ID_LJPEG , "ljpg"},
{ CODEC_ID_PNG , "png"},
2008-02-26 10:21:33 +00:00
{ CODEC_ID_PNG , "mng"},
2004-11-11 18:09:28 +00:00
{ CODEC_ID_PPM , "ppm"},
2008-12-04 15:08:04 +00:00
{ CODEC_ID_PPM , "pnm"},
2004-11-11 18:09:28 +00:00
{ CODEC_ID_PGM , "pgm"},
{ CODEC_ID_PGMYUV , "pgmyuv"},
{ CODEC_ID_PBM , "pbm"},
{ CODEC_ID_PAM , "pam"},
2004-07-15 18:32:54 +00:00
{ CODEC_ID_MPEG1VIDEO, "mpg1-img"},
{ CODEC_ID_MPEG2VIDEO, "mpg2-img"},
{ CODEC_ID_MPEG4 , "mpg4-img"},
{ CODEC_ID_FFV1 , "ffv1-img"},
2005-01-04 13:27:35 +00:00
{ CODEC_ID_RAWVIDEO , "y"},
2005-11-30 01:40:50 +00:00
{ CODEC_ID_BMP , "bmp"},
2006-10-22 15:07:25 +00:00
{ CODEC_ID_GIF , "gif"},
2006-10-23 13:17:46 +00:00
{ CODEC_ID_TARGA , "tga"},
{ CODEC_ID_TIFF , "tiff"},
2008-05-30 13:26:40 +00:00
{ CODEC_ID_TIFF , "tif"},
{ CODEC_ID_SGI , "sgi"},
2007-05-08 11:57:49 +00:00
{ CODEC_ID_PTX , "ptx"},
2007-12-26 22:17:46 +00:00
{ CODEC_ID_PCX , "pcx"},
2007-12-28 13:07:43 +00:00
{ CODEC_ID_SUNRAST , "sun"},
{ CODEC_ID_SUNRAST , "ras"},
{ CODEC_ID_SUNRAST , "rs"},
{ CODEC_ID_SUNRAST , "im1"},
{ CODEC_ID_SUNRAST , "im8"},
{ CODEC_ID_SUNRAST , "im24"},
{ CODEC_ID_SUNRAST , "sunras"},
2008-12-17 11:22:51 +00:00
{ CODEC_ID_JPEG2000 , "jp2"},
2011-05-23 23:13:34 +02:00
{ CODEC_ID_JPEG2000 , "jpc"},
{ CODEC_ID_DPX , "dpx"},
2010-06-08 11:55:55 +00:00
{ CODEC_ID_PICTOR , "pic"},
2012-03-17 17:43:58 +00:00
{ CODEC_ID_XBM , "xbm"},
2012-01-21 17:45:52 +00:00
{ CODEC_ID_XWD , "xwd"},
{ CODEC_ID_NONE , NULL}
2004-07-15 18:32:54 +00:00
};
static enum CodecID av_str2id(const IdStrMap *tags, const char *str)
{
2004-09-22 21:25:09 +00:00
str= strrchr(str, '.');
if(!str) return CODEC_ID_NONE;
str++;
2004-07-15 18:32:54 +00:00
while (tags->id) {
2011-11-02 20:17:25 +01:00
if (!av_strcasecmp(str, tags->str))
return tags->id;
2004-07-15 18:32:54 +00:00
tags++;
}
return CODEC_ID_NONE;
}
enum CodecID ff_guess_image2_codec(const char *filename)
{
return av_str2id(img_tags, filename);
}