[Ffmpeg-cvslog] r8513 - trunk/libavformat/isom.c

Alex Beregszaszi alex
Mon Mar 26 14:51:23 CEST 2007


Hi,

> Log:
> use MKTAG
> 
> Modified: trunk/libavformat/isom.c
> ==============================================================================
> --- trunk/libavformat/isom.c	(original)
> +++ trunk/libavformat/isom.c	Sun Mar 25 17:09:02 2007
> @@ -150,7 +150,7 @@ const AVCodecTag codec_movaudio_tags[] =
>  
>      { CODEC_ID_MP3, MKTAG('.', 'm', 'p', '3') }, /* MPEG layer 3 */ /* sample files at http://www.3ivx.com/showcase.html use this tag */
>      { CODEC_ID_MP2, 0x6D730055 }, /* MPEG layer 3 */
> -    { CODEC_ID_MP2, 0x5500736D }, /* MPEG layer 3 *//* XXX: check endianness */
> +    { CODEC_ID_MP2, MKTAG('m', 's', 0x00, 0x55) }, /* MPEG layer 3 *//* XXX: check endianness */

And what about the swapped version above?

--
Alex Beregszaszi






More information about the ffmpeg-cvslog mailing list