deinterlace: Fix 'variable 'oldbx' is uninitialized when used here' compiler warnings
This commit is contained in:
parent
4d55588e35
commit
dad2a52f62
@ -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…
x
Reference in New Issue
Block a user