Hi,
I thought I better get these squeezed in while you're still doing RC's. The fame patch has been lingering on my machine since you were doing 1.0.4 RC's. :-)
--- configure.in.orig 2007-10-27 03:25:27.000000000 -0600 +++ configure.in 2007-10-27 18:16:55.963919098 -0600 @@ -932,7 +932,7 @@ TC_PKG_HAVE(vorbis, VORBIS) dnl dnl theora dnl -THEORA_EXTRA_LIBS="$THEORA_EXTRA_LIBS $(PKG_CONFIG --libs theora)" +THEORA_EXTRA_LIBS="$THEORA_EXTRA_LIBS $($PKG_CONFIG --libs theora)" TC_PKG_CHECK(theora, no, THEORA, theora-config, [theora/theora.h], theora, theora_info_init, theora, [http://www.theora.org/]) TC_PKG_HAVE(theora, THEORA)
--- export/export_fame.c.orig 2005-07-04 01:23:00.000000000 -0600 +++ export/export_fame.c 2007-08-23 15:43:49.069392213 -0600 @@ -256,8 +256,8 @@ MOD_encode if(param->flag == TC_VIDEO) { if (!current_stats) - current_stats = malloc (sizeof (current_stats)); - memset (current_stats, 0, sizeof (current_stats)); + current_stats = malloc (sizeof (*current_stats)); + memset (current_stats, 0, sizeof (*current_stats)); // encode video yuv.w = fame_params.width;