~ubuntu-dev/mplayer/ubuntu-feisty

« back to all changes in this revision

Viewing changes to libavformat/avio.c

  • Committer: Reinhard Tartler
  • Date: 2006-07-08 08:47:54 UTC
  • Revision ID: siretart@tauware.de-20060708084754-c3ff228cc9c2d8de
upgrade to pre8

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
    return ret;
101
101
}
102
102
 
103
 
#ifdef CONFIG_MUXERS
 
103
#if defined(CONFIG_MUXERS) || defined(CONFIG_PROTOCOLS)
104
104
int url_write(URLContext *h, unsigned char *buf, int size)
105
105
{
106
106
    int ret;
112
112
    ret = h->prot->url_write(h, buf, size);
113
113
    return ret;
114
114
}
115
 
#endif //CONFIG_MUXERS
 
115
#endif //CONFIG_MUXERS || CONFIG_PROTOCOLS
116
116
 
117
117
offset_t url_seek(URLContext *h, offset_t pos, int whence)
118
118
{