mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-11 19:06:33 +00:00
tests: rtp-payloading avoid -Wmaybe-uninitialized
More false positives as both of them are initialized in the line before they are used, wrapped with fail_unless() check.
This commit is contained in:
parent
2f77d877c3
commit
4a33b083f1
1 changed files with 2 additions and 2 deletions
|
@ -791,8 +791,8 @@ GST_START_TEST (rtp_h264depay_bytestream)
|
||||||
GstBuffer *buf;
|
GstBuffer *buf;
|
||||||
GstSample *s;
|
GstSample *s;
|
||||||
GstCaps *caps;
|
GstCaps *caps;
|
||||||
guint32 dw;
|
guint32 dw = 0;
|
||||||
guint8 b;
|
guint8 b = 0;
|
||||||
guint off, left;
|
guint off, left;
|
||||||
|
|
||||||
s = rtp_h264depay_run ("byte-stream");
|
s = rtp_h264depay_run ("byte-stream");
|
||||||
|
|
Loading…
Reference in a new issue