Changeset c4b95b5063089cf126d2df572f4bbbc60ac07fef

Show
Ignore:
Timestamp:
03/21/08 15:26:30 (4 months ago)
Author:
Sam Hocevar <sam@zoy.org>
git-committer:
Sam Hocevar <sam@zoy.org> 1206109590 +0000
git-parent:

[699dd7887738f8e1373a4cf3d8c03f010c70a29b]

git-author:
Sam Hocevar <sam@zoy.org> 1206109590 +0000
Message:

New video output driver: "vmem", for direct memory access.

Sometimes our list of video output modules is still not enough for an
external libvlc application with specific requirements. For instance, an
SDL application running in full screen cannot open a new window on Linux
(this is a known libSDL limitation). This vmem video output allows it to
asynchronously render the video into an SDL_Surface, with full locking.

Resolution or pitch changes are not supported yet. I'd advise against
them however, since they often require a full chroma unload/reload
operation, which is quite expensive.

I also believe this feature should be directly integrated into libvlc,
but I don't want to be too intrusive yet.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • configure.ac

    r649c933 rc4b95b5  
    12061206VLC_ADD_PLUGINS([trivial_channel_mixer trivial_mixer]) 
    12071207VLC_ADD_PLUGINS([playlist export nsc xtag]) 
    1208 VLC_ADD_PLUGINS([i420_rgb grey_yuv rawvideo blend scale image logo magnify puzzle colorthres]) 
     1208VLC_ADD_PLUGINS([i420_rgb grey_yuv rawvideo blend scale image vmem logo magnify puzzle colorthres]) 
    12091209VLC_ADD_PLUGINS([wav araw subtitle vobsub adpcm a52sys dtssys au ty voc xa nuv smf]) 
    12101210VLC_ADD_PLUGINS([access_directory access_file access_udp access_tcp]) 
  • modules/video_output/Modules.am

    rd99431b rc4b95b5  
    1818SOURCES_image = image.c 
    1919SOURCES_directfb = directfb.c 
     20SOURCES_vmem = vmem.c 
     21