[FFmpeg-soc] [soc]: r4222 - mlp/mlpenc.c
ramiro
subversion at mplayerhq.hu
Mon Apr 20 04:46:30 CEST 2009
Author: ramiro
Date: Mon Apr 20 04:46:30 2009
New Revision: 4222
Log:
Add PARAM_PRESENT flag.
Modified:
mlp/mlpenc.c
Modified: mlp/mlpenc.c
==============================================================================
--- mlp/mlpenc.c Mon Apr 20 04:42:00 2009 (r4221)
+++ mlp/mlpenc.c Mon Apr 20 04:46:30 2009 (r4222)
@@ -78,6 +78,7 @@ typedef struct {
#define PARAM_FIR (1 << 3)
#define PARAM_IIR (1 << 2)
#define PARAM_HUFFOFFSET (1 << 1)
+#define PARAM_PRESENT (1 << 0)
} DecodingParams;
@@ -435,6 +436,7 @@ static void default_decoding_params(MLPE
param_presence_flags |= PARAM_FIR;
/* param_presence_flags |= PARAM_IIR; */
param_presence_flags |= PARAM_HUFFOFFSET;
+ param_presence_flags |= PARAM_PRESENT;
dp->param_presence_flags = param_presence_flags;
}
More information about the FFmpeg-soc
mailing list