MPEG1 cleanup. Added first (non functional) video sink.

Original commit message from CVS:
MPEG1 cleanup. Added first (non functional) video sink.
This commit is contained in:
Wim Taymans 2000-02-17 22:50:28 +00:00
parent 4660e95926
commit 13198c06fa
3 changed files with 41 additions and 1 deletions

View file

@ -308,6 +308,7 @@ plugins/visualization/spectrum/Makefile
plugins/visualization/vumeter/Makefile
plugins/visualization/synaesthesia/Makefile
plugins/visualization/smoothwave/Makefile
plugins/videosink/Makefile
plugins/dvdsrc/Makefile
plugins/vcdsrc/Makefile
plugins/cobin/Makefile

View file

@ -1,3 +1,4 @@
metaincludedir = $(includedir)/gst/meta
metainclude_HEADERS = \
audioraw.h
audioraw.h \
videoraw.h

38
gst/meta/videoraw.h Normal file
View file

@ -0,0 +1,38 @@
/* Gnome-Streamer
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef __GST_META_VIDEORAW_H__
#define __GST_META_VIDEORAW_H__
#include <gst/gstmeta.h>
typedef struct _MetaVideoRaw MetaVideoRaw;
struct _MetaVideoRaw {
GstMeta meta;
/* formatting information */
gint format;
gint width;
gint height;
};
#endif /* __GST_META_AUDIORAW_H__ */