Add rtpjitterbuffer to gst pipeline

Change-Id: Ie888d1e2cba2162bec4a8b4b226f71fcb3f58948
diff --git a/VERSION b/VERSION
index 0d4d124..6e8bf73 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.1.0-dev
+0.1.0
diff --git a/person_detection/person_detection.py b/person_detection/person_detection.py
index 73895a7..82569c6 100644
--- a/person_detection/person_detection.py
+++ b/person_detection/person_detection.py
@@ -46,7 +46,7 @@
         if self.input == 'cam':
             input_stream = 0
         elif self.input == 'gstreamer':
-            input_stream = 'udpsrc port=500' + self.device + ' caps = " application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H264, payload=(int)96" ! rtph264depay ! avdec_h264 ! videoconvert ! appsink'
+            input_stream = 'udpsrc port=500' + self.device + ' caps = " application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H264, payload=(int)96" ! rtpjitterbuffer ! rtph264depay ! avdec_h264 output-corrupt=false ! videorate ! videoconvert ! appsink'
         else:
             input_stream = self.input
             assert os.path.isfile(self.input), "Specified input file doesn't exist"