[FFmpeg-soc] [soc]: r4221 - mlp/mlpenc.c

ramiro subversion at mplayerhq.hu
Mon Apr 20 04:42:00 CEST 2009


Author: ramiro
Date: Mon Apr 20 04:42:00 2009
New Revision: 4221

Log:
Replace unknown field by known ignored value.

Modified:
   mlp/mlpenc.c

Modified: mlp/mlpenc.c
==============================================================================
--- mlp/mlpenc.c	Mon Apr 20 04:41:30 2009	(r4220)
+++ mlp/mlpenc.c	Mon Apr 20 04:42:00 2009	(r4221)
@@ -801,10 +801,9 @@ static void write_major_sync(MLPEncodeCo
     put_bits(&pb,  3, 0                        ); /* ignored */
     put_bits(&pb,  5, ctx->channel_arrangement);
 
-    /* These values seem to be constant for all tested MLP samples. */
     put_bits(&pb, 16, MAJOR_SYNC_INFO_SIGNATURE);
     put_bits(&pb, 16, ctx->flags               );
-    put_bits(&pb, 16, 0x0000);
+    put_bits(&pb, 16, 0                        ); /* ignored */
 
     put_bits(&pb,  1, 1); /* is_vbr: This value is 1 in all tested MLP samples.
                            * I suppose it would be 0 only when no filters


More information about the FFmpeg-soc mailing list