diff options
author | Jordi Ortiz <nenjordi@gmail.com> | 2012-05-04 17:50:31 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2012-05-08 10:18:35 -0700 |
commit | fcd0298c05c28429ef8508c924288131c87830b5 (patch) | |
tree | 4cc4d5339bb829fd18418e2360b0c231f90c1af4 /libavformat/rtsp.h | |
parent | b2e495afa8e23b46536e25e892157104437f4020 (diff) | |
download | ffmpeg-fcd0298c05c28429ef8508c924288131c87830b5.tar.gz |
rtsp: Add content-type message header parsing
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r-- | libavformat/rtsp.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h index 6872a51a24..e512336ab0 100644 --- a/libavformat/rtsp.h +++ b/libavformat/rtsp.h @@ -171,6 +171,11 @@ typedef struct RTSPMessageHeader { * returned */ char reason[256]; + + /** + * Content type header + */ + char content_type[64]; } RTSPMessageHeader; /** |