Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-08-26 | directdraw, directsound: unify CFLAGS and fix configure checks for ↵ | Руслан Ижбулатов | 3 | -32/+24 | |
DirectX-based plugins 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. | |||||
2009-08-24 | dshowsrcwrapper: use of default debug category and better dshow errors ↵ | Julien Isorce | 2 | -60/+29 | |
readability | |||||
2009-08-12 | vdpau: blacklist for generic states test, and demote to GST_RANK_NONE | Tim-Philipp Müller | 2 | -5/+14 | |
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. | |||||
2009-08-10 | Remove execute flags from source files | Tim-Philipp Müller | 10 | -0/+0 | |
2009-08-10 | dshowsrcwrapper: can list more than 1 device | Julien Isorce | 2 | -6/+4 | |
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; } | |||||
2009-08-10 | dshowaudiosrc: handles device-name property | Julien Isorce | 1 | -0/+11 | |
2009-08-10 | dshowsrcwrapper: add a helper function to check a media type | Julien Isorce | 4 | -39/+30 | |
2009-08-10 | dshowvideosrc: can use other video sizes and framerates than the defaults | Julien Isorce | 2 | -25/+172 | |
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. | |||||
2009-08-10 | directsoundsrc: LF and indent | Julien Isorce | 1 | -544/+635 | |
2009-08-09 | directdrawsink: Fix crash when exposing in GST_STATE_READY | Julien Isorce | 1 | -4/+6 | |
Fixes bug #541962. | |||||
2009-07-31 | directdraw: Fix indention | Sebastian Dröge | 1 | -20/+17 | |
2009-07-31 | directdraw: Implement GstNavigation interface | Руслан Ижбулатов | 2 | -4/+196 | |
Fixes bug #590208. | |||||
2009-07-29 | directsoundsrc: Add DirectSound source plugin | Joni Valtanen | 5 | -2/+768 | |
Fixes bug #344129. | |||||
2009-07-27 | dshowsrcwrapper: remove use of IGstDshowInterface | Julien Isorce | 12 | -369/+44 | |
2009-07-22 | dshowsrcwrapper: update Makefile.am for source file renames as well | Tim-Philipp Müller | 1 | -2/+2 | |
2009-07-22 | dshowaudiosrc: do not remove a range of length 0 | Julien Isorce | 1 | -1/+3 | |
2009-07-22 | dshowaudiosrc: converts code to C++ | Julien Isorce | 1 | -92/+70 | |
2009-07-22 | dshowvideosrc: converts code to C++ | Julien Isorce | 1 | -89/+72 | |
2009-07-21 | start refactoring of dshowsrcwrapper | Julien Isorce | 13 | -64/+814 | |
-remove gst-libs/gst/dshow -fakesource is moved from gst-libs/gst/dshow to sys/dshowsrcwrapper -some minor changes (C/C++ check and includes) to make the plugin compile again. | |||||
2009-07-16 | Increased the length of time for tuning in gstdvbsrc.c. | Austin Lund | 1 | -1/+3 | |
Some devices take a while to tune and 500ms was too short to detect successful tuning. As well as waiting for 5 seconds each 100ms the status is checked and the loop is broken out of when tuning has suceeded. | |||||
2009-07-16 | oss4: Attempt to fix a compiler warning | Jan Schmidt | 1 | -4/+3 | |
Don't store a const gchar * in a non-const gchar * local var. Also, make the translation string function static since it's only used in the one file. | |||||
2009-07-15 | vdpau: Fix a compiler warning about uninitialised variable use. | Jan Schmidt | 1 | -3/+2 | |
2009-07-15 | oss4: Enhancements to the mixer and audio output | Garrett D'Amore | 4 | -239/+270 | |
Code cleanups, general improvements, support for the new mixer flags in latest gst-plugins-base. Fixes: #584252 Patch By: Brian Cameron <brian.cameron@sun.com> Patch By: Garrett D'Amore <garrett.damore@sun.com> | |||||
2009-06-23 | VDPAU: Move I420/YV12 to the front of the caps. Add debug. | Jan Schmidt | 2 | -10/+13 | |
Make I420/YV12 caps be preferred when downloading to YUV buffers, when possible, by listing them first in the set of output caps. Add some debug in the caps selection code. | |||||
2009-06-20 | VDPAU: Add some debug statements | Jan Schmidt | 2 | -0/+18 | |
2009-06-20 | VDPAU: Fix build flags to pull in gst-plugins-base libs | Jan Schmidt | 1 | -2/+2 | |
2009-06-20 | VDPAU: Refactor the error path to a common output, and fix a leak. | Jan Schmidt | 1 | -16/+24 | |
Don't leak the input buffer on errors. Add some debug statements. | |||||
2009-06-20 | VDPAU: Fix up caps in vdpaumpegdec. Remove extra semicolon | Jan Schmidt | 1 | -4/+3 | |
Fix a typo in the caps for the VDPAU mpeg decoder (chroma_type->chroma-type) and use the GST_VDP_VIDEO_CAPS for the pad template. Remove a stray semicolon. | |||||
2009-06-20 | VDPAU: Enhance the configure tests | Jan Schmidt | 1 | -2/+3 | |
Check for the VDPAU headers in /usr/include/nvidia as they are on some platforms (Fedora/rpmfusion). Also check that the libvdpau library is available. | |||||
2009-06-20 | vdpaumpegdec: use fixed src caps | Carl-Anton Ingmarsson | 1 | -0/+1 | |
2009-06-20 | vdpaumpegdec: drop all frames before a GOP when we seek | Carl-Anton Ingmarsson | 2 | -1/+26 | |
2009-06-20 | vdpaumpegdec: small cleanup | Carl-Anton Ingmarsson | 1 | -4/+3 | |
2009-06-20 | vdpau: s/IS_VDPAU/IS_VDP | Carl-Anton Ingmarsson | 7 | -13/+13 | |
2009-06-20 | vdpaumpegdec: send newsegment event if only the rate has been updated | Carl-Anton Ingmarsson | 1 | -3/+11 | |
2009-06-20 | vdpaumpegdec: use mutex to protect mpeg_dec->seeking from concurrent access | Carl-Anton Ingmarsson | 2 | -1/+16 | |
2009-06-20 | vdpaumpegdec: use gst_pad_get_parent for threadsafety | Carl-Anton Ingmarsson | 1 | -23/+41 | |
2009-06-20 | vdpaumpegdec: further work on seeking | Carl-Anton Ingmarsson | 1 | -34/+27 | |
2009-06-20 | vdpaumpegdec: small cleanups | Carl-Anton Ingmarsson | 2 | -29/+32 | |
2009-06-20 | vdpaumpegdec: set GST_BUFFER_FLAG_DELTA_UNIT on non I_FRAME's | Carl-Anton Ingmarsson | 1 | -0/+8 | |
2009-06-20 | vdpaumpegdec: rename gstvdpmpegdecoder.[ch] to gstvdpmpegdec.[ch] | Carl-Anton Ingmarsson | 4 | -4/+4 | |
2009-06-20 | vdpaumpegdec: rename GstVdpMpegDecoder to GstVdpMpegDec | Carl-Anton Ingmarsson | 3 | -94/+90 | |
2009-06-20 | vdpaumpegdec: pass buffer size directly to gst_vdp_mpeg_decoder_decode | Carl-Anton Ingmarsson | 2 | -5/+4 | |
2009-06-20 | vdpaumpegdec: small cleanup | Carl-Anton Ingmarsson | 1 | -1/+2 | |
2009-06-20 | vdpaumpegdec: calculate byterate from the size of the incoming data | Carl-Anton Ingmarsson | 2 | -12/+38 | |
2009-06-20 | vdpaumpegdec: print frame_nr in debug print | Carl-Anton Ingmarsson | 1 | -2/+4 | |
2009-06-20 | vdpaumpegdec: interlaced fixes | Carl-Anton Ingmarsson | 1 | -1/+3 | |
2009-06-20 | vdpaumpegdec: only set base duration once | Carl-Anton Ingmarsson | 1 | -7/+7 | |
2009-06-20 | vdpaumpegdec: don't send the EVENT_NEWSEGMENT downstream if we're seeking | Carl-Anton Ingmarsson | 1 | -1/+8 | |
2009-06-20 | vdpaumpegdec: implement seeking | Carl-Anton Ingmarsson | 2 | -8/+166 | |
2009-06-20 | vdpaumpegdec: change a GST_DEBUG to GST_WARNING | Carl-Anton Ingmarsson | 1 | -1/+1 | |