comparison http.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 1f7a6dc01100
children ec025d5fbbe2
comparison
equal deleted inserted replaced
1786:8cc34fe98a3b 1787:eb16c64144ee
118 118
119 h->is_streamed = 1; 119 h->is_streamed = 1;
120 120
121 s = av_malloc(sizeof(HTTPContext)); 121 s = av_malloc(sizeof(HTTPContext));
122 if (!s) { 122 if (!s) {
123 return -ENOMEM; 123 return AVERROR(ENOMEM);
124 } 124 }
125 h->priv_data = s; 125 h->priv_data = s;
126 s->filesize = -1; 126 s->filesize = -1;
127 s->off = 0; 127 s->off = 0;
128 pstrcpy (s->location, URL_SIZE, uri); 128 pstrcpy (s->location, URL_SIZE, uri);