summaryrefslogtreecommitdiff
path: root/sys/osxvideo/cocoawindow.h
Commit message (Collapse)AuthorAgeFilesLines
* osxvideosink: Make GstNavigation key input events in osxvideosink compatible ↵Alexey Chernov2013-01-311-0/+1
| | | | with x(v)imagesink ones
* osxvideosink: make sure all selectors are performed on the same threadAndoni Morales Alastruey2012-05-251-0/+2
| | | | | | | | | | | When we are using a dedicated thread to run the main run loop we must make sure that all selectors are performed on this same thread. For instance if performSelectorOnMainThread is called from the real main thread, it will not go through the message queue and will be executed from the real main thread. By forcing the target thread, we ensure that all functions will be called either from the real main thread when the main run loop is running or from our thread spinning the main loop.
* osxvideosink: fix navigation when force-aspect-ratio is activatedAndoni Morales Alastruey2012-05-231-0/+2
|
* osxvideosink: add force-aspect-ratio propertyAndoni Morales Alastruey2012-05-231-0/+2
|
* osxvideosink: start internal window if no view is providedAndoni Morales Alastruey2012-05-231-1/+1
|
* osxvideosink: implement the navigation interfaceAndoni Morales Alastruey2012-05-231-0/+4
|
* osxvideosink: implement the xoverlay interface. Fixes #618349.Alessandro Decina2010-05-111-0/+4
|
* Fix build on Mac OS X 10.5Julien Moutte2007-11-201-1/+1
| | | | | | | | | | | | Original commit message from CVS: 2007-11-20 Julien MOUTTE <julien@moutte.net> * ext/taglib/gsttaglibmux.c: (gst_tag_lib_mux_render_tag), (gst_tag_lib_mux_adjust_event_offsets): * gst/qtdemux/qtdemux.c: (qtdemux_parse_theora_extension): * sys/osxaudio/Makefile.am: * sys/osxvideo/cocoawindow.h: * sys/osxvideo/cocoawindow.m: Fix build on Mac OS X 10.5
* sys/osxvideo/: Fix leaks when running a NSApp.Edward Hervey2007-03-141-0/+1
| | | | | | | | | | | | | Original commit message from CVS: * sys/osxvideo/cocoawindow.h: * sys/osxvideo/cocoawindow.m: * sys/osxvideo/osxvideosink.h: * sys/osxvideo/osxvideosink.m: Fix leaks when running a NSApp. Accept any kind of resolutions. Works in fullscreen. Can maximize. Only thing left before being able to move this to -good is documentation and embedded window support.
* update copyright statementsChristian Schaller2007-02-271-0/+5
| | | | | Original commit message from CVS: update copyright statements
* sys/osxvideo/: Disable the cocoa event loop since it's a huge memory leak. ↵Edward Hervey2007-02-271-15/+0
| | | | | | | | | | | | | | Should only matter if the sink isn't used ... Original commit message from CVS: * sys/osxvideo/cocoawindow.h: * sys/osxvideo/cocoawindow.m: * sys/osxvideo/osxvideosink.h: * sys/osxvideo/osxvideosink.m: Disable the cocoa event loop since it's a huge memory leak. Should only matter if the sink isn't used within an NSApp (which has already got a coca event loop). Remove all unused code.
* configure.ac: Check for an Objective C compilerEdward Hervey2007-01-301-0/+79
Original commit message from CVS: * configure.ac: Check for an Objective C compiler * sys/Makefile.am: * sys/osxvideo/Makefile.am: * sys/osxvideo/cocoawindow.h: * sys/osxvideo/cocoawindow.m: * sys/osxvideo/osxvideosink.h: * sys/osxvideo/osxvideosink.m: Port of osxvideo plugin to 0.10. Do NOT consider 100% stable ! Fixes #402470