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:
Tim-Philipp Müller 2011-03-02 15:38:01 +00:00
parent 53c02dff3f
commit 09f15da2f8

View file

@ -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 */