mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-28 20:05:38 +00:00
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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue