comparison avio.h @ 2620:792383dd085e libavformat

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 09:37:46 +0000
parents fc7f8ee4700b
children 153d6efc05b8
comparison
equal deleted inserted replaced
2619:ed220a21ffa5 2620:792383dd085e
16 * 16 *
17 * You should have received a copy of the GNU Lesser General Public 17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software 18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 #ifndef AVIO_H 21 #ifndef FFMPEG_AVIO_H
22 #define AVIO_H 22 #define FFMPEG_AVIO_H
23 23
24 #include <stdint.h> 24 #include <stdint.h>
25 25
26 /* output byte stream handling */ 26 /* output byte stream handling */
27 27
264 /* udp.c */ 264 /* udp.c */
265 int udp_set_remote_url(URLContext *h, const char *uri); 265 int udp_set_remote_url(URLContext *h, const char *uri);
266 int udp_get_local_port(URLContext *h); 266 int udp_get_local_port(URLContext *h);
267 int udp_get_file_handle(URLContext *h); 267 int udp_get_file_handle(URLContext *h);
268 268
269 #endif 269 #endif /* FFMPEG_AVIO_H */
270