mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
rtpvp8pay: Fix typo
This commit is contained in:
parent
1cf155d70d
commit
2c5ea76bdc
1 changed files with 4 additions and 4 deletions
|
@ -410,10 +410,10 @@ gst_rtp_vp8_pay_handle_event (GstPad * pad, GstEvent * event)
|
||||||
GstRtpVP8Pay *self = GST_RTP_VP8_PAY (gst_pad_get_parent (pad));
|
GstRtpVP8Pay *self = GST_RTP_VP8_PAY (gst_pad_get_parent (pad));
|
||||||
|
|
||||||
if (GST_EVENT_TYPE (event) == GST_EVENT_FLUSH_START) {
|
if (GST_EVENT_TYPE (event) == GST_EVENT_FLUSH_START) {
|
||||||
if (obj->picture_id_mode == VP8_PAY_PICTURE_ID_7BITS)
|
if (self->picture_id_mode == VP8_PAY_PICTURE_ID_7BITS)
|
||||||
obj->picture_id = g_random_int_range (0, G_MAXUINT8) & 0x7F;
|
self->picture_id = g_random_int_range (0, G_MAXUINT8) & 0x7F;
|
||||||
else if (obj->picture_id_mode == VP8_PAY_PICTURE_ID_15BITS)
|
else if (self->picture_id_mode == VP8_PAY_PICTURE_ID_15BITS)
|
||||||
obj->picture_id = g_random_int_range (0, G_MAXUINT16) & 0x7FFF;
|
self->picture_id = g_random_int_range (0, G_MAXUINT16) & 0x7FFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
gst_object_unref (self);
|
gst_object_unref (self);
|
||||||
|
|
Loading…
Reference in a new issue