diff --git a/ChangeLog b/ChangeLog index 359ac2f270..3afc32aa8e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2006-01-30 Andy Wingo + * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET): + * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally + remove the UINT64_CONSTANT macro, doesn't appear to be needed or + available. + * ext/theora/gsttheoraenc.h: * ext/theora/theoraenc.c: Same changes as were done to vorbisenc, although theoraenc was timestamping correctly. Added handling of diff --git a/tests/check/pipelines/theoraenc.c b/tests/check/pipelines/theoraenc.c index c0888b60a3..ad3293c68b 100644 --- a/tests/check/pipelines/theoraenc.c +++ b/tests/check/pipelines/theoraenc.c @@ -22,7 +22,7 @@ #include -#define TIMESTAMP_OFFSET G_GUINT64_CONSTANT(3249870963) +#define TIMESTAMP_OFFSET 3249870963 #define FRAMERATE 10 static GCond *cond = NULL; diff --git a/tests/check/pipelines/vorbisenc.c b/tests/check/pipelines/vorbisenc.c index 970e7f6222..50a89a2cf8 100644 --- a/tests/check/pipelines/vorbisenc.c +++ b/tests/check/pipelines/vorbisenc.c @@ -22,7 +22,7 @@ #include -#define TIMESTAMP_OFFSET G_GUINT64_CONSTANT(3249870963) +#define TIMESTAMP_OFFSET 3249870963 static GCond *cond = NULL; static GMutex *lock = NULL;