comparison mlp.h @ 8693:18737839ed27 libavcodec

Add missing void keyword to parameterless function declarations.
author diego
date Fri, 30 Jan 2009 18:38:25 +0000
parents 45cfe1d44e86
children 753780c4875e
comparison
equal deleted inserted replaced
8692:48442253aac2 8693:18737839ed27
104 /** XOR together all the bytes of a buffer. 104 /** XOR together all the bytes of a buffer.
105 * Does this belong in dspcontext? 105 * Does this belong in dspcontext?
106 */ 106 */
107 uint8_t ff_mlp_calculate_parity(const uint8_t *buf, unsigned int buf_size); 107 uint8_t ff_mlp_calculate_parity(const uint8_t *buf, unsigned int buf_size);
108 108
109 void ff_mlp_init_crc(); 109 void ff_mlp_init_crc(void);
110 110
111 /** XOR four bytes into one. */ 111 /** XOR four bytes into one. */
112 static inline uint8_t xor_32_to_8(uint32_t value) 112 static inline uint8_t xor_32_to_8(uint32_t value)
113 { 113 {
114 value ^= value >> 16; 114 value ^= value >> 16;