[Ffmpeg-cvslog] r8207 - trunk/libavformat/mov.c.tmp

michael subversion
Sat Mar 3 22:00:40 CET 2007


Author: michael
Date: Sat Mar  3 22:00:40 2007
New Revision: 8207

Added:
   trunk/libavformat/mov.c.tmp
      - copied, changed from r8203, /trunk/libavformat/mov.c

Log:
cosmetic and cleanup part of
=====
Author: bcoudurier
Date: Sat Mar  3 15:33:55 2007
New Revision: 8204

Modified:
   trunk/libavformat/mov.c

   Log:
   cosmetics, cleanup tables, add pcm 24/32 le tags



Copied: trunk/libavformat/mov.c.tmp (from r8203, /trunk/libavformat/mov.c)
==============================================================================
--- /trunk/libavformat/mov.c	(original)
+++ trunk/libavformat/mov.c.tmp	Sat Mar  3 22:00:40 2007
@@ -124,14 +124,15 @@ static const AVCodecTag mov_video_tags[]
     { CODEC_ID_TIFF, MKTAG('t', 'i', 'f', 'f') }, /* TIFF embedded in MOV */
     { CODEC_ID_RAWVIDEO, MKTAG('2', 'v', 'u', 'y') }, /* UNCOMPRESSED 8BIT 4:2:2 */
     { CODEC_ID_VC1,  MKTAG('v', 'c', '-', '1') }, /* SMPTE RP 2025 */
-    { CODEC_ID_WMV3, MKTAG('v', 'c', '-', '1') }, /* SMPTE RP 2025 */
     { CODEC_ID_PNG,  MKTAG('p', 'n', 'g', ' ') },
     { CODEC_ID_NONE, 0 },
 };
 
 static const AVCodecTag mov_audio_tags[] = {
     { CODEC_ID_PCM_S32BE, MKTAG('i', 'n', '3', '2') },
+    { CODEC_ID_PCM_S32LE, MKTAG('i', 'n', '3', '2') },
     { CODEC_ID_PCM_S24BE, MKTAG('i', 'n', '2', '4') },
+    { CODEC_ID_PCM_S24LE, MKTAG('i', 'n', '2', '4') },
     { CODEC_ID_PCM_S16BE, MKTAG('N', 'O', 'N', 'E') }, /* uncompressed */
     { CODEC_ID_PCM_S16BE, MKTAG('t', 'w', 'o', 's') }, /* 16 bits */
     { CODEC_ID_PCM_U8, MKTAG('r', 'a', 'w', ' ') }, /* 8 bits unsigned */




More information about the ffmpeg-cvslog mailing list