Browse Source

Merge commit 'fa55addd23c2f168163175aee17adb125c2c0710'

* commit 'fa55addd23c2f168163175aee17adb125c2c0710':
  img2: Drop av_ prefix for a static function

Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
tags/n3.1
Derek Buitenhuis 10 years ago
parent
commit
8a1c79024d
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavformat/img2.c

+ 2
- 2
libavformat/img2.c View File

@@ -81,7 +81,7 @@ const IdStrMap ff_img_tags[] = {
{ AV_CODEC_ID_NONE, NULL }
};

static enum AVCodecID av_str2id(const IdStrMap *tags, const char *str)
static enum AVCodecID str2id(const IdStrMap *tags, const char *str)
{
str = strrchr(str, '.');
if (!str)
@@ -99,5 +99,5 @@ static enum AVCodecID av_str2id(const IdStrMap *tags, const char *str)

enum AVCodecID ff_guess_image2_codec(const char *filename)
{
return av_str2id(ff_img_tags, filename);
return str2id(ff_img_tags, filename);
}

Loading…
Cancel
Save