rtspsrc: uniform unknown message handling

Do the same processing in all the cases when an unknown message is received.
That is, give a warning.

https://bugzilla.gnome.org/show_bug.cgi?id=651059
This commit is contained in:
Miguel Angel Cabrera Moya 2011-05-25 14:50:26 +02:00 committed by Sebastian Dröge
parent 5384308c99
commit c39b7a5359

View file

@ -4483,11 +4483,14 @@ next:
/* ok, a response is good */
GST_DEBUG_OBJECT (src, "received response message");
break;
default:
case GST_RTSP_MESSAGE_DATA:
/* get next response */
GST_DEBUG_OBJECT (src, "ignoring data response message");
goto next;
default:
GST_WARNING_OBJECT (src, "ignoring unknown message type %d",
response->type);
goto next;
}
thecode = response->type_data.response.code;