diff options
author | Martin Storsjö <martin@martin.st> | 2011-06-24 01:49:09 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2011-10-17 19:57:48 +0300 |
commit | eca4850c6d2e8074e76234060991f490f1cff950 (patch) | |
tree | 8587a2645eaf538fabbb2276008865cf30df7478 /libavformat/version.h | |
parent | 2c9aa0247d6a5654d955fb018a84e7f2ec3a355e (diff) | |
download | ffmpeg-eca4850c6d2e8074e76234060991f490f1cff950.tar.gz |
rtsp: Accept options via private avoptions instead of URL options
Eventually, the old way of passing options by adding
stuff to the URL can be dropped.
This avoids having to tamper with the user-specified URL to
pass options on the transport mode. This also works better
with redirects, since the options don't need to be parsed out
from the URL.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/version.h')
-rw-r--r-- | libavformat/version.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavformat/version.h b/libavformat/version.h index 2bebed9799..db20bd6658 100644 --- a/libavformat/version.h +++ b/libavformat/version.h @@ -25,7 +25,7 @@ #define LIBAVFORMAT_VERSION_MAJOR 53 #define LIBAVFORMAT_VERSION_MINOR 9 -#define LIBAVFORMAT_VERSION_MICRO 0 +#define LIBAVFORMAT_VERSION_MICRO 1 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ LIBAVFORMAT_VERSION_MINOR, \ @@ -92,5 +92,8 @@ #ifndef FF_API_MUXRATE #define FF_API_MUXRATE (LIBAVFORMAT_VERSION_MAJOR < 54) #endif +#ifndef FF_API_RTSP_URL_OPTIONS +#define FF_API_RTSP_URL_OPTIONS (LIBAVFORMAT_VERSION_MAJOR < 54) +#endif #endif /* AVFORMAT_VERSION_H */ |