mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 15:08:53 +00:00
gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the colorbalance interface stating if it is hardware based...
Original commit message from CVS: 2004-01-13 Julien MOUTTE <julien@moutte.net> * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the colorbalance interface stating if it is hardware based or software based. * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411): Removing a trailing comma. * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get), (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as the documentation seems to be wrong on the -1000 to 1000 interval.
This commit is contained in:
parent
9d7c30dc8a
commit
42501950c3
3 changed files with 21 additions and 1 deletions
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
||||||
|
2004-01-13 Julien MOUTTE <julien@moutte.net>
|
||||||
|
|
||||||
|
* gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
|
||||||
|
colorbalance interface stating if it is hardware based or software
|
||||||
|
based.
|
||||||
|
* gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
|
||||||
|
Removing a trailing comma.
|
||||||
|
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
|
||||||
|
(gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
|
||||||
|
Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
|
||||||
|
the documentation seems to be wrong on the -1000 to 1000 interval.
|
||||||
|
|
||||||
2004-01-12 David Schleef <ds@schleef.org>
|
2004-01-12 David Schleef <ds@schleef.org>
|
||||||
|
|
||||||
* gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
|
* gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
|
||||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
||||||
Subproject commit cd5507ae3df8dc48c07df9e37878846b6b79faa1
|
Subproject commit c81ad072c76522175cbddead96d6f3c448068d67
|
|
@ -43,10 +43,18 @@ G_BEGIN_DECLS
|
||||||
(G_TYPE_INSTANCE_GET_INTERFACE ((inst), GST_TYPE_COLOR_BALANCE, GstColorBalanceClass))
|
(G_TYPE_INSTANCE_GET_INTERFACE ((inst), GST_TYPE_COLOR_BALANCE, GstColorBalanceClass))
|
||||||
|
|
||||||
typedef struct _GstColorBalance GstColorBalance;
|
typedef struct _GstColorBalance GstColorBalance;
|
||||||
|
|
||||||
|
typedef enum
|
||||||
|
{
|
||||||
|
GST_COLOR_BALANCE_HARDWARE,
|
||||||
|
GST_COLOR_BALANCE_SOFTWARE
|
||||||
|
} GstColorBalanceType;
|
||||||
|
|
||||||
typedef struct _GstColorBalanceClass {
|
typedef struct _GstColorBalanceClass {
|
||||||
GTypeInterface klass;
|
GTypeInterface klass;
|
||||||
|
|
||||||
|
GstColorBalanceType balance_type;
|
||||||
|
|
||||||
/* virtual functions */
|
/* virtual functions */
|
||||||
const GList * (* list_channels) (GstColorBalance *balance);
|
const GList * (* list_channels) (GstColorBalance *balance);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue