Changes between Version 54 and Version 55 of Documentation/VLC


Ignore:
Timestamp:
May 31, 2010, 5:07:27 PM (14 years ago)
Author:
stud-hock
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/VLC

    v54 v55  
    245245}}}
    246246
     247=== getting the plugin code ===
     248
     249The source code package contains a modified vlc-1.0.6 including the vlc-mcpo sender code, the receive code and the gui modifications. If you want to compile a vlc-1.0.6 (same version as in the ubuntu 10.04 repository) you can continue reading the ''compile the modified VLC'' section.
     250
     251The following instructions help to insert the plugin code into an existing vlc source (e.g. from a different version than 1.0.6).
     252
     253 * Get the vlc source code you intend to modify.
     254 * Insert the following folders from "our" source code:
     255   * vlc/modules/access/mcpo
     256   * vlc/modules/access_output/mcpo
     257 * Activate the new folders by adjusting the following files. (You can make a {{diff}}} with our version of these files to see the changes.):
     258   * vlc/configure.ac
     259   * vlc/access/Modules.am
     260   * vlc/access_output/Modules.am
     261
     262Note: The file {{{vlc/modules/access_output/mcpo/mcpo.c}}} is based on {{{vlc/modules/access_output/udp.c}}}. You might to consider this, if you work on this code.
     263
    247264
    248265=== adjusting vlc source code ===