comparison mlp.h @ 7575:d73cd240d68c libavcodec

mlp: Define End-of-Stream code in common header file and use it in decoder.
author ramiro
date Thu, 14 Aug 2008 19:38:39 +0000
parents d112b4655bbd
children c4a4495715dd
comparison
equal deleted inserted replaced
7574:27ee0ceab150 7575:d73cd240d68c
53 /** The maximum number of taps in either the IIR or FIR filter; 53 /** The maximum number of taps in either the IIR or FIR filter;
54 * I believe MLP actually specifies the maximum order for IIR filters as four, 54 * I believe MLP actually specifies the maximum order for IIR filters as four,
55 * and that the sum of the orders of both filters must be <= 8. 55 * and that the sum of the orders of both filters must be <= 8.
56 */ 56 */
57 #define MAX_FILTER_ORDER 8 57 #define MAX_FILTER_ORDER 8
58
59 /** Code that signals end of a stream. */
60 #define END_OF_STREAM 0xd234d234
58 61
59 #define FIR 0 62 #define FIR 0
60 #define IIR 1 63 #define IIR 1
61 64
62 /** filter data */ 65 /** filter data */