rtspsrc: uniform unknown message handling
authorMiguel Angel Cabrera Moya <madmac2501@gmail.com>
Wed, 25 May 2011 12:50:26 +0000 (14:50 +0200)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Wed, 25 May 2011 18:06:16 +0000 (20:06 +0200)
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

gst/rtsp/gstrtspsrc.c

index b42be25..7ae7097 100644 (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;