comparison avio.h @ 885:da1d5db0ce5c libavformat

COSMETICS: Remove all trailing whitespace.
author diego
date Sat, 17 Dec 2005 18:14:38 +0000
parents e8b4454b997d
children a887adfe9dc5
comparison
equal deleted inserted replaced
884:2ece9c9dd94c 885:da1d5db0ce5c
7 7
8 /* unbuffered I/O */ 8 /* unbuffered I/O */
9 9
10 struct URLContext { 10 struct URLContext {
11 struct URLProtocol *prot; 11 struct URLProtocol *prot;
12 int flags; 12 int flags;
13 int is_streamed; /* true if streamed (no seek possible), default = false */ 13 int is_streamed; /* true if streamed (no seek possible), default = false */
14 int max_packet_size; /* if non zero, the stream is packetized with this max packet size */ 14 int max_packet_size; /* if non zero, the stream is packetized with this max packet size */
15 void *priv_data; 15 void *priv_data;
16 char filename[1]; /* specified filename */ 16 char filename[1]; /* specified filename */
17 }; 17 };