diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-01-24 12:19:03 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-01-27 11:53:22 +0100 |
commit | e1cba568f237466080c44f6049dbc0db0ffc469e (patch) | |
tree | 6766dd180971f4978cb78f021687036043192565 /libavformat/url.h | |
parent | d64d30bd255f96214a6d63c2fdc9f9e66a516eb7 (diff) | |
download | ffmpeg-e1cba568f237466080c44f6049dbc0db0ffc469e.tar.gz |
avformat/url: Reorder elements of URLProtocol to make it smaller
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavformat/url.h')
-rw-r--r-- | libavformat/url.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/url.h b/libavformat/url.h index e33edf0cb9..1ef5ca35d5 100644 --- a/libavformat/url.h +++ b/libavformat/url.h @@ -87,8 +87,8 @@ typedef struct URLProtocol { int *numhandles); int (*url_get_short_seek)(URLContext *h); int (*url_shutdown)(URLContext *h, int flags); - int priv_data_size; const AVClass *priv_data_class; + int priv_data_size; int flags; int (*url_check)(URLContext *h, int mask); int (*url_open_dir)(URLContext *h); |