1
0
Fork 0
mirror of https://github.com/albfan/miraclecast.git synced 2025-03-09 23:38:56 +00:00

miracle-wfdctl: fix mapping from rtsp_message to rtsp_message_id

This commit is contained in:
Derek Dai 2017-02-21 11:20:59 +08:00
parent 3e41e488a5
commit bba31c7fa7
No known key found for this signature in database
GPG key ID: E109CC97553EF009

View file

@ -220,31 +220,27 @@ static enum rtsp_message_id wfd_session_message_to_id(struct wfd_session *s,
}
if(!strcmp(method, "SET_PARAMETER")) {
if(0 >= rtsp_message_read(m, "{<>}", "wfd_trigger_method")) {
if(!rtsp_message_read(m, "{<>}", "wfd_trigger_method")) {
return RTSP_M5_TRIGGER;
}
if(0 >= rtsp_message_read(m, "{<>}", "wfd_route")) {
if(!rtsp_message_read(m, "{<>}", "wfd_route")) {
return RTSP_M10_SET_ROUTE;
}
if(0 >= rtsp_message_read(m, "{<>}", "wfd_connector_type")) {
if(!rtsp_message_read(m, "{<>}", "wfd_connector_type")) {
return RTSP_M11_SET_CONNECTOR_TYPE;
}
if(0 >= rtsp_message_read(m, "{<>}", "wfd_standby")) {
if(!rtsp_message_read(m, "{<>}", "wfd_standby")) {
return RTSP_M12_SET_STANDBY;
}
if(0 >= rtsp_message_read(m, "{<>}", "wfd_idr_request")) {
if(!rtsp_message_read(m, "{<>}", "wfd_idr_request")) {
return RTSP_M13_REQUEST_IDR;
}
if(0 >= rtsp_message_read(m, "{<>}", "wfd_uibc_capability")) { // && s->url) {
return RTSP_M14_ESTABLISH_UIBC;
}
if(0 >= rtsp_message_read(m, "{<>}", "wfd_uibc_capability")) {
if(!rtsp_message_read(m, "{<>}", "wfd_uibc_setting")) {
return RTSP_M15_ENABLE_UIBC;
}
@ -252,6 +248,10 @@ static enum rtsp_message_id wfd_session_message_to_id(struct wfd_session *s,
return RTSP_M4_SET_PARAMETER;
}
if(!rtsp_message_read(m, "{<>}", "wfd_uibc_capability")) {
return RTSP_M14_ESTABLISH_UIBC;
}
return RTSP_M_UNKNOWN;
}