comparison grab.c @ 1787:eb16c64144ee libavformat

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 8cba5672faa4
children 62792a60f740
comparison
equal deleted inserted replaced
1786:8cc34fe98a3b 1787:eb16c64144ee
90 return -1; 90 return -1;
91 } 91 }
92 92
93 st = av_new_stream(s1, 0); 93 st = av_new_stream(s1, 0);
94 if (!st) 94 if (!st)
95 return -ENOMEM; 95 return AVERROR(ENOMEM);
96 av_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */ 96 av_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */
97 97
98 s->width = width; 98 s->width = width;
99 s->height = height; 99 s->height = height;
100 s->frame_rate = frame_rate; 100 s->frame_rate = frame_rate;