mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
avio: make URL_PROTOCOL_FLAG_NESTED_SCHEME internal
This commit is contained in:
parent
1305d93c42
commit
b840484798
@ -136,10 +136,10 @@ void url_set_interrupt_cb(URLInterruptCB *interrupt_cb);
|
|||||||
#if FF_API_OLD_AVIO
|
#if FF_API_OLD_AVIO
|
||||||
/* not implemented */
|
/* not implemented */
|
||||||
attribute_deprecated int url_poll(URLPollEntry *poll_table, int n, int timeout);
|
attribute_deprecated int url_poll(URLPollEntry *poll_table, int n, int timeout);
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
#define URL_PROTOCOL_FLAG_NESTED_SCHEME 1 /*< The protocol name can be the first part of a nested protocol scheme */
|
#define URL_PROTOCOL_FLAG_NESTED_SCHEME 1 /*< The protocol name can be the first part of a nested protocol scheme */
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct URLProtocol {
|
typedef struct URLProtocol {
|
||||||
const char *name;
|
const char *name;
|
||||||
|
@ -26,6 +26,11 @@
|
|||||||
#define AVFORMAT_URL_H
|
#define AVFORMAT_URL_H
|
||||||
|
|
||||||
#include "avio.h"
|
#include "avio.h"
|
||||||
|
#include "libavformat/version.h"
|
||||||
|
|
||||||
|
#if !FF_API_OLD_AVIO
|
||||||
|
#define URL_PROTOCOL_FLAG_NESTED_SCHEME 1 /*< The protocol name can be the first part of a nested protocol scheme */
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a URLContext for accessing to the resource indicated by
|
* Create a URLContext for accessing to the resource indicated by
|
||||||
|
Loading…
Reference in New Issue
Block a user