[FFmpeg-devel] [PATCH 01/11] Store in a dedicated array the format name - codec id - codec type binding. Simplify.

Michael Niedermayer michaelni
Sat May 22 21:49:30 CEST 2010


On Sat, May 22, 2010 at 05:57:25PM +0200, Stefano Sabatini wrote:
> ---
>  libavformat/utils.c |   46 ++++++++++++++++++++--------------------------
>  1 files changed, 20 insertions(+), 26 deletions(-)
> 
> diff --git a/libavformat/utils.c b/libavformat/utils.c
> index e5a6ce1..57b6c5e 100644
> --- a/libavformat/utils.c
> +++ b/libavformat/utils.c
> @@ -344,36 +344,30 @@ AVInputFormat *av_probe_input_format(AVProbeData *pd, int is_opened){
>  
>  static int set_codec_from_probe_data(AVFormatContext *s, AVStream *st, AVProbeData *pd, int score)
>  {
> -    AVInputFormat *fmt;
> -    fmt = av_probe_input_format2(pd, 1, &score);
> +    static const struct {
> +        const char *name; enum CodecID id; enum AVMediaType type;
> +    } fmt_id_type[] = {
> +        { "aac"      , CODEC_ID_AAC       , AVMEDIA_TYPE_AUDIO },
> +        { "ac3"      , CODEC_ID_AC3       , AVMEDIA_TYPE_AUDIO },
> +        { "dts"      , CODEC_ID_DTS       , AVMEDIA_TYPE_AUDIO },
> +        { "eac3"     , CODEC_ID_EAC3      , AVMEDIA_TYPE_AUDIO },
> +        { "h264"     , CODEC_ID_H264      , AVMEDIA_TYPE_VIDEO },
> +        { "m4v"      , CODEC_ID_MPEG4     , AVMEDIA_TYPE_VIDEO },
> +        { "mp3"      , CODEC_ID_MP3       , AVMEDIA_TYPE_AUDIO },
> +        { "mpegvideo", CODEC_ID_MPEG2VIDEO, AVMEDIA_TYPE_VIDEO },

you even sorted it, diego will be pleased ...
btw, i wonder if we shouldnt also have FORMAT_ID values



> +        { 0 }
> +    };
> +    AVInputFormat *fmt = av_probe_input_format2(pd, 1, &score);
>  
>      if (fmt) {
> +        int i;
>          av_log(s, AV_LOG_DEBUG, "Probe with size=%d, packets=%d detected %s with score=%d\n",
>                 pd->buf_size, MAX_PROBE_PACKETS - st->probe_packets, fmt->name, score);
> -        if (!strcmp(fmt->name, "mp3")) {
> -            st->codec->codec_id = CODEC_ID_MP3;
> -            st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
> -        } else if (!strcmp(fmt->name, "ac3")) {
> -            st->codec->codec_id = CODEC_ID_AC3;
> -            st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
> -        } else if (!strcmp(fmt->name, "eac3")) {
> -            st->codec->codec_id = CODEC_ID_EAC3;
> -            st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
> -        } else if (!strcmp(fmt->name, "mpegvideo")) {
> -            st->codec->codec_id = CODEC_ID_MPEG2VIDEO;
> -            st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
> -        } else if (!strcmp(fmt->name, "m4v")) {
> -            st->codec->codec_id = CODEC_ID_MPEG4;
> -            st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
> -        } else if (!strcmp(fmt->name, "h264")) {
> -            st->codec->codec_id = CODEC_ID_H264;
> -            st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
> -        } else if (!strcmp(fmt->name, "dts")) {
> -            st->codec->codec_id = CODEC_ID_DTS;
> -            st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
> -        } else if (!strcmp(fmt->name, "aac")) {
> -            st->codec->codec_id = CODEC_ID_AAC;
> -            st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
> +        for (i = 0; fmt_id_type[i].name; i++) {
> +            if (!strcmp(fmt->name, fmt_id_type[i].name)) {
> +                st->codec->codec_id   = fmt_id_type[i].id;
> +                st->codec->codec_type = fmt_id_type[i].type;

break;

and ok to commit

[...]
-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

He who knows, does not speak. He who speaks, does not know. -- Lao Tsu
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: Digital signature
URL: <http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/attachments/20100522/6aa1baf1/attachment.pgp>



More information about the ffmpeg-devel mailing list