Browse Source

add FF_API_UDP_GET_FILE define to disable the deprecated udp_get_file_handle()

public function

Originally committed as revision 25481 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Aurelien Jacobs 15 years ago
parent
commit
8ef30ac1f3
3 changed files with 5 additions and 2 deletions
  1. +3
    -0
      libavformat/avformat.h
  2. +1
    -1
      libavformat/avio.h
  3. +1
    -1
      libavformat/udp.c

+ 3
- 0
libavformat/avformat.h View File

@@ -57,6 +57,9 @@
#ifndef FF_API_GUESS_FORMAT
#define FF_API_GUESS_FORMAT (LIBAVFORMAT_VERSION_MAJOR < 53)
#endif
#ifndef FF_API_UDP_GET_FILE
#define FF_API_UDP_GET_FILE (LIBAVFORMAT_VERSION_MAJOR < 53)
#endif

/**
* I return the LIBAVFORMAT_VERSION_INT constant. You got


+ 1
- 1
libavformat/avio.h View File

@@ -562,7 +562,7 @@ void init_checksum(ByteIOContext *s,
/* udp.c */
int udp_set_remote_url(URLContext *h, const char *uri);
int udp_get_local_port(URLContext *h);
#if (LIBAVFORMAT_VERSION_MAJOR <= 52)
#if FF_API_UDP_GET_FILE
int udp_get_file_handle(URLContext *h);
#endif



+ 1
- 1
libavformat/udp.c View File

@@ -276,7 +276,7 @@ int udp_get_local_port(URLContext *h)
* streams at the same time.
* @param h media file context
*/
#if (LIBAVFORMAT_VERSION_MAJOR >= 53)
#if !FF_API_UDP_GET_FILE
static
#endif
int udp_get_file_handle(URLContext *h)


Loading…
Cancel
Save