comparison rpza.c @ 2967:ef2149182f1c libavcodec

COSMETICS: Remove all trailing whitespace.
author diego
date Sat, 17 Dec 2005 18:14:38 +0000
parents 370f4b9ec7d8
children 0b546eab515d
comparison
equal deleted inserted replaced
2966:564788471dd4 2967:ef2149182f1c
117 /* If opcode MSbit is 0, we need more data to decide what to do */ 117 /* If opcode MSbit is 0, we need more data to decide what to do */
118 if ((opcode & 0x80) == 0) { 118 if ((opcode & 0x80) == 0) {
119 colorA = (opcode << 8) | (s->buf[stream_ptr++]); 119 colorA = (opcode << 8) | (s->buf[stream_ptr++]);
120 opcode = 0; 120 opcode = 0;
121 if ((s->buf[stream_ptr] & 0x80) != 0) { 121 if ((s->buf[stream_ptr] & 0x80) != 0) {
122 /* Must behave as opcode 110xxxxx, using colorA computed 122 /* Must behave as opcode 110xxxxx, using colorA computed
123 * above. Use fake opcode 0x20 to enter switch block at 123 * above. Use fake opcode 0x20 to enter switch block at
124 * the right place */ 124 * the right place */
125 opcode = 0x20; 125 opcode = 0x20;
126 n_blocks = 1; 126 n_blocks = 1;
127 } 127 }
128 } 128 }