[Ffmpeg-cvslog] r7876 - trunk/libavformat/avidec.c

Reimar Döffinger Reimar.Doeffinger
Wed Feb 7 19:19:39 CET 2007


Hello,
On Wed, Feb 07, 2007 at 06:56:31PM +0100, michael wrote:
> Author: michael
> Date: Wed Feb  7 18:56:31 2007
> New Revision: 7876
> 
> Modified:
>    trunk/libavformat/avidec.c
> 
> Log:
> supporting files with A,V,I,0x19  header
> 
> 
> Modified: trunk/libavformat/avidec.c
> ==============================================================================
> --- trunk/libavformat/avidec.c	(original)
> +++ trunk/libavformat/avidec.c	Wed Feb  7 18:56:31 2007
> @@ -82,6 +82,9 @@
>      avi->riff_end = get_le32(pb);   /* RIFF chunk size */
>      avi->riff_end += url_ftell(pb); /* RIFF chunk end */
>      tag = get_le32(pb);
> +    if(tag == MKTAG('A', 'V', 'I', 0x19))
> +        av_log(NULL, AV_LOG_INFO, "file has been generated with a totally broken muxer\n");
> +    else

Are you sure it's that? I actually expected that this is some stupid
hack to force people to install and use only a specific software.
Somehow similar to that format where they put the whole 100 MB MPEG2
stream into one AVI data chunk...

Greetings,
Reimar D?ffinger




More information about the ffmpeg-cvslog mailing list