mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
deinterlace: Fix 'variable 'oldbx' is uninitialized when used here' compiler warnings
This commit is contained in:
parent
4d55588e35
commit
dad2a52f62
2 changed files with 3 additions and 3 deletions
|
@ -43,7 +43,7 @@ FUNCT_NAME_YUY2 (GstDeinterlaceMethodGreedyH *self, const guint8 * L1, const gui
|
|||
gint64 MotionSense;
|
||||
gint64 i;
|
||||
glong LoopCtr;
|
||||
glong oldbx;
|
||||
glong oldbx = 0;
|
||||
|
||||
gint64 QW256B;
|
||||
gint64 LastAvg = 0; //interp value from left qword
|
||||
|
@ -262,7 +262,7 @@ FUNCT_NAME_UYVY (GstDeinterlaceMethodGreedyH *self, const guint8 * L1, const gui
|
|||
gint64 MotionSense;
|
||||
gint64 i;
|
||||
glong LoopCtr;
|
||||
glong oldbx;
|
||||
glong oldbx = 0;
|
||||
|
||||
gint64 QW256B;
|
||||
gint64 LastAvg = 0; //interp value from left qword
|
||||
|
|
|
@ -92,7 +92,7 @@ long Last8;
|
|||
int64_t Max_Vals = 0x0000000000000000ull;
|
||||
int64_t ShiftMask = 0xfefffefffefffeffull;
|
||||
|
||||
long oldbx;
|
||||
long oldbx = 0;
|
||||
|
||||
// pretend it's indented -->>
|
||||
__asm__ __volatile__
|
||||
|
|
Loading…
Reference in a new issue