Difference between revisions of "SoC 2007 Project Dynamic Video Overlays"

From VideoLAN Wiki
Jump to navigation Jump to search
(add SoCProject template)
Line 24: Line 24:
 
! Task Description !! Status
 
! Task Description !! Status
 
|-
 
|-
| Make simple no-op video filters                                                || style="background: #ffffdd" | Implementing
+
| Make simple no-op video filters                                                || style="background: #ddffdd" | Done
 
|-
 
|-
| Define controller protocol                                                    || style="background: #ffdddd" | Not complete
+
| Define controller protocol                                                    || style="background: #ffffdd" | In progess
 
|-
 
|-
 
| Implement full video filter                                                    || style="background: #ffdddd" | Not complete
 
| Implement full video filter                                                    || style="background: #ffdddd" | Not complete

Revision as of 19:36, 14 June 2007

This project is part of Google Summer of Code 2007.
Student: Søren Bøg
Mentor: Antoine Cellerier

Intro

I (Søren Bøg) will be using this area to describe and track my progress, on implementing dynamic overlays in VLC, for Google Summer of Code 2007.

Goal

The goal of this is to create a video filter for VLC, allowing third party applications to overlay dynamic images on top of the VLC video output.

Details

The idea here is to provide VLC with a video filter that allows a third party application (hereafter the controller) to request an overlay on top of the video that VLC is displaying. The controller is then handed a piece of shared memory with a specified pixel format. The controller may then draw all that it desires to this shared memory, Finally when the shared memory has been written to, the controller will notify VLC of the change, and VLC will then composite the overlay into subsequent frames, or at least until instructed to do something else by the controller.

This is somewhat similar the the roles that bomvl, bmovl2 and vf_overlay play for MPlayer.


Why

Well, because I can, why else? More seriously I can see two practical use-cases for this. The first case is my primary motivation for working on this project.

The first use case is a computer gaming website which would like to broadcast computer game tournaments over the internet using VLC. This gaming site would then be able to overlay match statistics and other information onto the streamed video.

Additionally it may be useful for HTPC projects which can then use VLC as a canvas to draw user interfaces on. Such as the MeBox does with MPlayer and bmovl2.

Tasks

Task Description Status
Make simple no-op video filters Done
Define controller protocol In progess
Implement full video filter Not complete
Implement bmovl/bmovl2 compatibility Undecided
Implement interface library Undecided
Implement kaa interface Undecided
Speed up VLC blending (Using assembly or GCC intrinsics) Undecided