comparison src/ffmpeg/ffmpeg.c @ 843:534375e63cc8 trunk

[svn] - this shouldn't be called "WMA Player"
author nenolod
date Mon, 12 Mar 2007 18:12:53 -0700
parents 47144a91649d
children 80e7162bd968
comparison
equal deleted inserted replaced
842:47144a91649d 843:534375e63cc8
1 /* 1 /*
2 * Audacious WMA input plugin 2 * Audacious FFmpeg Plugin
3 * (C) 2005 Audacious development team 3 * (C) 2007 William Pitcock <nenolod@sacredspiral.co.uk>
4 * 4 *
5 * Based on: 5 * Based on:
6 * Audacious WMA input plugin
7 * (C) 2005-2007 Tony Vroon
8 *
6 * xmms-wma - WMA player for BMP 9 * xmms-wma - WMA player for BMP
7 * Copyright (C) 2004,2005 McMCC <mcmcc@mail.ru> 10 * Copyright (C) 2004,2005 McMCC <mcmcc@mail.ru>
8 * bmp-wma - WMA player for BMP 11 * bmp-wma - WMA player for BMP
9 * Copyright (C) 2004 Roman Bogorodskiy <bogorodskiy@inbox.ru> 12 * Copyright (C) 2004 Roman Bogorodskiy <bogorodskiy@inbox.ru>
10 * 13 *
114 }; 117 };
115 118
116 InputPlugin *get_iplugin_info(void) 119 InputPlugin *get_iplugin_info(void)
117 { 120 {
118 memset(description, 0, 64); 121 memset(description, 0, 64);
119 ffmpeg_ip.description = g_strdup_printf(_("WMA Player %s"), PACKAGE_VERSION); 122 ffmpeg_ip.description = g_strdup(_("FFmpeg Audio Plugin"));
120 return &ffmpeg_ip; 123 return &ffmpeg_ip;
121 } 124 }
122 125
123 static gchar *str_twenty_to_space(gchar * str) 126 static gchar *str_twenty_to_space(gchar * str)
124 { 127 {