comparison avio.h @ 2834:63fda6ba2173 libavformat

Remove dead code which disappeared with the last major version bump.
author michael
date Wed, 19 Dec 2007 11:31:36 +0000
parents 173b5cb7efde
children b51319dd86e5
comparison
equal deleted inserted replaced
2833:578a0c783eae 2834:63fda6ba2173
33 struct URLProtocol *prot; 33 struct URLProtocol *prot;
34 int flags; 34 int flags;
35 int is_streamed; /**< true if streamed (no seek possible), default = false */ 35 int is_streamed; /**< true if streamed (no seek possible), default = false */
36 int max_packet_size; /**< if non zero, the stream is packetized with this max packet size */ 36 int max_packet_size; /**< if non zero, the stream is packetized with this max packet size */
37 void *priv_data; 37 void *priv_data;
38 #if LIBAVFORMAT_VERSION_INT >= (52<<16)
39 char *filename; /**< specified filename */ 38 char *filename; /**< specified filename */
40 #else
41 char filename[1]; /**< specified filename */
42 #endif
43 }; 39 };
44 40
45 typedef struct URLContext URLContext; 41 typedef struct URLContext URLContext;
46 42
47 typedef struct URLPollEntry { 43 typedef struct URLPollEntry {