diff options
author | Martin Storsjö <martin@martin.st> | 2010-11-15 15:08:53 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-11-15 15:08:53 +0000 |
commit | dd22cfb1015dea8f9db29a2334662bd35c3d3f79 (patch) | |
tree | b9e8ae2adf175fdc0835c9c9f46fa57013b2c6ab /libavformat/rtsp.h | |
parent | f3d77632d707ca6497289d5e0b7809b6040e18c8 (diff) | |
download | ffmpeg-dd22cfb1015dea8f9db29a2334662bd35c3d3f79.tar.gz |
rtsp: Parse and use the Content-Base reply header, if present
This fixes playing RTSP urls with query parameters.
Originally committed as revision 25755 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r-- | libavformat/rtsp.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h index 8997532cc2..ba0526052b 100644 --- a/libavformat/rtsp.h +++ b/libavformat/rtsp.h @@ -165,6 +165,10 @@ typedef struct RTSPMessageHeader { * returned */ char reason[256]; + + /** The "Content-Base:" field. + */ + char content_base[4096]; } RTSPMessageHeader; /** |