mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01: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:
parent
198ac67fe8
commit
8ef30ac1f3
3 changed files with 5 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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…
Add table
Add a link
Reference in a new issue