1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-08 13:22:53 +02:00

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
This commit is contained in:
Aurelien Jacobs 2010-10-15 12:49:48 +00:00
parent 198ac67fe8
commit 8ef30ac1f3
3 changed files with 5 additions and 2 deletions

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

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

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)