comparison gifdec.c @ 4520:9bf957e669f0 libavcodec

This fixes error handling for BeOS, removing the need for some ifdefs. AVERROR_ defines are moved to avcodec.h as they are needed in there as well. Feel free to move that to avutil/common.h. Bumped up avcodec/format version numbers as though it's binary compatible we will want to rebuild apps as error values changed. Please from now on use return AVERROR(EFOO) instead of the ugly return -EFOO in your code. This also removes the need for berrno.h.
author mmu_man
date Tue, 13 Feb 2007 18:26:14 +0000
parents dc52a253f51b
children 6679d37a3338
comparison
equal deleted inserted replaced
4519:b08a4d11e01c 4520:9bf957e669f0
85 } 85 }
86 86
87 /* verify that all the image is inside the screen dimensions */ 87 /* verify that all the image is inside the screen dimensions */
88 if (left + width > s->screen_width || 88 if (left + width > s->screen_width ||
89 top + height > s->screen_height) 89 top + height > s->screen_height)
90 return -EINVAL; 90 return AVERROR(EINVAL);
91 91
92 /* build the palette */ 92 /* build the palette */
93 n = (1 << bits_per_pixel); 93 n = (1 << bits_per_pixel);
94 spal = palette; 94 spal = palette;
95 for(i = 0; i < n; i++) { 95 for(i = 0; i < n; i++) {