- Jun 04, 2021
-
-
Pierre Lamot authored
-
Pierre Lamot authored
This is a preparatory commit
-
- May 13, 2021
-
-
- May 19, 2020
-
-
Pierre Lamot authored
-
- Jan 10, 2020
-
-
this way, qml files can be translated using vlc usual tools rather than qt own tools Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
- Apr 12, 2018
-
-
Hugo Beauzée-Luyssen authored
-
- Jan 05, 2012
-
-
So lua 5.2 compatibility declarations can be made in one place. Signed-off-by:
Rémi Denis-Courmont <remi@remlab.net>
-
- Feb 20, 2011
-
-
Jean-Baptiste Kempf authored
Lua is an important part of VLC and abusing misc has gone a bit too far...
-
- Jun 15, 2008
-
-
dionoea authored
-
- Jun 06, 2008
-
-
Rémi Denis-Courmont authored
-
- Sep 01, 2007
-
-
Rémi Denis-Courmont authored
-
- Apr 26, 2006
-
-
ipkiss authored
-
- Feb 01, 2006
-
-
Rémi Denis-Courmont authored
-
- Jan 12, 2006
-
-
dionoea authored
-
- Nov 21, 2005
-
-
Scott Caudle authored
-
- Jul 09, 2005
-
-
Rémi Denis-Courmont authored
-
- Jul 08, 2005
-
-
Rémi Denis-Courmont authored
(da big courmischage)
-
- Jul 20, 2004
-
-
Mohammed Adnène Trojette authored
-
- Jul 04, 2004
-
-
Mohammed Adnène Trojette authored
-
- Jan 05, 2004
-
-
Cyril Deguet authored
* commands/cmd_fullscreen.*, parser/interpreter.cpp: added a "vlc.fullscreen()" command
-
- Jan 03, 2004
-
-
Cyril Deguet authored
win32, by ipkiss and myself... Among the features: - framework rewritten from scratch, heavily based on design patterns => new controls can be (hopefully) created more easily, portability to other OS is better, and the interface is less dependant from the vlc core - new concept of "layout", to provide a window with several different views (as in winamp3 skins) - controls can now be placed at a relative position to the edges of a window, which allow controls and layouts to be resizable (e.g for the playlist window) - Use of libpng and libfreetype2 for better portability between x11 and win32 => ttf fonts and antialiasing - New DTD for the xml theme ( *it will probably change again* ) - Very very beginning of scripting in the xml file - And many things I miss - And probably many bugs ;)
-
- Feb 23, 2003
-
-
Jon Lech Johansen authored
Dynamic device support. * ./modules/gui/macosx: Minor fixes and cosmetic changes.
-
- Feb 17, 2003
-
-
hartman authored
-
- Jun 07, 2002
-
-
Samuel Hocevar authored
to be still crashing.
-
- Jun 01, 2002
-
-
Samuel Hocevar authored
As for video output 4, this breaks almost everything, but I'll slowly do what remains to be fixed during the weekend. Changes in vlc: =============== * vlc is now a very small program (20 lines) which uses the libvlc API; it is quite simple for the moment but can be extended in the future. * interfaces, decoders, video outputs, etc. are now almost the same objects (yes, I know, this is C++ redone in C) and are structured in a tree. More about this later, but basically it allows the following nice features: - several interfaces - several playlists with several outputs - input plugins spawning helper interfaces (will be used for DVD menus) - anything spawning anything; I swear there are useful uses for this! * libvlc can be used in other programs; I'm currently writing a Mozilla plugin for my employer. Things currently broken: ======================== * most interfaces, most ports * the playlist handling (almost finished rewriting this though). This means no file can be played from the GUI, you need to use the commandline. This also means it segfaults at EOF, when exiting the program, and it sometimes refuses to open a file when asked to.
-
- Mar 25, 2002
-
-
ipkiss authored
* Added a win32 interface plugin, developed with Borland C++ Builder. To build the plugin, follow the instructions in INSTALL-win32.txt * Known bugs: - subtitles don't work - a crash occurs when the user exits by pressing 'q' in the vout - when moving the slider, position in the stream updates even if the slider isn't released yet * TODO list: - clean code in menu.cpp - adapt lool's enhancements of the Gtk+ preferences box - write drag-and-drop stuff - and of course, fix known bugs :) * For those of you who can't wait till the next release to test the win32 interface, binary files are available here: http://www.via.ecp.fr/~ipkiss/intfwin/vlc.zip Enjoy!
-
- Nov 11, 2001
-
-
Samuel Hocevar authored
* Fixed compilation (and quite probably runtime) issues under IA64 due to mixed int/void* casts.
-
- Jun 14, 2001
-
-
Samuel Hocevar authored
* DirectX enhancements by Gildas Bazin, such as software rendering. * Merged dvdcss_init and dvdcss_open into dvdcss_open, and dvdcss_close and dvdcss_end into dvdcss_close. libdvdcss API now has 7 functions. * Another failed attempt at profiling vlc under Linux: ported the threads API to GNU Pth. Activate with --enable-pth. It doesn't seem to spawn new threads for me, maybe someone will have better luck. * Makefile optimizations. * Automatic build of libdvdcss if not found.
-
- May 19, 2001
-
-
Stéphane Borel authored
title/chapter/audio/spu/angle, we tell the input to do intead of doing it inside the interface. It results in fewer locks during the changes. *The dvd plugin reads again blocks of 32 sectors to gain speed since there are no more lock-ups during stream change. I've also created a new file that contain function to described video and audio streams with ifo datas. The changes are made only for gtk. We should update the other interfaces soon (beos at least). There is a memory corruption somewhere that make the vlc crash. I've no idea where to search.
-
- May 15, 2001
-
-
Stéphane Borel authored
-
Stéphane Borel authored
*added a b_stopped flag to interface playlist to have a stop function in interface plugins. As a consequence, the playlist no longer loops on end but wait for the user to press 'play' or to add another item (gtk/gnome interface). I think that other plugins are broken but it shouldn't be difficult to repair: just add a 'p_main->p_playlist->b_stopped = 0' in play functions and 'p_main->p_playlist->b_stopped = 1' when you have to stop. *Updated gtk interface so that it has the same features as gnome. I think I will merge the code so that we don't have to copy and paste each change. Only the .glade file would be different.
-
- May 08, 2001
-
-
Samuel Hocevar authored
* Fixed an aspect ratio issue in the SPU decoder, and optimized the SPU renderer.
-
- Mar 21, 2001
-
-
Samuel Hocevar authored
* Header cleaning: filled all empty authors fields, added CVS $Id stuff. * Fixes to aout_darwin.c by Colin Delacroix <colin@zoy.org>. * Fixes to configure.in, Makefile.in and main.c (Altivec detection) by Eugenio Jarosiewicz <ej0@cise.ufl.edu>. * Added Colin and Eugenio to the AUTHORS file.
-
- Feb 26, 2001
-
-
Samuel Hocevar authored
* The Gtk+ interface is now built as a Debian package as well. The Gnome package depends on it because of the icon and menu entry. * Added an intf_WarnHexDump() function to do raw hexadecimal dumps of memory areas. For debugging purposes or for real men, as you wish. * Lots of tidying in dvd_ioctl.c, a few comments added. * Better error handling in the subpicture decoder. * Tidied video_spu.c. More to come later. * Fixed subtitle displaying. Will soon work in overlay mode as well.
-
- May 28, 2000
-
-
Samuel Hocevar authored
plus faisait segfaulter, ce qui n'�tait malheureusement pas top
-
- May 27, 2000
-
-
Samuel Hocevar authored
. position correcte des sous-titres sur l'image �a ne devrait plus segfaulter
-
- May 24, 2000
-
-
Samuel Hocevar authored
licences. Et puis �a peut arriver � tout le monde :)
-
- Apr 14, 2000
-
-
Samuel Hocevar authored
- r�indentation de quelques bouts de code - les plugins vont �tre cherch�s en priorit� dans . puis ./plugins puis dans le r�pertoire habituel - d�but de communication entre le thread gnome et l'input - l'interface gnome ne segfaulte plus en sortant - le menu "Exit" fonctionne 10 avril: - fen�tre Gnome au lieu de fen�tre Gtk *** ATTENTION *** l'interface Gnome n'est vraiment qu'un d�but, soyez gentils de ne pas faire de bug report si un bouton ne fonctionne pas. - popup "About" 11 avril: - fen�tre playlist (rien dedans encore) - masquage du pointeur souris - popup menu dans la fen�tre vout - hide/show des fen�tres playlist - les boutons "Exit" fonctionnent quel que soit le menu 12 avril: - d�but du cassage des channels - d�but des menus g�n�r�s en runtime 13 avril: - ajout du target "snapshot" dans le makefile 14 avril: - d�codage de tous les sous-titres connus - spu_decoder.c ne segfaulte plus quand on quitte - rajout du flag b_active dans la structure audio_decoder - le bouton pause fonctionne
-
- Mar 22, 2000
-
-
Samuel Hocevar authored
. la palette des sous-titres par d�faut est moins affreuse. Bugs que j'avais oubli�s: . ne marchent qu'en 16 bits (devrait se fixer vite) . parfois quelques glitches graphiques que je ne comprends pas.
-
- Mar 21, 2000
-
-
Samuel Hocevar authored
. encore un peu de parsage de sous-titres . affichage des sous-titres. BUGS: . �a segfaulte toujours au moment o� on quitte, mais c'est le probl�me habituel, �a sera r�gl�. . pour le moment ils sont en noir et blanc, parce qu'il faut aller chercher cette putain de palette dans les .IFO du dvd et que pour l'instant j'ai la flemme . les sous-titres ne sont pas affich�s comme il faut si la largeur de l'�cran n'est pas 720. . dimensions par d�faut mises � 720x576 (format DVD) au lieu de 640x480 pour la raison �voqu�e ci-dessus. mais �a sera r�gl� bient�t. . pas de gestion de transparence, coordonn�es, fade in/fade out . pas de gestion de date : le sous-titre est affich� d�s qu'il est re�u et n'est pas effac� tant qu'on en a pas re�u un nouveau.
-