Changeset c4b95b5063089cf126d2df572f4bbbc60ac07fef
- 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
| r649c933 |
rc4b95b5 |
|
| 1206 | 1206 | VLC_ADD_PLUGINS([trivial_channel_mixer trivial_mixer]) |
|---|
| 1207 | 1207 | VLC_ADD_PLUGINS([playlist export nsc xtag]) |
|---|
| 1208 | | VLC_ADD_PLUGINS([i420_rgb grey_yuv rawvideo blend scale image logo magnify puzzle colorthres]) |
|---|
| | 1208 | VLC_ADD_PLUGINS([i420_rgb grey_yuv rawvideo blend scale image vmem logo magnify puzzle colorthres]) |
|---|
| 1209 | 1209 | VLC_ADD_PLUGINS([wav araw subtitle vobsub adpcm a52sys dtssys au ty voc xa nuv smf]) |
|---|
| 1210 | 1210 | VLC_ADD_PLUGINS([access_directory access_file access_udp access_tcp]) |
|---|
| rd99431b |
rc4b95b5 |
|
| 18 | 18 | SOURCES_image = image.c |
|---|
| 19 | 19 | SOURCES_directfb = directfb.c |
|---|
| | 20 | SOURCES_vmem = vmem.c |
|---|
| | 21 | |
|---|