Bring back extra buffering time for video

In some cases (High bitrate tests) seeking close to end of segment may
require longer time to demux and provide video to the playback
pipeline.

We're dropping allocation queries, so nothing should be blocking app
src streaming thread and it should be safe to wait for a bit longer
for video to buffer.

Lets allocate more time for video buffering.

Change-Id: Ie57cfce1d24b8a68ec5adeae4fdd5f8782307f7f
diff --git a/src/third_party/starboard/rdk/shared/player/player_internal.cc b/src/third_party/starboard/rdk/shared/player/player_internal.cc
index 81787e8..5fdc3fb 100644
--- a/src/third_party/starboard/rdk/shared/player/player_internal.cc
+++ b/src/third_party/starboard/rdk/shared/player/player_internal.cc
@@ -3005,6 +3005,7 @@
   }
 
   if (video_appsrc_ && video_codec_ != kSbMediaVideoCodecNone) {
+    target +=  10 * 16 * GST_MSECOND;
     if (add_probe(video_appsrc_, target, ticket, buffering_probe_callback) != 0u)
       buffering_state_ |= static_cast<int>(MediaType::kVideo);
   }