GNOME Bugzilla – Bug 599355
[schroenc] doesn't use portable type
Last modified: 2010-02-09 09:59:19 UTC
In order to compile gstschroenc in windows the file gstschroenc.h should include <stdint.h>, where uint64_t is defined in win32 systems.
Created attachment 146085 [details] [review] schroenc: Use guint64 instead of uint64_t
Odd, I'm sure the schroedinger headers include stdint.h somewhere already. (And just for the record: GStreamer code should #include "_stdint.h" rather than <stdint.h>) I think Edward's fix is best though, and should probably go in for the release.
Comment on attachment 146085 [details] [review] schroenc: Use guint64 instead of uint64_t Jan says this is OK to commit now.
commit e56b3ba6dc97333d005317d95e05d285e46d389b Author: Edward Hervey <bilboed@bilboed.com> Date: Fri Oct 23 10:18:12 2009 +0200 schroenc: Use guint64 instead of uint64_t. Fixes #599355
(In reply to comment #2) > Odd, I'm sure the schroedinger headers include stdint.h somewhere already. > > (And just for the record: GStreamer code should #include "_stdint.h" rather > than <stdint.h>) Thanks for the tip :)