Thibault Saunier
3b602c1404
gst: Move PyGstMiniObject to public API.
...
Allows it to be reused from 3rd party modules.
https://bugzilla.gnome.org/show_bug.cgi?id=656289
2011-08-10 18:09:28 +02:00
David Schleef
9c7abba819
Automatic update of common submodule
...
From 69b981f to 605cd9a
2011-06-23 11:29:46 -07:00
Sebastian Dröge
fe9d91f321
gst: Don't use private GstPad API to add data/buffer/event probes
...
This does not work anymore with latest core because of the
pad cache that enables use of a fast path during data passing
in many situations.
Fixes bug #650987 .
2011-05-25 09:38:22 +02:00
Andoni Morales Alastruey
d4eb9e9bf9
gst: Fix override of pad probes
...
Fixes bug #650986 .
2011-05-25 09:06:34 +02:00
Stefan Kost
ae713781ca
Automatic update of common submodule
...
From 9e5bbd5 to 69b981f
2011-05-19 22:59:28 +03:00
Stefan Kost
2c1841cddf
Automatic update of common submodule
...
From fd35073 to 9e5bbd5
2011-05-18 16:13:11 +03:00
Stefan Kost
145671d470
Automatic update of common submodule
...
From 46dfcea to fd35073
2011-05-18 12:26:36 +03:00
Thiago Santos
e401c49911
pbutils: Encoding profiles accept null caps restrictions
...
Add 'null-ok' for encoding video/audio profiles constructor
so they accept None as caps restriction parameter
2011-05-03 09:37:36 -03:00
Thiago Santos
501515522f
gstmodule: Check for Py_None when setting a miniobject
...
Check if we got a None value before trying to use it as a
PyGstMiniObject.
https://bugzilla.gnome.org/show_bug.cgi?id=649227
2011-05-02 17:05:27 -03:00
Tim-Philipp Müller
ee06493714
Automatic update of common submodule
...
From c3cafe1 to 46dfcea
2011-04-24 14:05:55 +01:00
Stefan Kost
3626dc7529
Automatic update of common submodule
...
From 1ccbe09 to c3cafe1
2011-04-04 15:58:52 +03:00
Sebastian Dröge
b120784b77
Automatic update of common submodule
...
From 193b717 to 1ccbe09
2011-03-25 22:35:52 +01:00
Stefan Kost
7d1666e4b3
Automatic update of common submodule
...
From b77e2bf to 193b717
2011-03-25 14:57:27 +02:00
Sebastian Dröge
e2cd63531e
Automatic update of common submodule
...
From d8814b6 to b77e2bf
2011-03-25 09:34:04 +01:00
Sebastian Dröge
038040b0c2
Automatic update of common submodule
...
From 6aaa286 to d8814b6
2011-03-25 09:10:14 +01:00
Stefan Kost
b0a8177db3
Automatic update of common submodule
...
From 6aec6b9 to 6aaa286
2011-03-24 18:50:52 +02:00
Luis de Bethencourt
49074b1d17
configure.ac: redundant uses of AC_MSG_RESULT()
...
cleaned the redundant uses of AC_MSG_RESULT() in configure.ac
2011-03-22 13:39:15 +01:00
Luis de Bethencourt
208ce7dce7
autogen: wingo signed comment
2011-03-22 13:30:55 +01:00
Mark Nauwelaerts
66afb28533
Automatic update of common submodule
...
From 1de7f6a to 6aec6b9
2011-02-28 18:34:03 +01:00
Stefan Kost
d044fdc861
Automatic update of common submodule
...
From f94d739 to 1de7f6a
2011-02-14 12:54:46 +02:00
Tim-Philipp Müller
4514c29b9a
gst-0.10.31.ignore: fix build against core 0.10.30
2011-02-09 09:40:17 +00:00
Arun Raghavan
c95985640f
codegen: Respect ignore-type for miniobjects
...
https://bugzilla.gnome.org/show_bug.cgi?id=640410
2011-02-09 00:12:01 +00:00
Arun Raghavan
93fd2d4f43
codegen: Handle empty lines in overrides gracefully
...
Without this, having an empty line in an override will cause codegen to
unceremoniously choke to death.
https://bugzilla.gnome.org/show_bug.cgi?id=640341
2011-02-09 00:11:40 +00:00
Edward Hervey
7672946935
pbutils: Specify which string variables can be NULL
...
Without this you can't pass None to the various methods/constructors
2011-02-06 12:08:14 +01:00
Tim-Philipp Müller
fac013c033
gstmodule: remove unused label to fix compiler warning
...
gstmodule.c: In function 'pygst_fraction_to_value':
gstmodule.c:129:1: error: label 'out' defined but not used
https://bugzilla.gnome.org/show_bug.cgi?id=640837
2011-01-28 16:59:11 +00:00
Andoni Morales Alastruey
8c60dc788e
tests: fix checks when the locale is not the default one
...
Some tests (test_pbutils.py) checks against strings for the
english locale, so we should force it before running any test
https://bugzilla.gnome.org/show_bug.cgi?id=640207
2011-01-25 13:55:48 +00:00
Edward Hervey
fb8beea70a
configure.ac: And back to development we go
2011-01-25 11:17:12 +01:00
Edward Hervey
725bc2f11a
Release 0.10.21
2011-01-20 21:16:38 +01:00
christian schaller
b7a8c732d0
Update spec file with latest changes
2011-01-17 13:37:28 +00:00
Edward Hervey
2f79198599
gstmodule: Add tags introduced in 0.10.31
...
Fixes #639632
2011-01-16 14:58:37 +01:00
Edward Hervey
dfb6a5b099
gstmodule: Use a macro to register tags
...
Avoids human error when registering them (like USER_RATING previously
being TRACK_PEAK).
2011-01-16 14:55:26 +01:00
Arun Raghavan
59fc7cb120
codegen: Ignore functions whose return type is ignored
...
This makes sure that if X is an ignored type, then functions that return
an object of type X (or a pointer type based on X) are also ignored.
Fixes #639293
2011-01-12 15:04:27 +01:00
Arun Raghavan
778159a685
codegen: Handle pointer types in is_type_ignored()
...
This ensures that if type X is ignored, then pointers to X (and pointers
to pointers to X, etc.) are also ignored.
Caveat: this also means that ignore-type should only be used with base
types and not pointer types.
Fixes #639293
2011-01-12 15:04:04 +01:00
Edward Hervey
21a885d462
testsuite: Add a make command to run tests forever
...
And will stop once they fail. Useful to debug racy tests.
2011-01-12 15:01:39 +01:00
Edward Hervey
4e4393c40c
0.10.20.3 pre-release
2011-01-11 20:31:59 +01:00
Stefan Kost
0eac19ec28
Automatic update of common submodule
...
From e572c87 to f94d739
2011-01-11 15:51:55 +02:00
Tim-Philipp Müller
d18e266474
Automatic update of common submodule
...
From ccbaa85 to e572c87
2011-01-10 16:38:09 +00:00
Tim-Philipp Müller
7b0f34f889
Automatic update of common submodule
...
From 46445ad to ccbaa85
2011-01-10 14:55:31 +00:00
Edward Hervey
fd4deb7664
pbutils: Fix discoverer miniobject methods
...
They were declared as functions and not methods :(
2011-01-07 21:52:03 +01:00
Edward Hervey
3c90163dac
0.10.20.2 pre-release
2011-01-07 17:20:44 +01:00
Edward Hervey
7996f97df8
pbutils: Add overrides for new API
2011-01-07 17:17:05 +01:00
Edward Hervey
5ab5335514
encoding: encoding_profile_get_output_caps => _get_input_caps
2011-01-05 22:18:46 +01:00
Edward Hervey
8e82bc4187
gst: update for latest API addition
2011-01-05 21:28:12 +01:00
Edward Hervey
59dc6032b4
pbutils: Update .defs for latest addition
2011-01-05 21:28:05 +01:00
Edward Hervey
0ef52abad4
gst: Update to 0.10.32 core/base API
2011-01-05 15:05:02 +01:00
Edward Hervey
28fca28378
arg-types: Properly handle const-GstCaps* return values
2011-01-05 15:05:02 +01:00
Edward Hervey
e9409c6d43
Automatic update of common submodule
...
From 169462a to 46445ad
2010-12-20 17:48:03 +01:00
Stefan Kost
0eb8767c67
Automatic update of common submodule
...
From 20742ae to 169462a
2010-12-15 14:57:05 +02:00
Stefan Kost
e77c46ce90
Automatic update of common submodule
...
From 011bcc8 to 20742ae
2010-12-13 16:24:39 +02:00
Edward Hervey
fd6a936f24
test_pad: Fix pad refcount checking due to fix in core
...
The event source wasn't previously set correctly. Now that it is,
check the refcount on the proper pad.
2010-12-05 14:09:03 +01:00