~ubuntu-branches/debian/wheezy/vlc/wheezy

« back to all changes in this revision

Viewing changes to modules/video_output/aa.c

  • Committer: Package Import Robot
  • Author(s): Benjamin Drung, Edward Wang, Reinhard Tartler, Benjamin Drung
  • Date: 2012-06-30 18:39:41 UTC
  • mfrom: (1.3.25)
  • Revision ID: package-import@ubuntu.com-20120630183941-b4e2m0jfcvqb59t2
Tags: 2.0.2-1
[ Edward Wang ]
* New upstream release (Closes: #679625, #664279, LP: #689122, #936488,
  #942126, #971106, #972615, #973051, #987231, #995003, #998538).
  - Fix Ogg Heap buffer overflow. Thanks to Hugo Beauzée-Luyssen
* Add the crystalhd plugin to the vlc distribution.
* libcaca_plugin.so now depends on X11 in this release, so it must
  be installed under vlc (versus vlc-nox).

[ Reinhard Tartler ]
* Urgency set to medium because a security issue is fixed in this release

[ Benjamin Drung ]
* Add new plugins to vlc-nox:
  - crystalhd (Linux amd64 and i386 only)
  - directfb
  - fbosd (Linux only)
  - omxil (Linux only)
* Add build dependencies for new plugins.
* Add new symbols to libvlccore5.
* Switch to debhelper 8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * aa.c: "vout display" module using aalib
3
3
 *****************************************************************************
4
4
 * Copyright (C) 2002-2009 the VideoLAN team
5
 
 * $Id: 007cb56c94495ca2cc3cae82b63d07b70bf3a3ae $
 
5
 * $Id: 6d9e691459c3b3ddd242881ce25657cc40640a16 $
6
6
 *
7
7
 * Authors: Sigmund Augdal Helberg <dnumgis@videolan.org>
8
8
 *
57
57
    set_category(CAT_VIDEO)
58
58
    set_subcategory(SUBCAT_VIDEO_VOUT)
59
59
    set_description(N_("ASCII-art video output"))
60
 
    set_capability("vout display", 10)
 
60
    set_capability("vout display", /*10*/0)
61
61
    add_shortcut("aalib")
62
62
    set_callbacks(Open, Close)
63
63
vlc_module_end()