mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-25 16:48:11 +00:00
Purge GstAtomic stuff from docs and win32 makefiles as well
Original commit message from CVS: * docs/gst/Makefile.am: * docs/gst/gstreamer-docs.sgml: * docs/gst/gstreamer-sections.txt: * docs/gst/tmpl/gstatomic.sgml: * docs/gst/tmpl/gstmemchunk.sgml: * testsuite/elements/struct_i386.h: * win32/GStreamer.vcproj: * win32/Makefile: Purge GstAtomic stuff from docs and win32 makefiles as well
This commit is contained in:
parent
d7b231e6d1
commit
871d5c279c
12 changed files with 15 additions and 69 deletions
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
||||||
|
2005-05-06 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* docs/gst/Makefile.am:
|
||||||
|
* docs/gst/gstreamer-docs.sgml:
|
||||||
|
* docs/gst/gstreamer-sections.txt:
|
||||||
|
* docs/gst/tmpl/gstatomic.sgml:
|
||||||
|
* docs/gst/tmpl/gstmemchunk.sgml:
|
||||||
|
* testsuite/elements/struct_i386.h:
|
||||||
|
* win32/GStreamer.vcproj:
|
||||||
|
* win32/Makefile:
|
||||||
|
Purge GstAtomic stuff from docs and win32 makefiles as well
|
||||||
|
|
||||||
2005-05-06 Wim Taymans <wim@fluendo.com>
|
2005-05-06 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
* gst/base/gstbasetransform.c: (gst_base_transform_proxy_getcaps):
|
* gst/base/gstbasetransform.c: (gst_base_transform_proxy_getcaps):
|
||||||
|
|
|
@ -64,7 +64,6 @@ IGNORE_HFILES= \
|
||||||
gst-i18n-lib.h \
|
gst-i18n-lib.h \
|
||||||
gst-i18n-app.h \
|
gst-i18n-app.h \
|
||||||
gst_private.h \
|
gst_private.h \
|
||||||
gstatomic_impl.h \
|
|
||||||
gstdata_private.h \
|
gstdata_private.h \
|
||||||
gstarch.h \
|
gstarch.h \
|
||||||
cothreads.h \
|
cothreads.h \
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
<!ENTITY % version-entities SYSTEM "version.entities">
|
<!ENTITY % version-entities SYSTEM "version.entities">
|
||||||
%version-entities;
|
%version-entities;
|
||||||
<!ENTITY Gst SYSTEM "xml/gst.xml">
|
<!ENTITY Gst SYSTEM "xml/gst.xml">
|
||||||
<!ENTITY GstAtomic SYSTEM "xml/gstatomic.xml">
|
|
||||||
<!ENTITY GstBin SYSTEM "xml/gstbin.xml">
|
<!ENTITY GstBin SYSTEM "xml/gstbin.xml">
|
||||||
<!ENTITY GstBuffer SYSTEM "xml/gstbuffer.xml">
|
<!ENTITY GstBuffer SYSTEM "xml/gstbuffer.xml">
|
||||||
<!ENTITY GstCaps SYSTEM "xml/gstcaps.xml">
|
<!ENTITY GstCaps SYSTEM "xml/gstcaps.xml">
|
||||||
|
@ -153,7 +152,6 @@
|
||||||
Theses elements support the gstreamer core and applications using it.
|
Theses elements support the gstreamer core and applications using it.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
&GstAtomic;
|
|
||||||
&GstMacros;
|
&GstMacros;
|
||||||
&GstMemChunk;
|
&GstMemChunk;
|
||||||
|
|
||||||
|
|
|
@ -26,20 +26,6 @@ gst_main_quit
|
||||||
#GstPoptOption
|
#GstPoptOption
|
||||||
</SECTION>
|
</SECTION>
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gstatomic</FILE>
|
|
||||||
<TITLE>GstAtomic</TITLE>
|
|
||||||
gst_vgint
|
|
||||||
GstAtomicInt
|
|
||||||
gst_atomic_int_init
|
|
||||||
gst_atomic_int_destroy
|
|
||||||
gst_atomic_int_set
|
|
||||||
gst_atomic_int_read
|
|
||||||
gst_atomic_int_add
|
|
||||||
gst_atomic_int_inc
|
|
||||||
gst_atomic_int_dec_and_test
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
<SECTION>
|
||||||
<FILE>gstbin</FILE>
|
<FILE>gstbin</FILE>
|
||||||
<TITLE>GstBin</TITLE>
|
<TITLE>GstBin</TITLE>
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
<!-- ##### SECTION Title ##### -->
|
|
||||||
GstAtomic
|
|
||||||
|
|
||||||
<!-- ##### SECTION Short_Description ##### -->
|
|
||||||
Functions that implement atomic operations.
|
|
||||||
|
|
||||||
<!-- ##### SECTION Long_Description ##### -->
|
|
||||||
<para>
|
|
||||||
Functions that implement atomic operations on a #GstAtomicInt structure.
|
|
||||||
Atomic operations are thread safe and don't use heavyweight locking mechanisms.
|
|
||||||
</para>
|
|
||||||
<para>
|
|
||||||
These functions will be inlined in the GStreamer core but are available to plugins
|
|
||||||
as external methods.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<!-- ##### SECTION See_Also ##### -->
|
|
||||||
<para>
|
|
||||||
#GstMemChunk
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION gst_atomic_int_set ##### -->
|
|
||||||
<para>
|
|
||||||
Atomically set the value on the #GstAtomicInt.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@atomic_int:
|
|
||||||
@value:
|
|
||||||
<!-- # Unused Parameters # -->
|
|
||||||
@aint: a #GstAtomicInt
|
|
||||||
@val: The new value
|
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ The GstMemChunk is used to allocate critical resources for #GstBuffer and
|
||||||
|
|
||||||
<!-- ##### SECTION See_Also ##### -->
|
<!-- ##### SECTION See_Also ##### -->
|
||||||
<para>
|
<para>
|
||||||
#GstAtomic, #GstBuffer, #GstEvent, #GstData
|
#GstBuffer, #GstEvent, #GstData
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<!-- ##### STRUCT GstMemChunk ##### -->
|
<!-- ##### STRUCT GstMemChunk ##### -->
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
Struct list[] = {
|
Struct list[] = {
|
||||||
{"GstPoptOption", sizeof (GstPoptOption), 28}
|
{"GstPoptOption", sizeof (GstPoptOption), 28}
|
||||||
,
|
,
|
||||||
{"GstAtomicInt", sizeof (GstAtomicInt), 8}
|
|
||||||
,
|
|
||||||
{"GstBuffer", sizeof (GstBuffer), 108}
|
{"GstBuffer", sizeof (GstBuffer), 108}
|
||||||
,
|
,
|
||||||
{"GstCaps", sizeof (GstCaps), 28}
|
{"GstCaps", sizeof (GstCaps), 28}
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
Struct list[] = {
|
Struct list[] = {
|
||||||
{"GstPoptOption", sizeof (GstPoptOption), 28}
|
{"GstPoptOption", sizeof (GstPoptOption), 28}
|
||||||
,
|
,
|
||||||
{"GstAtomicInt", sizeof (GstAtomicInt), 8}
|
|
||||||
,
|
|
||||||
{"GstBuffer", sizeof (GstBuffer), 108}
|
{"GstBuffer", sizeof (GstBuffer), 108}
|
||||||
,
|
,
|
||||||
{"GstCaps", sizeof (GstCaps), 28}
|
{"GstCaps", sizeof (GstCaps), 28}
|
||||||
|
|
|
@ -194,9 +194,6 @@ type gstreamer-dbg.def >> gst.def
|
||||||
<File
|
<File
|
||||||
RelativePath="..\gst\gst.c">
|
RelativePath="..\gst\gst.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
|
||||||
RelativePath="..\gst\gstatomic.c">
|
|
||||||
</File>
|
|
||||||
<File
|
<File
|
||||||
RelativePath="..\gst\gstbin.c">
|
RelativePath="..\gst\gstbin.c">
|
||||||
</File>
|
</File>
|
||||||
|
@ -349,9 +346,6 @@ type gstreamer-dbg.def >> gst.def
|
||||||
<File
|
<File
|
||||||
RelativePath="..\gst\gst.h">
|
RelativePath="..\gst\gst.h">
|
||||||
</File>
|
</File>
|
||||||
<File
|
|
||||||
RelativePath="..\gst\gstatomic.h">
|
|
||||||
</File>
|
|
||||||
<File
|
<File
|
||||||
RelativePath="..\gst\gstbufferpool-default.h">
|
RelativePath="..\gst\gstbufferpool-default.h">
|
||||||
</File>
|
</File>
|
||||||
|
|
|
@ -18,7 +18,7 @@ GLIB_DIR=..\..\glib
|
||||||
#
|
#
|
||||||
CXX = cl /Tp
|
CXX = cl /Tp
|
||||||
CC = cl /Tc
|
CC = cl /Tc
|
||||||
SRC = dirent.c $(SRC_DIR)\parse\grammar.tab.c $(SRC_DIR)\gst.c $(SRC_DIR)\gstatomic.c $(SRC_DIR)\gstbin.c $(SRC_DIR)\gstbuffer.c \
|
SRC = dirent.c $(SRC_DIR)\parse\grammar.tab.c $(SRC_DIR)\gst.c $(SRC_DIR)\gstbin.c $(SRC_DIR)\gstbuffer.c \
|
||||||
$(SRC_DIR)\gstcaps.c $(SRC_DIR)\gstclock.c $(SRC_DIR)\gstcpu.c $(SRC_DIR)\gstdata.c $(SRC_DIR)\gstelement.c $(SRC_DIR)\gstelementfactory.c \
|
$(SRC_DIR)\gstcaps.c $(SRC_DIR)\gstclock.c $(SRC_DIR)\gstcpu.c $(SRC_DIR)\gstdata.c $(SRC_DIR)\gstelement.c $(SRC_DIR)\gstelementfactory.c \
|
||||||
$(SRC_DIR)\gstenumtypes.c $(SRC_DIR)\gsterror.c $(SRC_DIR)\gstevent.c $(SRC_DIR)\gstfilter.c $(SRC_DIR)\gstformat.c $(SRC_DIR)\gstindex.c \
|
$(SRC_DIR)\gstenumtypes.c $(SRC_DIR)\gsterror.c $(SRC_DIR)\gstevent.c $(SRC_DIR)\gstfilter.c $(SRC_DIR)\gstformat.c $(SRC_DIR)\gstindex.c \
|
||||||
$(SRC_DIR)\gstinfo.c $(SRC_DIR)\gstmarshal.c $(SRC_DIR)\gstmemchunk.c $(SRC_DIR)\gstobject.c $(SRC_DIR)\gstpad.c $(SRC_DIR)\gstparse.c \
|
$(SRC_DIR)\gstinfo.c $(SRC_DIR)\gstmarshal.c $(SRC_DIR)\gstmemchunk.c $(SRC_DIR)\gstobject.c $(SRC_DIR)\gstpad.c $(SRC_DIR)\gstparse.c \
|
||||||
|
|
|
@ -194,9 +194,6 @@ type gstreamer-dbg.def >> gst.def
|
||||||
<File
|
<File
|
||||||
RelativePath="..\gst\gst.c">
|
RelativePath="..\gst\gst.c">
|
||||||
</File>
|
</File>
|
||||||
<File
|
|
||||||
RelativePath="..\gst\gstatomic.c">
|
|
||||||
</File>
|
|
||||||
<File
|
<File
|
||||||
RelativePath="..\gst\gstbin.c">
|
RelativePath="..\gst\gstbin.c">
|
||||||
</File>
|
</File>
|
||||||
|
@ -349,9 +346,6 @@ type gstreamer-dbg.def >> gst.def
|
||||||
<File
|
<File
|
||||||
RelativePath="..\gst\gst.h">
|
RelativePath="..\gst\gst.h">
|
||||||
</File>
|
</File>
|
||||||
<File
|
|
||||||
RelativePath="..\gst\gstatomic.h">
|
|
||||||
</File>
|
|
||||||
<File
|
<File
|
||||||
RelativePath="..\gst\gstbufferpool-default.h">
|
RelativePath="..\gst\gstbufferpool-default.h">
|
||||||
</File>
|
</File>
|
||||||
|
|
|
@ -18,7 +18,7 @@ GLIB_DIR=..\..\glib
|
||||||
#
|
#
|
||||||
CXX = cl /Tp
|
CXX = cl /Tp
|
||||||
CC = cl /Tc
|
CC = cl /Tc
|
||||||
SRC = dirent.c $(SRC_DIR)\parse\grammar.tab.c $(SRC_DIR)\gst.c $(SRC_DIR)\gstatomic.c $(SRC_DIR)\gstbin.c $(SRC_DIR)\gstbuffer.c \
|
SRC = dirent.c $(SRC_DIR)\parse\grammar.tab.c $(SRC_DIR)\gst.c $(SRC_DIR)\gstbin.c $(SRC_DIR)\gstbuffer.c \
|
||||||
$(SRC_DIR)\gstcaps.c $(SRC_DIR)\gstclock.c $(SRC_DIR)\gstcpu.c $(SRC_DIR)\gstdata.c $(SRC_DIR)\gstelement.c $(SRC_DIR)\gstelementfactory.c \
|
$(SRC_DIR)\gstcaps.c $(SRC_DIR)\gstclock.c $(SRC_DIR)\gstcpu.c $(SRC_DIR)\gstdata.c $(SRC_DIR)\gstelement.c $(SRC_DIR)\gstelementfactory.c \
|
||||||
$(SRC_DIR)\gstenumtypes.c $(SRC_DIR)\gsterror.c $(SRC_DIR)\gstevent.c $(SRC_DIR)\gstfilter.c $(SRC_DIR)\gstformat.c $(SRC_DIR)\gstindex.c \
|
$(SRC_DIR)\gstenumtypes.c $(SRC_DIR)\gsterror.c $(SRC_DIR)\gstevent.c $(SRC_DIR)\gstfilter.c $(SRC_DIR)\gstformat.c $(SRC_DIR)\gstindex.c \
|
||||||
$(SRC_DIR)\gstinfo.c $(SRC_DIR)\gstmarshal.c $(SRC_DIR)\gstmemchunk.c $(SRC_DIR)\gstobject.c $(SRC_DIR)\gstpad.c $(SRC_DIR)\gstparse.c \
|
$(SRC_DIR)\gstinfo.c $(SRC_DIR)\gstmarshal.c $(SRC_DIR)\gstmemchunk.c $(SRC_DIR)\gstobject.c $(SRC_DIR)\gstpad.c $(SRC_DIR)\gstparse.c \
|
||||||
|
|
Loading…
Reference in a new issue