mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
mpegstream: fix warning in macosx snow leopard
This commit is contained in:
parent
9c6b0cacb5
commit
8841ca0a3c
1 changed files with 4 additions and 2 deletions
|
@ -1165,7 +1165,8 @@ normal_seek (GstMPEGParse * mpeg_parse, GstPad * pad, GstEvent * event)
|
|||
goto done;
|
||||
}
|
||||
GST_INFO_OBJECT (mpeg_parse,
|
||||
"Finished conversion of cur, BYTES cur : %lld", start_position);
|
||||
"Finished conversion of cur, BYTES cur : %" G_GINT64_FORMAT,
|
||||
start_position);
|
||||
} else {
|
||||
start_position = -1;
|
||||
}
|
||||
|
@ -1185,7 +1186,8 @@ normal_seek (GstMPEGParse * mpeg_parse, GstPad * pad, GstEvent * event)
|
|||
goto done;
|
||||
}
|
||||
GST_INFO_OBJECT (mpeg_parse,
|
||||
"Finished conversion of stop, BYTES stop : %lld", end_position);
|
||||
"Finished conversion of stop, BYTES stop : %" G_GINT64_FORMAT,
|
||||
end_position);
|
||||
} else {
|
||||
end_position = -1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue