An error occurred fetching the project authors.
  1. 09 Apr, 2003 1 commit
  2. 11 Mar, 2003 3 commits
  3. 17 Feb, 2003 1 commit
  4. 16 Feb, 2003 1 commit
    • Sam Hocevar's avatar
      * ./debian/changelog: updated for 0.5.1. · 89c55386
      Sam Hocevar authored
        * ./debian/control: vlc-glide is now Architecture: i386 only.
        * ./debian/control: vlc-plugin-mad Provides: mp3-decoder.
        * ./debian/rules: the deprecated vlc-* packages have a proper link to
          /usr/share/doc/vlc/.
      89c55386
  5. 10 Feb, 2003 3 commits
  6. 09 Feb, 2003 1 commit
  7. 06 Feb, 2003 1 commit
  8. 03 Feb, 2003 1 commit
  9. 02 Feb, 2003 2 commits
  10. 28 Jan, 2003 2 commits
  11. 13 Jan, 2003 1 commit
  12. 04 Nov, 2002 1 commit
  13. 02 Nov, 2002 1 commit
  14. 30 Sep, 2002 2 commits
  15. 09 Sep, 2002 1 commit
  16. 24 Aug, 2002 2 commits
  17. 20 Aug, 2002 1 commit
    • Sam Hocevar's avatar
      * ./modules/misc/gtk_main.c: created the gtk_main module, which simply runs · f0ec49da
      Sam Hocevar authored
          gtk_main() in its own thread, and does nothing on subsequent calls. This
          ensures that gtk_main is only running once.
        * ./modules/gui/familiar/*, modules/gui/gtk/*: the familiar, gtk and gnome
          modules are now fully reentrant thanks to their use of the gtk_main module.
        * ./src/libvlc.c: implemented vlc_set(), a wrapper for config_Put* available
          to external programs.
        * ./src/libvlc.c: removed vlc_stop() and vlc_end(), everything is now done
          by vlc_destroy().
        * ./modules/control/rc/rc.c: implemented a few new functions. For instance,
          run "vlc -I rc" and then type "intf gtk" or "intf gnome". You can even
          launch several of them. "segfault" works, too.
      f0ec49da
  18. 12 Aug, 2002 1 commit
    • Sam Hocevar's avatar
      * ./src/misc/objects.c: two big changes in the object API: now objects can · 6e8f9504
      Sam Hocevar authored
          only have one parent, because I don't want to deal with cycles, and each
          created object is indexed in a global array. This feature is unused yet,
          but it will speed up vlc_object_find(FIND_ANYWHERE).
        * ./debian/rules: activated the faad codec.
        * ./doc/fortunes.txt: new fortune cookies.
        * ./modules/codec/mpeg_video/headers.c: reduced the use of attach/detach.
        * ./modules/audio_output/oss.c: fixed two compilation warnings.
      6e8f9504
  19. 08 Aug, 2002 2 commits
  20. 23 Jul, 2002 2 commits
    • Sam Hocevar's avatar
      * ./configure.in: workaround Debian bug #150490 (bad mozilla-config output). · 255db009
      Sam Hocevar authored
        * ./mozilla/vlcplugin.h: added .mov and .mp4 files to the plugin.
        * ./Makefile: we no longer try to merge .a files into libvlc.a, but rather
          add them to the vlc-config output.
      255db009
    • Sam Hocevar's avatar
      * ALL: decoders now use a fourcc as a probe value. · 64d33dc9
      Sam Hocevar authored
        * include/input_ext-intf.h: killed p_es->b_audio, since i_cat already fills
          its purpose.
        * include/input_ext-intf.h: killed p_es->i_type in favour of p_es->i_fourcc.
        * include/video.h: killed p_pic->p_plane->b_margin; now i_visible_pitch is
          always valid.
      
        * ./src/libvlc.h: replaced --mpeg-adec and --ac3-adec with --codec; see
          vlc --help for more information.
      
        * include/video.h: removed fourcc values which should _not_ be global
          (thanks fenrir for convincing me).
        * ALL: video output plugins use the VLC_FOURCC macro to build their fourccs.
        * ./plugins/beos/InterfaceWindow.cpp: removed the last remaining call to
          input_ChangeES.
      
         Things I'm not sure about and need comments:
          - I used "mpga" and "mpgv" for MPEG (1+2) audio and video fourcc values.
          - I also introduced "spu ", "lpcm" and "ac3 ".
          - I removed for instance "MP4_GetCodec" because it wasn't really
            used except for the description string. I hope this change did not
            break anything really important.
          - fenrir, I must have broken a lot of things you wrote. Sorry in advance.
      64d33dc9
  21. 20 Jul, 2002 1 commit
  22. 12 Jul, 2002 1 commit
    • Sam Hocevar's avatar
      * ./ChangeLog: updated. · ee89627f
      Sam Hocevar authored
        * ./README: removed much outdated data.
        * ./debian/*: great package renaming - names should make more sense now.
      ee89627f
  23. 11 Jul, 2002 1 commit
  24. 04 Jul, 2002 1 commit
  25. 04 Jun, 2002 1 commit
    • Sam Hocevar's avatar
      (new in MAIN) · 7291e0a7
      Sam Hocevar authored
        * ./src/interface/interface.c: interfaces are no longer attached only to
          p_vlc.
        * ./src/libvlc.c, ./src/misc/modules.c, ./src/playlist/playlist.c,
          ./src/input/input.c: improvements in the playlist handling (not quite that
          yet though).
      (ported from v0_4_1_branch)
        * ./configure.in, ./plugins/mpeg_system/mpeg_ts.c: fixed libdvbpsi handling.
        * ./src/misc/configuration.c: fixed the --nofoo option handling.
        * ./src/interface/main.c: fixed two compilation warnings under Solaris.
      7291e0a7
  26. 01 Jun, 2002 1 commit
    • Sam Hocevar's avatar
      * ALL: the first libvlc commit. · 9e3ab283
      Sam 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.
      9e3ab283
  27. 06 Apr, 2002 1 commit
    • Sam Hocevar's avatar
      · bff02b4d
      Sam Hocevar authored
        * ./plugins/win32/mainframe.dfm: swapped two mixed up tooltips.
        * ./Makefile: fixed make dist and make distclean.
        * ./plugins/dvd/dvd.c: compilation fix.
        * ./plugins/gtk/gtk_callbacks.c: fixed ejection code.
        * ./plugins/text/ncurses.c: fixed compilation of the ncurses plugin.
        * ./vlc.spec: updated specfile.
      bff02b4d
  28. 04 Apr, 2002 2 commits
    • Sam Hocevar's avatar
      · 71b4ea0b
      Sam Hocevar authored
        * ./plugins/gtk/gtk.glade, plugins/gtk/gnome.glade, ./plugins/kde/kde.cpp:
          replaced the outdated author list with a "VideoLAN Team" entry.
        * ./debian/rules, ./debian/control: deactivated the vlc-kde package because
          it does not work, and removed the vlc-a52 package because liba52 is
          statically linked into vlc.
        * ./debian/control: added more helpful package descriptions.
        * ALL: changed version to 0.3.0. Yeah, it's coming.
        * ./Makefile: fixed make dist.
      71b4ea0b
    • Sam Hocevar's avatar
      · b29f85e0
      Sam Hocevar authored
        * ./src/video_output/video_output.c: fixed a vout4 image starvation bug.
        * ./plugins/dvd/dvd.c: we look for libdvdcss.so.2 as well as -.so.1.
        * ./configure.in: BSD/OS fixes thanks to Steven M. Schultz.
        * ./Makefile: renamed the `snapshot' rule to `dist'.
        * ./Makefile: removed the `snapshot-nocss' rule which isn't needed anymore.
      b29f85e0
  29. 03 Apr, 2002 1 commit
    • Sam Hocevar's avatar
      · 0beab2c2
      Sam Hocevar authored
        * ALL: removed libdvdcss from the vlc tree.
        * ALL: removed libdvdread from the vlc tree.
        * ./acconfig.h: removed this file.
        * ./plugins/dvd/dummy_dvdcss.c: merged this file into dvd.c.
        * ./AUTHORS: moved a few gentlemen to the libdvdcss AUTHORS file.
      0beab2c2