[FFmpeg-devel] [PATCH 1/5] bink: set audio stream codec_tag such that binkaudio decoder can identify bitstream version

Kostya kostya.shishkov
Sun Feb 20 07:32:55 CET 2011


On Sun, Feb 20, 2011 at 12:24:09PM +1100, Peter Ross wrote:
> ---
>  libavformat/bink.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/libavformat/bink.c b/libavformat/bink.c
> index dfad6c2..875c1f8 100644
> --- a/libavformat/bink.c
> +++ b/libavformat/bink.c
> @@ -134,7 +134,7 @@ static int read_header(AVFormatContext *s, AVFormatParameters *ap)
>              if (!ast)
>                  return AVERROR(ENOMEM);
>              ast->codec->codec_type  = AVMEDIA_TYPE_AUDIO;
> -            ast->codec->codec_tag   = 0;
> +            ast->codec->codec_tag   = vst->codec->codec_tag;
>              ast->codec->sample_rate = get_le16(pb);
>              av_set_pts_info(ast, 64, 1, ast->codec->sample_rate);
>              flags = get_le16(pb);
> -- 
> 1.7.1

okay



More information about the ffmpeg-devel mailing list