]> git.sesse.net Git - vlc/log
vlc
20 years ago * ts: use 0x0a descriptor to send language...
Laurent Aimar [Fri, 30 Jan 2004 17:53:05 +0000 (17:53 +0000)]
 * ts: use 0x0a descriptor to send language...
 Now we can stream a (complete) dvd with language informations :)

20 years ago * transcode: keep psz_language.
Laurent Aimar [Fri, 30 Jan 2004 17:51:02 +0000 (17:51 +0000)]
 * transcode: keep psz_language.

20 years ago * ts: set psz_laguage with iso639 code.
Laurent Aimar [Fri, 30 Jan 2004 17:50:05 +0000 (17:50 +0000)]
 * ts: set psz_laguage with iso639 code.

20 years ago * all: sout have now access to psz_language.
Laurent Aimar [Fri, 30 Jan 2004 17:49:21 +0000 (17:49 +0000)]
 * all: sout have now access to psz_language.

20 years ago * spudec: a %d -> IF64d
Laurent Aimar [Fri, 30 Jan 2004 16:50:26 +0000 (16:50 +0000)]
 * spudec: a %d -> IF64d

20 years ago * rtp: fixed mpeg4 audio. && was used instead of &, arggg :(
Laurent Aimar [Fri, 30 Jan 2004 16:45:40 +0000 (16:45 +0000)]
 * rtp: fixed mpeg4 audio. && was used instead of &, arggg :(

20 years ago * spudec: commented out a debug message.
Laurent Aimar [Fri, 30 Jan 2004 16:46:33 +0000 (16:46 +0000)]
 * spudec: commented out a debug message.

20 years ago * rtp: fixed a bug that corrupt video/audio config data.
Laurent Aimar [Fri, 30 Jan 2004 15:56:28 +0000 (15:56 +0000)]
 * rtp: fixed a bug that corrupt video/audio config data.

20 years ago * vlc_es: fixed es_fomat_Copy to duplicate psz_* too.
Laurent Aimar [Fri, 30 Jan 2004 15:17:39 +0000 (15:17 +0000)]
 * vlc_es: fixed es_fomat_Copy to duplicate psz_* too.

20 years ago * dvdnav: oups one debug messsage left.
Laurent Aimar [Fri, 30 Jan 2004 14:45:27 +0000 (14:45 +0000)]
 * dvdnav: oups one debug messsage left.

20 years ago * all: fill psz_language with the iso639 code.
Laurent Aimar [Fri, 30 Jan 2004 14:27:48 +0000 (14:27 +0000)]
 * all: fill psz_language with the iso639 code.
 * dvdnav: select the right SPU track only while creating the ES when we
 are not in the menu. (this way user selection won't be lost).

20 years ago * es_out: now es_format_t.psz_language could be a iso539 code, it will be
Laurent Aimar [Fri, 30 Jan 2004 14:25:39 +0000 (14:25 +0000)]
 * es_out: now es_format_t.psz_language could be a iso539 code, it will be
 expanded to the real language name.

20 years agoDoc calculation typo.
Rocky Bernstein [Fri, 30 Jan 2004 13:23:08 +0000 (13:23 +0000)]
Doc calculation typo.

20 years agopixmap.[ch], Modules.am: provisional routine to find closest colormap
Rocky Bernstein [Fri, 30 Jan 2004 13:17:12 +0000 (13:17 +0000)]
pixmap.[ch], Modules.am: provisional routine to find closest colormap
entry.

Rest: Mostly more shuffling of definitions for modularity; doc
improvements.

(Also I need to copy these changes between computers and this is the
most expedient way. RV24 transparancy has been tested on a big-endian
box.)

20 years ago* modules/gui/macosx/intf.m: fix
Derk-Jan Hartman [Fri, 30 Jan 2004 12:44:21 +0000 (12:44 +0000)]
* modules/gui/macosx/intf.m: fix
* modules/gui/macosx/prefs.?: New preferences parse code.
  New widgets aren't being created just yet.
  OS X version is broken now, but it already was. we need to fix this before
  a release. Code is largely ported from wxwindows...

20 years ago * dvdnav: added a dvdnavsimple shortcut : it skips the menu and all
Laurent Aimar [Fri, 30 Jan 2004 01:38:53 +0000 (01:38 +0000)]
 * dvdnav: added a dvdnavsimple shortcut : it skips the menu and all
 still frames, it doesn't handle the es selection (this way --sout-all
 will work).
  A major problem is that ES aren't added in a logical way like dvd and
dvdread do (audio/video). I don't know how to retrieve it from dvdnav.
(it's the same for dvdnav and dvdnavsimple)

20 years ago * ps: lalalala, fixed a bug in dts/pts parsing.
Laurent Aimar [Fri, 30 Jan 2004 01:09:24 +0000 (01:09 +0000)]
 * ps: lalalala, fixed a bug in dts/pts parsing.

20 years ago* modules/codec/speex.c, src/misc/win32_specific.c: compilation fixes.
Gildas Bazin [Thu, 29 Jan 2004 19:38:17 +0000 (19:38 +0000)]
* modules/codec/speex.c, src/misc/win32_specific.c: compilation fixes.

20 years ago* configure.ac: fixed typo.
Gildas Bazin [Thu, 29 Jan 2004 18:48:40 +0000 (18:48 +0000)]
* configure.ac: fixed typo.

20 years ago * ps: fixed dts.
Laurent Aimar [Thu, 29 Jan 2004 18:37:05 +0000 (18:37 +0000)]
 * ps: fixed dts.

20 years agoUse playlist_Item* functions
Clément Stenac [Thu, 29 Jan 2004 18:02:58 +0000 (18:02 +0000)]
Use playlist_Item* functions

20 years agoOptions as infos were bad in several ways: it broke PLAYLIST_GO, used
Clément Stenac [Thu, 29 Jan 2004 17:51:08 +0000 (17:51 +0000)]
Options as infos were bad in several ways: it broke PLAYLIST_GO, used
much memory, and was inconsistent, especially with input_CreateThread
taking an array of options

* Revert to using array of options

* To add an item with options:
    - either use playlist_ItemNew, ItemAddOption, and then AddItem
      (useful if you don't have all your options in an array)
    - either use playlist_AddExt (use this if all your options are
      already in an array)

* To add an item without options: use playlist_Add

You can still add options after an item has been added by using either
playlist_AddOption or playlist_ItemAddOption

* Attempt to improve API and solve thread safety issues.
  - playlist_Item* functions allow to touch items only.
    p_item->lock must be used when needed
    (playlist_ItemNew, playlist_ItemDelete, playlist_Item*Info,
     playlist_ItemSet* )

  - playlist_ItemGetById and ItemGetByPos give you playlist_items
    for GetByPos, you should have the playlist lock

At the moment, the playlist_Set* and playlist_*Info functions are kept (they work with position) but should be avoided.

20 years ago * demux2: mmh removed some shortcut. (easier than increasing
Laurent Aimar [Thu, 29 Jan 2004 17:14:04 +0000 (17:14 +0000)]
 * demux2: mmh removed some shortcut. (easier than increasing
 MODULE_SHORTCUT_MAX ;)

20 years ago* src/misc/configuration.c, include/configuration.h: added a change_action_add()metho...
Gildas Bazin [Thu, 29 Jan 2004 17:04:01 +0000 (17:04 +0000)]
* src/misc/configuration.c, include/configuration.h: added a change_action_add()method to associate an action (that can be triggered through a gui) to a config var.
* modules/gui/wxwindows/preferences_widgets.*: implemented partial support for change_action_add().
* modules/access/dshow/dshow.cpp: use change_action_add() to refresh the list of devices and to add an option to configure a device.

20 years ago * au: ported to demux2 API.
Laurent Aimar [Thu, 29 Jan 2004 15:11:17 +0000 (15:11 +0000)]
 * au: ported to demux2 API.

20 years ago * input_programs.c: AddES sets default i_stream_id (make valgrind happy ;)
Laurent Aimar [Thu, 29 Jan 2004 15:10:17 +0000 (15:10 +0000)]
 * input_programs.c: AddES sets default i_stream_id (make valgrind happy ;)

20 years agoinclude/vlc_common.h:
Sigmund Augdal Helberg [Thu, 29 Jan 2004 14:39:08 +0000 (14:39 +0000)]
include/vlc_common.h:
 * defined a CPU_CAPABILITY_SSE2
src/libvlc.(c|h):
 * implemented --see2/--no-sse2

20 years agorender.c: RV24 blending
Rocky Bernstein [Thu, 29 Jan 2004 11:50:22 +0000 (11:50 +0000)]
render.c: RV24 blending
all: more code cleanup and perhaps slightly better bigendian handling though
     more common routines/includes.

20 years agoTransparancy for more chromas more complete.
Rocky Bernstein [Thu, 29 Jan 2004 04:04:21 +0000 (04:04 +0000)]
Transparancy for more chromas more complete.

20 years ago macosx/vout* :
Eric Petit [Thu, 29 Jan 2004 02:01:49 +0000 (02:01 +0000)]
 macosx/vout* :
   + Unkludged a lot the way the OpenGL output was working until now
   + Optimized here and here. Please test!

20 years ago + macosx/vout* : cosmetic
Eric Petit [Wed, 28 Jan 2004 21:31:15 +0000 (21:31 +0000)]
 + macosx/vout* : cosmetic

20 years ago* configure.ac: proper checks for all the skins2 dependancies.
Gildas Bazin [Wed, 28 Jan 2004 20:53:21 +0000 (20:53 +0000)]
* configure.ac: proper checks for all the skins2 dependancies.

20 years ago* modules/access/dshow/*: bug fixes.
Gildas Bazin [Wed, 28 Jan 2004 16:46:52 +0000 (16:46 +0000)]
* modules/access/dshow/*: bug fixes.

20 years ago* modules/gui/skins2/win32/win32_graphics.cpp: small fix.
Gildas Bazin [Wed, 28 Jan 2004 15:51:16 +0000 (15:51 +0000)]
* modules/gui/skins2/win32/win32_graphics.cpp: small fix.

20 years agoDo not enable skins2 on macosx and beos.
Benjamin Pracht [Wed, 28 Jan 2004 15:25:53 +0000 (15:25 +0000)]
Do not enable skins2 on macosx and beos.

Hope I haven't broken anything...

20 years ago macosx/vout.m: swap OpenGL buffers only during the vertical retrace of
Eric Petit [Wed, 28 Jan 2004 14:36:53 +0000 (14:36 +0000)]
 macosx/vout.m: swap OpenGL buffers only during the vertical retrace of
   the monitor (fixed flickering effect)

20 years ago * aiff: another demuxer.
Laurent Aimar [Wed, 28 Jan 2004 12:25:37 +0000 (12:25 +0000)]
 * aiff: another demuxer.

20 years ago* Thou shall initialize thou subtitles.
Derk-Jan Hartman [Tue, 27 Jan 2004 23:09:25 +0000 (23:09 +0000)]
* Thou shall initialize thou subtitles.

20 years ago* modules/demux/util/sub.?
Derk-Jan Hartman [Tue, 27 Jan 2004 22:51:39 +0000 (22:51 +0000)]
* modules/demux/util/sub.?
  Vobsub is working now. only track 0 will be played atm.
  spudec scaling will need to be implemented or vobsub is pretty useless.
* modules/codec/spudec
  Changed an error into a warning message.

20 years agoFixes a little bug introduced by string review on localized VLC
Benjamin Pracht [Tue, 27 Jan 2004 22:19:04 +0000 (22:19 +0000)]
Fixes a little bug introduced by string review on localized VLC

20 years ago* configure.ac: don't link with msimg32 directly has it isn't available on Win9x...
Gildas Bazin [Tue, 27 Jan 2004 21:12:42 +0000 (21:12 +0000)]
* configure.ac: don't link with msimg32 directly has it isn't available on Win9x/NT4.
* modules/gui/skins2/win32/win32_graphics.cpp: use AlphaBlend() from the Win32Factory object.

20 years ago* modules/codec/dts.c: bug-fix for s/pdif support.
Gildas Bazin [Tue, 27 Jan 2004 19:14:07 +0000 (19:14 +0000)]
* modules/codec/dts.c: bug-fix for s/pdif support.

20 years ago* modules/gui/skins2/win32/*: dynamically load AlphaBlend() as it isn't available...
Gildas Bazin [Tue, 27 Jan 2004 17:01:51 +0000 (17:01 +0000)]
* modules/gui/skins2/win32/*: dynamically load AlphaBlend() as it isn't available on Win9x,NT4.
   Parent window created outside the screen so it isn't visible.

Could somebody (AsMaX, ipkiss) have a look at the AlphaBlend() function call in win32_graphics.cpp ? I'd like to use the AlphaBlend() we got from win32_factory.cpp.

20 years ago* modules/packetizer/mpegvideo.c: fixed major bug where the first frame could be...
Gildas Bazin [Tue, 27 Jan 2004 14:05:33 +0000 (14:05 +0000)]
* modules/packetizer/mpegvideo.c: fixed major bug where the first frame could be sent out with a null dts.
* src/stream_output/stream_output.c: guard against non-dated packets in sout_InputSendBuffer().

20 years ago * sub: removed unused variable.
Laurent Aimar [Tue, 27 Jan 2004 13:10:29 +0000 (13:10 +0000)]
 * sub: removed unused variable.

20 years ago * sub: clean/fix. it begins to work.
Laurent Aimar [Tue, 27 Jan 2004 12:46:46 +0000 (12:46 +0000)]
 * sub: clean/fix. it begins to work.

20 years ago * sub.c : fixed parsing, but doesn't work yet (buffer overflow while
Laurent Aimar [Tue, 27 Jan 2004 12:22:41 +0000 (12:22 +0000)]
 * sub.c : fixed parsing, but doesn't work yet (buffer overflow while
 reading packet).

20 years ago macosx/vout.m: fixed OpenGL aspect ratio
Eric Petit [Tue, 27 Jan 2004 12:11:48 +0000 (12:11 +0000)]
 macosx/vout.m: fixed OpenGL aspect ratio

20 years ago* modules/demux/util/*: fixed segfault with new vobsub code.
Gildas Bazin [Tue, 27 Jan 2004 11:57:05 +0000 (11:57 +0000)]
* modules/demux/util/*: fixed segfault with new vobsub code.

20 years ago* VobSub demuxing. Almost working i think, but the ps parsing isn't going to well...
Derk-Jan Hartman [Tue, 27 Jan 2004 07:05:10 +0000 (07:05 +0000)]
* VobSub demuxing. Almost working i think, but the ps parsing isn't going to well yet.
  fen, anymore tips? :)
  There seems to be some trouble with bufferoverflows atm and
  spudec doesn't like the data it is being fed:

  [00000199] spudec decoder debug: i_spu_size=8201 i_rle=29701

20 years agoFirst of the bigendian fixes. Bug in YUY had U and V values in blending
Rocky Bernstein [Tue, 27 Jan 2004 03:45:17 +0000 (03:45 +0000)]
First of the bigendian fixes. Bug in YUY had U and V values in blending
swapped.

20 years ago i420_yuy2.c: made the altivec optim a bit nicer (probably a bit faster, too)
Eric Petit [Tue, 27 Jan 2004 03:22:03 +0000 (03:22 +0000)]
 i420_yuy2.c: made the altivec optim a bit nicer (probably a bit faster, too)

20 years agoLink with -lm when needed - 2nd try.
Rocky Bernstein [Tue, 27 Jan 2004 01:57:29 +0000 (01:57 +0000)]
Link with -lm when needed - 2nd try.

20 years ago* Fix autodetection bug with file:///
Derk-Jan Hartman [Mon, 26 Jan 2004 23:37:05 +0000 (23:37 +0000)]
* Fix autodetection bug with file:///

20 years ago * playlist: fix for input options.
Laurent Aimar [Mon, 26 Jan 2004 23:30:18 +0000 (23:30 +0000)]
 * playlist: fix for input options.

20 years ago * all: input_CreateThread doesn't take a playlist_item_t anymore.
Laurent Aimar [Mon, 26 Jan 2004 23:07:16 +0000 (23:07 +0000)]
 * all: input_CreateThread doesn't take a playlist_item_t anymore.
        export input_CreateThread/input_StopThread/input_DestroyThread.

20 years ago* Remove crud
Derk-Jan Hartman [Mon, 26 Jan 2004 22:42:50 +0000 (22:42 +0000)]
* Remove crud

20 years ago* Remove crud
Derk-Jan Hartman [Mon, 26 Jan 2004 22:32:51 +0000 (22:32 +0000)]
* Remove crud

20 years ago* modules/gui/wxwindows/*: adapted to the new playlist api.
Gildas Bazin [Mon, 26 Jan 2004 22:10:20 +0000 (22:10 +0000)]
* modules/gui/wxwindows/*: adapted to the new playlist api.
   "Add MRL" in the playlist dialog now only appends the new item to the playlist.

20 years ago* String review
Derk-Jan Hartman [Mon, 26 Jan 2004 21:37:58 +0000 (21:37 +0000)]
* String review

20 years ago * playlist: compilation fix.
Laurent Aimar [Mon, 26 Jan 2004 20:48:51 +0000 (20:48 +0000)]
 * playlist: compilation fix.

20 years ago * all: make stream_t using function pointers (needed to have multiple
Laurent Aimar [Mon, 26 Jan 2004 20:48:10 +0000 (20:48 +0000)]
 * all: make stream_t using function pointers (needed to have multiple
 implementations, not yet used).

20 years ago* src/input/*, modules/demux/util/sub.[ch]: cleanup and fixed memory leaks.
Gildas Bazin [Mon, 26 Jan 2004 20:26:54 +0000 (20:26 +0000)]
* src/input/*, modules/demux/util/sub.[ch]: cleanup and fixed memory leaks.

20 years ago* modules/demux/util/*: a bit of cleanup.
Gildas Bazin [Mon, 26 Jan 2004 20:02:15 +0000 (20:02 +0000)]
* modules/demux/util/*: a bit of cleanup.

20 years ago gui/macosx/vout.m: fixed a mistake (fixes the main memory leak btw)
Eric Petit [Mon, 26 Jan 2004 20:00:33 +0000 (20:00 +0000)]
 gui/macosx/vout.m: fixed a mistake (fixes the main memory leak btw)

20 years ago Compile fix (mp4 now needs -framework IOKit -framework CoreFoundation).
Eric Petit [Mon, 26 Jan 2004 19:51:33 +0000 (19:51 +0000)]
 Compile fix (mp4 now needs -framework IOKit -framework CoreFoundation).

20 years ago* src/input/subtitles.c: more sanity checks.
Gildas Bazin [Mon, 26 Jan 2004 19:20:10 +0000 (19:20 +0000)]
* src/input/subtitles.c: more sanity checks.

20 years ago* modules/codec/ffmpeg/ffmpeg.c: proper fix for disabling aac decoding while keeping...
Gildas Bazin [Mon, 26 Jan 2004 18:57:18 +0000 (18:57 +0000)]
* modules/codec/ffmpeg/ffmpeg.c: proper fix for disabling aac decoding while keeping encoding.

20 years agomodules/visualization/visual/visual.c: strings review.
Gildas Bazin [Mon, 26 Jan 2004 18:45:45 +0000 (18:45 +0000)]
modules/visualization/visual/visual.c: strings review.

20 years ago All: attempt for an OpenGL video output for OS X. Enable --macosx-opengl
Eric Petit [Mon, 26 Jan 2004 18:30:37 +0000 (18:30 +0000)]
 All: attempt for an OpenGL video output for OS X. Enable --macosx-opengl
 to give it a try (QT is the default method).
  + Known issues: no fullscreen yet, memory leaks, ugly code, ...
  + Known goodies: it's a few % faster than QT here (playing a DVD). If
      experienced OpenGL and Altivec programmers could have a look and
      give some advice, I guess the performance increase might become
      noticeable.

20 years ago* modules/mux/mp4.c: fixed recent screw-up in movie duration.
Gildas Bazin [Mon, 26 Jan 2004 18:30:01 +0000 (18:30 +0000)]
* modules/mux/mp4.c: fixed recent screw-up in movie duration.

20 years ago* modules/access/dshow/*: implemented a few more things.
Gildas Bazin [Mon, 26 Jan 2004 18:24:17 +0000 (18:24 +0000)]
* modules/access/dshow/*: implemented a few more things.

20 years ago * drms: bugfixes in sci handling, GetiPodID darwin support.
Jon Lech Johansen [Mon, 26 Jan 2004 17:15:40 +0000 (17:15 +0000)]
  * drms: bugfixes in sci handling, GetiPodID darwin support.

20 years ago + All: added Altivec-optimized i420 to yuy2 conversion. It isn't used
Eric Petit [Mon, 26 Jan 2004 16:54:56 +0000 (16:54 +0000)]
 + All: added Altivec-optimized i420 to yuy2 conversion. It isn't used
   yet as Quicktime handles i420 pictures, but it will be when I've
   cleaned the OpenGL output I'm working on (to be commited soon).

20 years agoStrings review
Clément Stenac [Mon, 26 Jan 2004 16:52:31 +0000 (16:52 +0000)]
Strings review

Do "50%","100%", ... need translation ?

They are currently translated, I did not touch this

20 years agoString review
Clément Stenac [Mon, 26 Jan 2004 16:45:03 +0000 (16:45 +0000)]
String review

20 years ago * mmsh: msg_Err -> msg_Dbg.
Laurent Aimar [Mon, 26 Jan 2004 16:30:34 +0000 (16:30 +0000)]
 * mmsh: msg_Err -> msg_Dbg.

20 years ago* compilation fixes
Derk-Jan Hartman [Mon, 26 Jan 2004 14:47:39 +0000 (14:47 +0000)]
* compilation fixes

20 years ago* configure.ac: fixed typo.
Gildas Bazin [Mon, 26 Jan 2004 10:35:28 +0000 (10:35 +0000)]
* configure.ac: fixed typo.

20 years ago * configure.ac:
Sam Hocevar [Mon, 26 Jan 2004 10:32:33 +0000 (10:32 +0000)]
  * configure.ac:
    + Bail out if libavcodec.a wasn't built with --enable-pp.

20 years agoadd -lm on more plugins that require it. libvcdinfo version number is
Rocky Bernstein [Mon, 26 Jan 2004 04:51:09 +0000 (04:51 +0000)]
add -lm on more plugins that require it. libvcdinfo version number is
now 0.7.20 not 0.7.20-cdio.

20 years ago* all: save the theme configuration at exit (theme path and
Cyril Deguet [Sun, 25 Jan 2004 23:04:06 +0000 (23:04 +0000)]
* all: save the theme configuration at exit (theme path and
  position/visibilty of the windows)
* parser/xmlparser.cpp: fixed a segfault when the file cannot be opened

20 years agoFix if iconv not installed.
Rocky Bernstein [Sun, 25 Jan 2004 22:16:51 +0000 (22:16 +0000)]
Fix if iconv not installed.

20 years agoinclude limits.h for PATH_MAX. Solaris fix.
Rocky Bernstein [Sun, 25 Jan 2004 22:16:26 +0000 (22:16 +0000)]
include limits.h for PATH_MAX. Solaris fix.

20 years ago* include/vlc_common.h, include/vlc_es.h: new video_palette_t structure.
Gildas Bazin [Sun, 25 Jan 2004 21:39:37 +0000 (21:39 +0000)]
* include/vlc_common.h, include/vlc_es.h: new video_palette_t structure.
* modules/codec/ffmpeg/*: support for palettized codecs.

20 years ago* src/generic_window.cpp: don't raise the windows on a mouse up event
Cyril Deguet [Sun, 25 Jan 2004 21:38:57 +0000 (21:38 +0000)]
* src/generic_window.cpp: don't raise the windows on a mouse up event

20 years agoTest for libcdio only once. Make disable-libcddb work (typo in test variable).
Rocky Bernstein [Sun, 25 Jan 2004 21:03:16 +0000 (21:03 +0000)]
Test for libcdio only once. Make disable-libcddb work (typo in test variable).

20 years ago* ALL: removed useless add_category_hint().
Gildas Bazin [Sun, 25 Jan 2004 20:40:59 +0000 (20:40 +0000)]
* ALL: removed useless add_category_hint().

20 years ago* Stringreview !!!
Derk-Jan Hartman [Sun, 25 Jan 2004 20:05:29 +0000 (20:05 +0000)]
* Stringreview !!!

20 years ago* Removing old useless files
Derk-Jan Hartman [Sun, 25 Jan 2004 19:54:53 +0000 (19:54 +0000)]
* Removing old useless files

20 years agocvd.c: default duration scaling is smaller which seems more correct.
Rocky Bernstein [Sun, 25 Jan 2004 19:27:09 +0000 (19:27 +0000)]
cvd.c: default duration scaling is smaller which seems more correct.

string review: Merge/canonicalize debug string messages.

20 years agoadded a 0 accidentally
Benjamin Pracht [Sun, 25 Jan 2004 19:10:09 +0000 (19:10 +0000)]
added a 0 accidentally

20 years ago* ALL: removed a bunch of unused add_category_hint().
Gildas Bazin [Sun, 25 Jan 2004 18:53:07 +0000 (18:53 +0000)]
* ALL: removed a bunch of unused add_category_hint().

20 years ago* x11/x11_display.cpp: only 8 bpp mode was working...
Cyril Deguet [Sun, 25 Jan 2004 18:46:37 +0000 (18:46 +0000)]
* x11/x11_display.cpp: only 8 bpp mode was working...

20 years ago* all: support of 8 bpp mode for X11 skins. Like in the vout it uses
Cyril Deguet [Sun, 25 Jan 2004 18:41:08 +0000 (18:41 +0000)]
* all: support of 8 bpp mode for X11 skins. Like in the vout it uses
 its own colormap, but I don't like that at all...

20 years ago* modules/gui/gtk/preferences.c: don't rely on module definitions having an add_categ...
Gildas Bazin [Sun, 25 Jan 2004 18:34:55 +0000 (18:34 +0000)]
* modules/gui/gtk/preferences.c: don't rely on module definitions having an add_category_hint().

20 years agostring review
Benjamin Pracht [Sun, 25 Jan 2004 18:20:12 +0000 (18:20 +0000)]
string review

still some  printfs in dvbsub.c. Would  need to spend some  time reading
the code to remove them.

20 years ago* modules/gui/wxwindows/interface.cpp: removed unused strings.
Gildas Bazin [Sun, 25 Jan 2004 18:18:50 +0000 (18:18 +0000)]
* modules/gui/wxwindows/interface.cpp: removed unused strings.

20 years ago* Strings review in include/
Clément Stenac [Sun, 25 Jan 2004 18:17:08 +0000 (18:17 +0000)]
* Strings review in include/
* Removed trailing spaces

20 years agoreverting a whole bunch of stupid changes,
Carlo Calabrò [Sun, 25 Jan 2004 17:58:30 +0000 (17:58 +0000)]
reverting a whole bunch of stupid changes,
sorry :)