summaryrefslogtreecommitdiff
path: root/src/video_out/video_out_aa.c
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2002-06-12 12:22:25 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2002-06-12 12:22:25 +0000
commit6c5572a3e91e95c7f92f1110fac91caa241a9a87 (patch)
tree246923aadffab6a78dbbe22865245a5dfb17b597 /src/video_out/video_out_aa.c
parent184079276271955bc74954b0cc96298cb5ec4366 (diff)
downloadxine-lib-6c5572a3e91e95c7f92f1110fac91caa241a9a87.tar.gz
xine-lib-6c5572a3e91e95c7f92f1110fac91caa241a9a87.tar.bz2
Remove no more needed XINE_LOGO.
Internationalize all config related stuff. Fix not registered mrl ending in roq/film demuxer. Add bindtextdomain() calls in load_plugins (for audio/video out plugins). CVS patchset: 2066 CVS date: 2002/06/12 12:22:25
Diffstat (limited to 'src/video_out/video_out_aa.c')
-rw-r--r--src/video_out/video_out_aa.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/video_out/video_out_aa.c b/src/video_out/video_out_aa.c
index 16de5ab4f..b4a44642b 100644
--- a/src/video_out/video_out_aa.c
+++ b/src/video_out/video_out_aa.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: video_out_aa.c,v 1.19 2002/04/29 23:32:00 jcdutton Exp $
+ * $Id: video_out_aa.c,v 1.20 2002/06/12 12:22:38 f1rmb Exp $
*
* video_out_aa.c, ascii-art output plugin for xine
*
@@ -298,11 +298,12 @@ vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) {
static vo_info_t vo_info_aa = {
5,
"aa",
- "xine video output plugin using the ascii-art library",
+ NULL,
VISUAL_TYPE_AA,
10
};
vo_info_t *get_video_out_plugin_info() {
+ vo_info_aa.description = _("xine video output plugin using the ascii-art library");
return &vo_info_aa;
}