typefindfunctions: fix compiler warning on 32-bit systems
Mark 64-bit interger constant as such to avoid warnings such as: gsttypefindfunctions.c:2152: error: integer constant is too large for ‘long’ type
This commit is contained in:
parent
53c02dff3f
commit
09f15da2f8
@ -2149,7 +2149,7 @@ h263_video_type_find (GstTypeFind * tf, gpointer unused)
|
||||
|
||||
/* Find the picture start code */
|
||||
data = (data << 8) + c.data[0];
|
||||
psc = data & 0xfffffc0000;
|
||||
psc = data & G_GUINT64_CONSTANT (0xfffffc0000);
|
||||
if (psc == 0x800000) {
|
||||
/* Found PSC */
|
||||
/* TR */
|
||||
|
Loading…
x
Reference in New Issue
Block a user