X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=wma_common.c;h=6d01972d0c46f06982a300c8f95d633c00f5f857;hp=519be89cfa2f1c3a74b7f90fea4e2045d2f6a6a7;hb=06cf1943be32153d075ea90a5da12ac93ab2e90a;hpb=b307a25ed895caa33684302b502e9e0e70dc78b7 diff --git a/wma_common.c b/wma_common.c index 519be89c..6d01972d 100644 --- a/wma_common.c +++ b/wma_common.c @@ -1,18 +1,12 @@ /* - * Copyright (C) 2009-2011 Andre Noll + * Copyright (C) 2009-2014 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ /** \file wma_common.c Functions used by both the WMA afh and decoder. */ -#include #include -#include -#include -#include -#include -#include #include "para.h" #include "error.h" @@ -115,6 +109,9 @@ int read_asf_header(const char *buf, int loaded, struct asf_header_info *ahi) ahi->flags2 = read_u16(start + 60); PARA_INFO_LOG("read_asf_header: flags1: %d, flag2: %d\n", ahi->flags1, ahi->flags2); + ahi->use_exp_vlc = ahi->flags2 & 0x0001; + ahi->use_bit_reservoir = ahi->flags2 & 0x0002; + ahi->use_variable_block_len = ahi->flags2 & 0x0004; return 1; }