summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-11-16rename eventsrenme-eventsWim Taymans66-238/+238
2011-11-15opusenc: fix pointer mismatch in memcpy on drainVincent Penquerc'h1-1/+1
2011-11-15_query_peer_*() -> _peer_query_*()Wim Taymans2-2/+2
2011-11-15_peer_get_caps() -> _peer_query_caps()Wim Taymans4-4/+4
2011-11-15change getcaps to queryWim Taymans4-22/+177
2011-11-14opus: port to encoder/decoder base classesVincent Penquerc'h5-1252/+513
2011-11-13Update for GstURIHandler get_protocols() changesTim-Philipp Müller7-62/+97
2011-11-11opus: port to 0.11Vincent Penquerc'h3-172/+193
2011-11-11Merge branch 'master' into 0.11Wim Taymans2-7/+54
2011-11-10mpegvideoparse: add support for progressive framesMatej Knopp2-7/+54
https://bugzilla.gnome.org/show_bug.cgi?id=663782
2011-11-10audiovisualizer: port to 0.11Stefan Sauer7-190/+493
2011-11-10gme: Remove query_typesEdward Hervey1-13/+0
2011-11-10Merge branch 'master' into 0.11Wim Taymans1-2/+2
2011-11-10update for adapter api changeWim Taymans1-1/+1
2011-11-10opusenc: fix bandwidth property type mismatchVincent Penquerc'h1-2/+2
2011-11-10Merge branch 'master' into 0.11Wim Taymans2-22/+72
2011-11-10chain up in set_clockWim Taymans8-12/+22
2011-11-09camerabin2: protect image location list with mutexThiago Santos2-10/+13
Rename the image taglists' mutex into image capture mutex and use it also for the image capture list to prevent concurrent access from different threads (application and capture threads).
2011-11-09camerabin2: Handle null taglists for imagesThiago Santos1-24/+32
Add NULL and check for them to the image capture taglist list, representing that a capture has no application tags set.
2011-11-09camerabin2: Don't store preview location if preview isn't requestedThiago Santos1-10/+11
Do not store preview location is post-previews is false, this would mess up preview naming in case application switches between enabling and disabling previews
2011-11-09camerabin2: Avoid blocking in start-capture and send application tags laterLasse Laukkanen2-7/+45
Tags are currently sent from start-capture, which is run in the application thread. For images we can delay the tags pushing to the buffer probe and push the tags with the location event and reduce start-capture time.
2011-11-09Merge branch 'master' into 0.11Wim Taymans0-0/+0
2011-11-09Merge branch 'master' into 0.11Wim Taymans20-76/+216
Conflicts: gst/colorspace/colorspace.c
2011-11-09fix documentation typoThijs Vermeir1-1/+1
2011-11-09dtmf: fix compiler warning for uninitialized valuesThijs Vermeir2-6/+8
2011-11-09remove query typesWim Taymans3-47/+0
2011-11-08dtmfsrc: Reject start/stop requests that come out of orderOlivier Crête4-10/+32
2011-11-08dtmf: Post messages when starting to send/receive DTMFOlivier Crête2-3/+88
This way, the UI can display the DTMF events as they as being sent.
2011-11-08camerabin2: Decrement processing counter when message handling finishesThiago Santos1-4/+8
Some messages might be interesting to applications, so we can only decrement the processing counter and send the idle notification when those messages are posted on the pipline's bus
2011-11-08camerabin2: update tests to set post-previews to trueThiago Santos1-1/+1
Makes most of camerabin2 tests pass again
2011-11-08update for probe api changesWim Taymans4-21/+17
2011-11-08camerabin2: change post-previews property default value as falseLasse Laukkanen1-1/+1
Generating and posting preview image always comes with a performance penalty so set default value as false. The preview-caps property that defines the preview image format is also NULL by default, so instead of generating preview image of unspecified format by default explicit action from application should be required for enabling preview image posting feature. Application also has to add custom code to be able to handle preview messages on its message handling function anyway.
2011-11-07Add Android buildsystem hooks for codecparsersReynaldo H. Verdejo Pinochet1-0/+2
2011-11-07colorspace: fix r210 writing only half a scanlineVincent Penquerc'h1-1/+1
https://bugzilla.gnome.org/show_bug.cgi?id=663203
2011-11-07adpcm: add more consts, espcially for static const dataVincent Penquerc'h2-13/+14
2011-11-07dvdbasebin: fix for pad probes updateWim Taymans1-2/+3
2011-11-07autoconvert: merge caps instead of using unionVincent Penquerc'h1-12/+4
It's a lot faster, and preserves caps ordering. https://bugzilla.gnome.org/show_bug.cgi?id=663346
2011-11-07tiger: add a 'silent' property to skip renderingVincent Penquerc'h2-2/+17
https://bugzilla.gnome.org/show_bug.cgi?id=662857
2011-11-07mpegdemux: catch section lengths extending past the buffer lengthVincent Penquerc'h1-0/+6
This is probably the cause for an occasional crash while streaming MPEG. Blind fix after staring at the code and following logic, so may or may not fix the issue, I cannot test.
2011-11-07resindvdsrc: do not try to seek before the first chapterVincent Penquerc'h1-1/+6
https://bugzilla.gnome.org/show_bug.cgi?id=589064
2011-11-07celtenc: fix latency queryVincent Penquerc'h1-1/+1
https://bugzilla.gnome.org/show_bug.cgi?id=616421
2011-11-07opusenc: fix latency queryVincent Penquerc'h1-1/+1
This makes live 'audiosrc ! opusenc ! opusdec ! audiosink' pipelines actually work without all audio being dumped. https://bugzilla.gnome.org/show_bug.cgi?id=660999
2011-11-07opusenc: use debug level for debug info, not errorVincent Penquerc'h1-2/+2
https://bugzilla.gnome.org/show_bug.cgi?id=660999
2011-11-07celtenc: fix calculation of filler data sizeVincent Penquerc'h1-1/+1
https://bugzilla.gnome.org/show_bug.cgi?id=660469
2011-11-07opusenc: fix calculation of filler data sizeVincent Penquerc'h1-1/+1
https://bugzilla.gnome.org/show_bug.cgi?id=660469
2011-11-07mpegpsdemux: fix zero length packet handlingVincent Penquerc'h1-1/+3
https://bugzilla.gnome.org/show_bug.cgi?id=631416
2011-11-07tests: mark test input data constVincent Penquerc'h1-3/+3
https://bugzilla.gnome.org/show_bug.cgi?id=663235
2011-11-07mpegvideoparser: input data is const, mark it soVincent Penquerc'h2-14/+14
2011-11-07tests: allow building with older versions of glib (g_list_free_full)Vincent Penquerc'h1-4/+8
https://bugzilla.gnome.org/show_bug.cgi?id=663234
2011-11-07Merge branch 'master' into 0.11Wim Taymans2-2/+9