removing conflict traces
[platform/upstream/gstreamer.git] / ChangeLog
1 2003-12-25  Thomas Vander Stichele  <thomas at apestaart dot org>
2
3         * docs/gst/tmpl/gstreamer-unused.sgml:
4           removed all traces of cvs conflicts
5
6 2003-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
7
8         * configure.ac:
9         * gst/schedulers/cothreads_compat.h:
10         * libs/Makefile.am:
11           remove last instances of wingo cothread usage
12
13 2003-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
14
15         * gst/gstplugin.c:
16         * gst/gstversion.h.in:
17         * gst/parse/grammar.y:
18           change comment block from /** to /* when not gtk-doc comments
19
20 2003-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21
22         * gst/gst.c: whitespace and doc style fixes
23
24 2003-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
25
26         * gst/gstformat.h: remove trailing whitespace from enum for gtk-doc
27
28 2003-12-24  Colin Walters  <walters@verbum.org>
29
30         * gst/elements/gsttypefindelement.c:
31           gst/elements/gsttypefindelement.h: Make GstCaps parameter const.
32           Copy caps parameter. Use _POINTER to marshal caps instead of _BOXED.
33           Don't double-free caps.
34
35 2003-12-23  David Schleef  <ds@schleef.org>
36
37         * gst/gstelement.c, gst/gstpad.c, gst/parse/grammar.y,
38           gst/gstcaps.c, gst/autoplug/gstspideridentity.c:
39           Many little fixes and additions of debug statements to
40           get rhythmbox working.
41
42 2003-12-23  Colin Walters  <walters@verbum.org>
43
44         * gst/autoplug/gstspideridentity.c (gst_spider_identity_sink_loop_type_finding):
45         Use GST_PAD_LINK_SUCCESSFUL.
46
47 2003-12-23  David Schleef  <ds@schleef.org>
48
49         * gst/elements/gstaggregator.c:
50         * gst/elements/gsttee.c:
51           Use gst_pad_proxy_getcaps().
52         * gst/gstpad.c:
53         * gst/gstpad.h:
54           Add gst_pad_proxy_getcaps(), which filter elements can use
55           as a generic getcaps implementation.
56           Fix gst_pad_get_allowed_caps().  It just wasn't doing what
57           was advertised.
58
59 2003-12-23  David Schleef  <ds@schleef.org>
60
61         * gst/gstpad.c:
62           Rearrange/rewrite much of the pad negotiation code, since it
63           resembled pasta.  This actually changes the way some
64           negotiation works, since the previous code was inconsistent
65           depending on how it was invoked.  Add (internal) structure
66           GstPadLink, which is used to hold some information (more in
67           the future) about the link between two pads.  Fixes a number
68           of bugs, including random lossage of filter caps when the
69           initial negotiation is delayed.  A few functions are still
70           unimplemented.
71         * gst/gstpad.h:
72           Add GST_PAD_LINK_{SUCESSFUL|FAILED}() macros.  Please use
73           these when testing GstPadLinkReturn values instead of comparing
74           directly.
75
76 2003-12-23  David Schleef  <ds@schleef.org>
77
78         * gst/gstvalue.c: 
79         * gst/gstvalue.h:
80           Rearrange lots of code.  Change registration of compare function
81           into registration of compare/serialize/deserialize functions.
82           Doesn't include implementation of gst_value_[de]serialize(),
83           but that should be easy.
84
85 2003-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
86
87         * docs/gst/gstreamer-sections.txt:
88         * docs/gst/tmpl/gstprops.sgml: removed
89         * docs/gst/tmpl/gstreamer-bufferpool.sgml: removed
90           David removed props and caps code, so let's remove their docs as well.
91           Removed all no longer existing symbols from gstreamer-sections.txt
92           
93 2003-12-22  Colin Walters  <walters@verbum.org>
94
95         * gst/gsttaginterface.c, gst/gsttaginterface.h,
96           gst/gsttag.c, gst/gsttag.h:  Add interface to setting GValues
97           of tags directly.
98
99 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
100
101         * gst/elements/gstelements.c:
102           Set ranks of elements to NONE, so the autoplugger doesn't use them.
103         * gst/elements/gstshaper.c: (gst_shaper_getcaps):
104           Fix proxying to new CAPS stuff. Don't call get_allowed_caps but
105           gst_caps (peer).
106
107 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
108
109         * gst/autoplug/gstsearchfuncs.c: (gst_autoplug_caps_intersect):
110         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_link),
111         (gst_spider_identity_getcaps), (gst_spider_identity_change_state),
112         (gst_spider_identity_sink_loop_type_finding):
113         * gst/autoplug/gstspideridentity.h:
114           Fix autoplugging in spider element, so it works with new caps.
115           This was mainly caused by identifying empty caps incorrectly.
116
117 2003-12-22  David Schleef  <ds@schleef.org>
118
119         * gststructure.c, gstvalue.c, gstvalue.h: Add
120           gst_value_init_and_copy() and use it, to avoid silly mistakes in
121           using g_value_copy()
122
123 2003-12-21  David Schleef  <ds@schleef.org>
124
125         * many, many files: Merge CAPS branch.  This includes:
126           - implemention of GstValue and several GstValue types
127           - implemention of GstStructure
128           - entire rewrite of GstCaps
129           - removal of GstProps
130           - many changes to GstPad to compensate for new caps paradigm
131           - removal of GstBufferpool
132         * gst/Makefile.am, gst/gst.h, gst/gstpad.h, gst/gsttypefind.h,
133         gstvalue.h, gst/gstcaps[2]*.[ch]:
134           - rename gstcaps2.[ch] to gstcaps.[ch]
135
136 2003-12-21  Ronald Bultje  <rbultje@ronald.bitfreak.net>
137
138         * gst/gstqueue.c: (gst_queue_handle_pending_events),
139         (gst_queue_chain), (gst_queue_handle_src_event):
140           implement timeout for sending events. Workaround for if the
141           pipeline on this queue is not passing any data.
142
143 2003-12-21  Ronald Bultje <rbultje@ronald.bitfreak.net>
144                                                                                 
145         * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gstreamer
146         * moved CVS to freedesktop.org
147