Commit f0647143 authored by Felix Paul Kühne's avatar Felix Paul Kühne

Remove the CoreGraphics video output modules since it was only a skeleton for...

Remove the CoreGraphics video output modules since it was only a skeleton for the CoreAnimation Layer module, so it's not needed anymore
parent 6cddc038
...@@ -57,7 +57,6 @@ Muxers: ...@@ -57,7 +57,6 @@ Muxers:
Video Output: Video Output:
* Direct rendering and filtering for VDPAU hardware acceleration * Direct rendering and filtering for VDPAU hardware acceleration
* New CoreGraphics video output module for NPAPI plugins
* New CoreAnimation OpenGL video output module for NPAPI plugins * New CoreAnimation OpenGL video output module for NPAPI plugins
* New OpenGL ES 2.0 through EGL video output module for Android * New OpenGL ES 2.0 through EGL video output module for Android
* New Android native window provider module * New Android native window provider module
......
...@@ -391,7 +391,6 @@ $Id$ ...@@ -391,7 +391,6 @@ $Id$
* vod_rtsp: RTSP VoD module * vod_rtsp: RTSP VoD module
* volume_neon: audio volume optimized for ARM NEON * volume_neon: audio volume optimized for ARM NEON
* vorbis: a vorbis audio decoder/packetizer using the libvorbis library * vorbis: a vorbis audio decoder/packetizer using the libvorbis library
* vout_coregraphicslayer: CoreGraphics video output for NPAPI plugins
* vout_ios2: iOS video provider using OpenGL ES 2 * vout_ios2: iOS video provider using OpenGL ES 2
* vout_macosx: Mac OS X OpenGL provider * vout_macosx: Mac OS X OpenGL provider
* vout_sdl: video output module using the SDL library * vout_sdl: video output module using the SDL library
......
...@@ -25,15 +25,11 @@ libvout_macosx_plugin_la_CFLAGS = $(AM_CFLAGS) $(GL_CFLAGS) ...@@ -25,15 +25,11 @@ libvout_macosx_plugin_la_CFLAGS = $(AM_CFLAGS) $(GL_CFLAGS)
libvout_macosx_plugin_la_LIBADD = $(GL_LIBS) libvout_macosx_plugin_la_LIBADD = $(GL_LIBS)
libvout_macosx_plugin_la_LDFLAGS = $(AM_LDFLAGS) -rpath '$(voutdir)' -Wl,-framework,OpenGL,-framework,Cocoa libvout_macosx_plugin_la_LDFLAGS = $(AM_LDFLAGS) -rpath '$(voutdir)' -Wl,-framework,OpenGL,-framework,Cocoa
libvout_coregraphicslayer_plugin_la_SOURCES = coregraphicslayer.m
libvout_coregraphicslayer_plugin_la_CFLAGS = $(AM_CFLAGS)
libvout_coregraphicslayer_plugin_la_LDFLAGS = $(AM_LDFLAGS) -rpath '$(voutdir)' -Wl,-framework,OpenGL,-framework,Cocoa,-framework,QuartzCore
libcaopengllayer_plugin_la_SOURCES = caopengllayer.m opengl.c opengl.h libcaopengllayer_plugin_la_SOURCES = caopengllayer.m opengl.c opengl.h
libcaopengllayer_plugin_la_CFLAGS = $(AM_CFLAGS) $(GL_CFLAGS) libcaopengllayer_plugin_la_CFLAGS = $(AM_CFLAGS) $(GL_CFLAGS)
libcaopengllayer_plugin_la_LIBADD = $(GL_LIBS) libcaopengllayer_plugin_la_LIBADD = $(GL_LIBS)
libcaopengllayer_plugin_la_LDFLAGS = $(AM_LDFLAGS) -rpath '$(voutdir)' -Wl,-framework,OpenGL,-framework,Cocoa,-framework,QuartzCore libcaopengllayer_plugin_la_LDFLAGS = $(AM_LDFLAGS) -rpath '$(voutdir)' -Wl,-framework,OpenGL,-framework,Cocoa,-framework,QuartzCore
vout_LTLIBRARIES += libvout_macosx_plugin.la libvout_coregraphicslayer_plugin.la libcaopengllayer_plugin.la vout_LTLIBRARIES += libvout_macosx_plugin.la libcaopengllayer_plugin.la
endif endif
libvout_ios2_plugin_la_SOURCES = ios2.m opengl.h opengl.c libvout_ios2_plugin_la_SOURCES = ios2.m opengl.h opengl.c
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment