mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
rtsp: Add content-type message header parsing
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
This commit is contained in:
parent
b2e495afa8
commit
fcd0298c05
@ -870,6 +870,9 @@ void ff_rtsp_parse_line(RTSPMessageHeader *reply, const char *buf,
|
||||
} else if (av_stristart(p, "x-Accept-Dynamic-Rate:", &p) && rt) {
|
||||
p += strspn(p, SPACE_CHARS);
|
||||
rt->accept_dynamic_rate = atoi(p);
|
||||
} else if (av_stristart(p, "Content-Type:", &p)) {
|
||||
p += strspn(p, SPACE_CHARS);
|
||||
av_strlcpy(reply->content_type, p, sizeof(reply->content_type));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -171,6 +171,11 @@ typedef struct RTSPMessageHeader {
|
||||
* returned
|
||||
*/
|
||||
char reason[256];
|
||||
|
||||
/**
|
||||
* Content type header
|
||||
*/
|
||||
char content_type[64];
|
||||
} RTSPMessageHeader;
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user