search for: flac__version_string

Displaying 10 results from an estimated 10 matches for "flac__version_string".

2004 Sep 10
2
upcoming 1.0.4
Thanks to everyone for the feedback on 1.0.4_beta. Things have settled down now so I have scheduled sep 24 for the 1.0.4 release. If you have any patches, get 'em in quick... Josh __________________________________________________ Do you Yahoo!? New DSL Internet Access from SBC & Yahoo! http://sbc.yahoo.com
2014 May 24
2
make dllimport/dllexport attributes work with mingw (and others)
The following patch changes export.h so that the dllimport/dllexport attributes work with mingw/mingw-w64 and others: - changes _declspec keyword to __declspec: the former may not be defined by some toolchains. - changes the _MSC_VER condition to universally _WIN32: MSVC, as well as GCC supports this. Attached patch: declspec.diff Regards. -- O.S. -------------- next part --------------
2004 Sep 10
4
beta 10 candidate checked in
> > I have checked in all the latest into CVS and am going to start the > > test suite again. if all goes well I will probably release this as > > beta 10. > > > > anyway, try it out and let me know if anything bad happens! it > > should be a short jump from beta 10 to 1.0. > > I've just checked out the latest from scratch. There is no configure
2014 May 24
2
make dllimport/dllexport attributes work with mingw (and others)
...????? ?????? Sat, 24 May 2014 > 10:16:15 +0400: > >> - changes the _MSC_VER condition to universally _WIN32: MSVC, as well >> as GCC supports this. > > MSYS/MinGW 4.8.3, 4.9.0 can't compile code from git after this patch: > > format.c:47:22: error: variable 'FLAC__VERSION_STRING' definition is marked > dllimport > FLAC_API const char *FLAC__VERSION_STRING = VERSION; > ^ > format.c:47:22: warning: 'FLAC__VERSION_STRING' redeclared without dllimport > attribute: previous dllimport ignored [-Wattributes] > format.c:49:22:...
2004 Sep 10
0
beta 10 candidate checked in
...umber. Creating the distribution with 'make dist' will use the version number from configure.in, which makes it hard to create a new release without remembering to update it. I noticed the following in include/FLAC/format.h: /* VERSION should come from configure */ #ifdef VERSION #define FLAC__VERSION_STRING VERSION #else #define FLAC__VERSION_STRING "0.10" #endif Is there any circumstance where you would want to support building without VERSION defined? Supplying a default leaves you vulnerable to some subtle bugs; for example, if/when a config.h is used instead of -Dvar=val, forgetting to...
2014 Nov 26
0
[PATCH] Some last copyright year updates and change to open bug list
...n.c index d7f11dc..3cddc70 100644 --- a/src/flac/main.c +++ b/src/flac/main.c @@ -479,7 +479,7 @@ int do_it(void) } flac__utils_printf(stderr, 2, "\n"); - flac__utils_printf(stderr, 2, "flac %s, Copyright (C) 2000-2009, 2011-2013 Josh Coalson & Xiph.Org Foundation\n", FLAC__VERSION_STRING); + flac__utils_printf(stderr, 2, "flac %s, Copyright (C) 2000-2009, 2011-2014 Josh Coalson & Xiph.Org Foundation\n", FLAC__VERSION_STRING); flac__utils_printf(stderr, 2, "flac comes with ABSOLUTELY NO WARRANTY. This is free software, and you are\n"); flac__utils_print...
2007 Jan 04
1
Runtime version info
How can I determine the runtime version of OGG, Vorbis, and FLAC? Is there anyway at runtime to determine what version of the library I'm using? -Stevo Brock Head of Development Monkey Tools www.monkey-tools.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/vorbis-dev/attachments/20070104/1db84396/attachment.html
2004 Sep 10
3
Re: XMMS Plugin on Mac OS X
...s happening is that both plugins are stomping on each other's global symbols. Looking at flac/src/plugin_xmms/plugin.c, it looks like the only one it could be is get_iplugin_info(): InputPlugin *get_iplugin_info() { flac_ip.description = g_strdup_printf("FLAC Player v%s", FLAC__VERSION_STRING); return &flac_ip; } I copied the basic plugin design from another plugin (I think it was XMMS' WAVE reader). I'm not familiar enough with XMMS' plugin implementation yet but looking at it I don't see how the get_iplugin_info() design can work with multiple shared librarie...
2005 May 25
0
[PATCH] Fix fuction prototypes/definitions with void argument
...static FLAC__bool do_major_operation__list(const char *filename, FLAC__Metadata_Chain *chain, const CommandLineOptions *options); @@ -83,7 +83,7 @@ FLAC__bool do_operations(const CommandLi * local routines */ -void show_version() +void show_version(void) { printf("metaflac %s\n", FLAC__VERSION_STRING); } --- src/plugin_xmms/plugin.c-dist 2005-05-25 16:25:03.000000000 +0200 +++ src/plugin_xmms/plugin.c 2005-05-25 16:25:34.000000000 +0200 @@ -109,14 +109,14 @@ typedef enum { DECODER_HTTP } decoder_t; -static void FLAC_XMMS__init(); +static void FLAC_XMMS__init(void); static int FLAC_XMMS_...
2004 Sep 10
0
http streaming in the xmms plugin
...e = g_strconcat("/", filename, NULL); + + temp = g_strdup_printf("GET %s HTTP/1.0\r\n" + "Host: %s\r\n" + "User-Agent: %s/%s\r\n" + "%s%s%s%s", + file, host, "Reference FLAC Player", FLAC__VERSION_STRING, + proxy_auth ? proxy_auth : "", auth ? auth : "", + flac_cfg.stream.cast_title_streaming ? "Icy-MetaData:1\r\n" : "", + flac_cfg.stream.use_udp_channel ? udpspace : ""); + if (offset && !head) { +...