X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=wma.h;h=b260feb99d76ea58511696cd0c04ddb4ec01b26c;hp=f0ba7f631703b35878606facde8f2980de621bce;hb=e32a0e7295c6386b421956553ae577a7df1abf8e;hpb=58864df1c0784c58e421949b67a091fd0a60e140 diff --git a/wma.h b/wma.h index f0ba7f63..b260feb9 100644 --- a/wma.h +++ b/wma.h @@ -20,8 +20,16 @@ struct asf_header_info { uint32_t bit_rate; /** Further decoding information (ignored). */ uint32_t flags1; - /** Whether to use exp_vlc, bit reservoir, variable block len. */ + /** Encodes exp_vlc, bit reservoir, vbl, number of block sizes. */ uint16_t flags2; + /** Whether exponents are coded with VLC codes. */ + bool use_exp_vlc; + /** If false, a frame is equal to a superframe. */ + bool use_bit_reservoir; + /** Whether blocks are of variable or of constant size. */ + bool use_variable_block_len; + /** Obtained from the file properties object. */ + uint32_t packet_size; }; /* wma_common.c */