comparison rpza.c @ 2626:370f4b9ec7d8 libavcodec

typo fix by ("Todd.Kirby" doubleshot pacbell net)
author michael
date Sun, 24 Apr 2005 11:08:07 +0000
parents f67b63ed036d
children ef2149182f1c
comparison
equal deleted inserted replaced
2625:308e8bdf5921 2626:370f4b9ec7d8
90 int pixel_x, pixel_y; 90 int pixel_x, pixel_y;
91 int total_blocks; 91 int total_blocks;
92 92
93 /* First byte is always 0xe1. Warn if it's different */ 93 /* First byte is always 0xe1. Warn if it's different */
94 if (s->buf[stream_ptr] != 0xe1) 94 if (s->buf[stream_ptr] != 0xe1)
95 av_log(s->avctx, AV_LOG_ERROR, "First chunk byte is 0x%02x instead of 0x1e\n", 95 av_log(s->avctx, AV_LOG_ERROR, "First chunk byte is 0x%02x instead of 0xe1\n",
96 s->buf[stream_ptr]); 96 s->buf[stream_ptr]);
97 97
98 /* Get chunk size, ingnoring first byte */ 98 /* Get chunk size, ingnoring first byte */
99 chunk_size = BE_32(&s->buf[stream_ptr]) & 0x00FFFFFF; 99 chunk_size = BE_32(&s->buf[stream_ptr]) & 0x00FFFFFF;
100 stream_ptr += 4; 100 stream_ptr += 4;