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

ramiro subversion at mplayerhq.hu
Mon Apr 20 04:39:52 CEST 2009


Author: ramiro
Date: Mon Apr 20 04:39:52 2009
New Revision: 4218

Log:
Split one unknown field into 3 known and reserved fields.

Modified:
   mlp/mlpenc.c

Modified: mlp/mlpenc.c
==============================================================================
--- mlp/mlpenc.c	Mon Apr 20 04:39:15 2009	(r4217)
+++ mlp/mlpenc.c	Mon Apr 20 04:39:52 2009	(r4218)
@@ -787,8 +787,9 @@ static void write_major_sync(MLPEncodeCo
     put_bits(&pb,  4, ctx->coded_sample_fmt [1]);
     put_bits(&pb,  4, ctx->coded_sample_rate[0]);
     put_bits(&pb,  4, ctx->coded_sample_rate[1]);
-    put_bits(&pb, 11, 0                    ); /* This value is 0 in all tested
-                                               * MLP samples. */
+    put_bits(&pb,  4, 0                        ); /* ignored */
+    put_bits(&pb,  4, 0                        ); /* multi_channel_type */
+    put_bits(&pb,  3, 0                        ); /* ignored */
     put_bits(&pb,  5, ctx->channel_arrangement);
 
     /* These values seem to be constant for all tested MLP samples. */


More information about the FFmpeg-soc mailing list