diff options
author | Måns Rullgård <mans@mansr.com> | 2005-02-24 19:08:50 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-02-24 19:08:50 +0000 |
commit | 88730be65153f4a59916d971842fdaed3e0fd72b (patch) | |
tree | 1f49c5812d2382abb53df216aab8cabc3c3f56b9 /libavformat/img2.c | |
parent | 53513831da58cae7603dc01270c1cf8e4252eba0 (diff) | |
download | ffmpeg-88730be65153f4a59916d971842fdaed3e0fd72b.tar.gz |
kill warnings patch by (Måns Rullgård <mru inprovide com>)
Originally committed as revision 3977 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/img2.c')
-rw-r--r-- | libavformat/img2.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libavformat/img2.c b/libavformat/img2.c index fcf7310208..4cfd9eb6ba 100644 --- a/libavformat/img2.c +++ b/libavformat/img2.c @@ -97,16 +97,6 @@ static enum CodecID av_str2id(const IdStrMap *tags, const char *str) return CODEC_ID_NONE; } -static const char *av_id2str(const IdStrMap *tags, enum CodecID id) -{ - while (tags->id) { - if(tags->id == id) - return tags->str; - tags++; - } - return NULL; -} - /* return -1 if no image found */ static int find_image_range(int *pfirst_index, int *plast_index, const char *path) |