mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 17:20:36 +00:00
rtpvp8depay: When dropping intra packet, request keyframe
https://bugzilla.gnome.org/show_bug.cgi?id=747208
This commit is contained in:
parent
6c27293ffe
commit
1394a66e62
1 changed files with 6 additions and 2 deletions
|
@ -24,6 +24,8 @@
|
|||
|
||||
#include "gstrtpvp8depay.h"
|
||||
|
||||
#include <gst/video/video.h>
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
GST_DEBUG_CATEGORY_STATIC (gst_rtp_vp8_depay_debug);
|
||||
|
@ -189,8 +191,10 @@ gst_rtp_vp8_depay_process (GstRTPBaseDepayload * depay, GstBuffer * buf)
|
|||
if (!self->caps_sent) {
|
||||
gst_buffer_unref (out);
|
||||
out = NULL;
|
||||
GST_WARNING_OBJECT (self, "Dropping inter-frame before intra-frame");
|
||||
|
||||
GST_INFO_OBJECT (self, "Dropping inter-frame before intra-frame");
|
||||
gst_pad_push_event (GST_RTP_BASE_DEPAYLOAD_SINKPAD (depay),
|
||||
gst_video_event_new_upstream_force_key_unit (GST_CLOCK_TIME_NONE,
|
||||
TRUE, 0));
|
||||
}
|
||||
} else {
|
||||
GstMapInfo info;
|
||||
|
|
Loading…
Reference in a new issue