mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 13:06:23 +00:00
sys/glsink/: Rename glvideo.[ch] to gstgldisplay.[ch].
Original commit message from CVS: * sys/glsink/Makefile.am: * sys/glsink/glimagesink.h: * sys/glsink/glvideo.c: * sys/glsink/glvideo.h: * sys/glsink/gstglbuffer.c: * sys/glsink/gstglbuffer.h: * sys/glsink/gstgldisplay.c: * sys/glsink/gstgldisplay.h: Rename glvideo.[ch] to gstgldisplay.[ch].
This commit is contained in:
parent
15dbe49f81
commit
6899b8bb6d
7 changed files with 19 additions and 8 deletions
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
|||
2007-12-24 David Schleef <ds@schleef.org>
|
||||
|
||||
* sys/glsink/Makefile.am:
|
||||
* sys/glsink/glimagesink.h:
|
||||
* sys/glsink/glvideo.c:
|
||||
* sys/glsink/glvideo.h:
|
||||
* sys/glsink/gstglbuffer.c:
|
||||
* sys/glsink/gstglbuffer.h:
|
||||
* sys/glsink/gstgldisplay.c:
|
||||
* sys/glsink/gstgldisplay.h:
|
||||
Rename glvideo.[ch] to gstgldisplay.[ch].
|
||||
|
||||
2007-12-24 David Schleef <ds@schleef.org>
|
||||
|
||||
* sys/glsink/glimagesink.c:
|
||||
|
|
|
@ -3,7 +3,7 @@ plugin_LTLIBRARIES = libgstglimagesink.la
|
|||
|
||||
libgstglimagesink_la_SOURCES = \
|
||||
glimagesink.c \
|
||||
glvideo.c \
|
||||
gstgldisplay.c \
|
||||
gstopengl.c \
|
||||
glextensions.c \
|
||||
gstglbuffer.c \
|
||||
|
@ -19,6 +19,6 @@ libgstglimagesink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|||
|
||||
noinst_HEADERS = \
|
||||
glimagesink.h \
|
||||
glvideo.h \
|
||||
gstgldisplay.h \
|
||||
glextensions.h \
|
||||
gstglbuffer.h
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include <gst/video/gstvideosink.h>
|
||||
#include <gst/video/video.h>
|
||||
|
||||
#include "glvideo.h"
|
||||
#include "gstgldisplay.h"
|
||||
|
||||
GST_DEBUG_CATEGORY_EXTERN (gst_debug_glimage_sink);
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#endif
|
||||
|
||||
#include <gstglbuffer.h>
|
||||
#include <glvideo.h>
|
||||
#include <gstgldisplay.h>
|
||||
#include <GL/glext.h>
|
||||
#include <unistd.h>
|
||||
#include "glextensions.h"
|
||||
|
|
|
@ -4,8 +4,7 @@
|
|||
|
||||
#include <gst/gst.h>
|
||||
#include <gst/video/video.h>
|
||||
#include <xcb/xcb.h>
|
||||
#include <glvideo.h>
|
||||
#include <gstgldisplay.h>
|
||||
|
||||
typedef struct _GstGLBuffer GstGLBuffer;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* glvideo.c
|
||||
/* gstgldisplay.c
|
||||
* Copyright (C) 2007 David A. Schleef <ds@schleef.org>
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
|
@ -21,7 +21,7 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "glvideo.h"
|
||||
#include "gstgldisplay.h"
|
||||
#include "glextensions.h"
|
||||
#include <gst/gst.h>
|
||||
|
Loading…
Reference in a new issue