rtsp: add Timestamp header field

fixes #585994
This commit is contained in:
Wim Taymans 2009-06-16 18:57:20 +02:00
parent c4d729a4da
commit 33837d420c
2 changed files with 5 additions and 1 deletions

View file

@ -184,6 +184,7 @@ static const gchar *rtsp_headers[] = {
"X-Receding-PlaylistChange", /* X-Receding-PlaylistChange */
"X-RTP-Info", /* X-RTP-Info */
"X-StartupProfile", /* X-StartupProfile */
"Timestamp", /* Timestamp */
NULL
};

View file

@ -308,7 +308,10 @@ typedef enum {
GST_RTSP_HDR_X_PROXY_CLIENT_VERB, /* X-Proxy-Client-Verb */
GST_RTSP_HDR_X_RECEDING_PLAYLISTCHANGE, /* X-Receding-PlaylistChange */
GST_RTSP_HDR_X_RTP_INFO, /* X-RTP-Info */
GST_RTSP_HDR_X_STARTUPPROFILE /* X-StartupProfile */
GST_RTSP_HDR_X_STARTUPPROFILE, /* X-StartupProfile */
/* Since 0.10.24 */
GST_RTSP_HDR_TIMESTAMP /* Timestamp */
} GstRTSPHeaderField;