- Aug 29, 2009
-
-
Tim-Philipp Müller authored
Which is needed to build the plugin docs for the frei0r plugin (and was included in the 0.10.14 release tarball).
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
-
- Aug 26, 2009
-
-
Tim-Philipp Müller authored
-
Руслан Ижбулатов authored
One set of CFLAGS for all DirectX-based plugins. Correct header/library checks for DirectX-based-plugins. Remove unused variable and label in directsoundsrc. Fixes #593068.
-
- Aug 25, 2009
-
-
Arek Korbik authored
Without this oggmux will just keep buffering output pages in some cases. Fixes #593024.
-
Руслан Ижбулатов authored
Fixes #593063.
-
- Aug 24, 2009
-
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
Use a different GType name for the element to avoid 'cannot register existing type' warnings when running 'make check' in the unpacked tarball with the old amrwb plugin also installed as system plugin under the old name (it used to be called 'amrwrb' and now it's 'amrwbenc').
-
Julien Isorce authored
-
- Aug 21, 2009
-
-
Tim-Philipp Müller authored
-
- Aug 18, 2009
-
-
Olivier Crête authored
-
- Aug 16, 2009
-
-
David Schleef authored
-
- Aug 14, 2009
-
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
See #575261.
-
- Aug 12, 2009
-
-
Thiago Santos authored
asfmux was messing up with the GstCollectData list of its GstCollectPads when sorting the list inplace. This patch makes it copy the list before sorting it, leaving the GstCollectPads list as is. Fixes #591610
-
Olivier Crête authored
-
Olivier Crête authored
Only try to use the clock in if paused-mode is set and refuse to go playing in paused-mode without it. Fixes bug #591538
-
Olivier Crête authored
-
Olivier Crête authored
-
Problem found by Laurent Glayal Fixes bug #591440
-
Problem found by Laurent Glayal Fixes bug #591440
-
Tim-Philipp Müller authored
These elements are not fit for autoplugging, so demoting to RANK_NONE. Also blacklisting for generic states test, since fixing these elements up to do some minimal error handling seems to be a bit more work. Partially fixes #591538.
-
- Aug 11, 2009
-
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
-
Christian Schaller authored
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
camerabin test seems to time out with core git, so disabling because chances are the problem is in the test and the core git stuff will be released before we can fix the code in the test. neonhttpsrc unit test is a bit flaky, it tends to fail the first time when called (the host/url it checks for seems to be down as well/anyway).
-
- Aug 10, 2009
-
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
To avoid confusion.
-
Julien Isorce authored
something like the following code now works: vector<string> getVideoDeviceNames() { vector<string> l_name; string property; GstElement* videodevicesrc = create_element("dshowvideosrc", "videodevicesrc"); GstPropertyProbe* probe = GST_PROPERTY_PROBE (videodevicesrc); GValueArray* va = gst_property_probe_get_values_name (probe, "device-name"); if (va) { for(size_t i=0; i < va->n_values; ++i) { GValue* v = g_value_array_get_nth(va, i); string name(g_value_get_string(v)); l_name.push_back(name); } } if (videodevicesrc) gst_object_unref(GST_OBJECT (videodevicesrc)); return l_name; }
-
Julien Isorce authored
-
Julien Isorce authored
-
-
Tim-Philipp Müller authored
-
Julien Isorce authored
Even if the device could capture several video sizes at several framerates, without this commit, it was only possible to use one video size and one framerate: the default directshow values.
-
Julien Isorce authored
-
Julien Isorce authored
-