summaryrefslogtreecommitdiffstats
path: root/gst
AgeCommit message (Collapse)AuthorFilesLines
2009-07-19real: differentiate between 'module does not exist' and genuine module ↵Tim-Philipp Müller2-11/+23
opening errors Don't log a GST_ERROR if one of the codec modules we were looking for doesn't exist. That's not a genuine error, but somewhat expected.
2009-07-18mpegdemux: Fix integer overflowMatijs van Zuijlen1-2/+2
This breaks playback of files >4 GB as the offset was a guint before. Changing it to a guint64 fixes this.
2009-07-17camerabin: use gst_caps_replace instead of separate callsStefan Kost1-10/+4
This fixes setting snapshot caps back to NULL also.
2009-07-17mpegtsparse: add component tag to the video component structure in eitZaheer Merali1-1/+3
2009-07-16mpegtsdemux: Don't use PIDs > MPEGTS_MAX_PIDAleksey Yulin1-1/+2
The mpegtsdemux streams array only has MPEGTS_MAX_PID entries and accessing one afterwards will result in crashes. Fixes bug #575672.
2009-07-16pesfilter: Permit unbounded packets for 0xfd (extended stream id).Josep Torra1-2/+47
Added parsing of PES extension related data. Fixes some VC1 related issues.
2009-07-15mpegtsparse: add component tag to structure for component messageZaheer Merali1-2/+4
2009-07-15camerabin: use nonbuffered io to save memcopiesStefan Kost2-7/+5
We write large blocks anyway, so no extra buffering please. Also use one g_object_set to set multiple properties on same object.
2009-07-15camerabin: track todo itemsStefan Kost1-0/+31
2009-07-15camerabin: leave image/video bin in ready when changing modeStefan Kost1-1/+1
2009-07-14amrparse: Sync baseparse changesSebastian Dröge2-29/+63
2009-07-14aacparse: Add function for the baseparse subclass to push buffers downstreamSebastian Dröge2-27/+60
Also handle the case gracefully where the subclass decides to drop the first buffers and has no caps set yet. It's still required to have valid caps set when the first buffer should be passed downstream.
2009-07-14baseparse: Fix seek event leakingSebastian Dröge1-2/+3
2009-07-08shapewipe: Add BGRA support for video in/outputSebastian Dröge1-18/+27
2009-07-08mpegtsdemux: Fix double freeSebastian Pölsterl1-3/+0
The hash table already makes sure that the stream is correctly free'd when elements are removed. Fixes bug #587819.
2009-07-08mpegtsparse: parse component tagMiguel Àngel Farré1-1/+7
2009-07-08mpegtsparse: parse carousel identifier descriptorMiguel Àngel Farré2-0/+12
2009-07-08mpegtsparse: add parsing of data broadcast descriptorsZaheer Abbas Merali2-0/+37
2009-07-02mpegtsparse: fix sdt parsing.Zaheer Abbas Merali1-9/+28
fix parsing of everything for each service from eit schedule flag on and also add a running-status parameter to the bus message structure.
2009-07-02shapewipe: Add support for ARGB video input/outputSebastian Dröge2-121/+159
2009-07-01rtpbin: use new method for netaddress to stringWim Taymans1-42/+5
2009-06-29rtpbin: do better cleanup of the src ghostpadsWim Taymans1-14/+30
Connect to the pad-removed signal of the ptdemux elements so that we remove the ghostpads for them. Fixes cleanup when going to NULL as well as when releasing the sinkpads. Fixes #561752
2009-06-29rtpsession: add a commentWim Taymans1-1/+1
2009-06-29rtpbin: add SDES propertyWim Taymans3-271/+39
Remove all individual SDES properties and use one sdes property that takes a GstStructure instead. This will allow us to add more custom stuff to the SDES messages later.
2009-06-29rtpbin: add SDES property that takes GstStructureWim Taymans4-105/+104
Remove all individual SDES properties and use one sdes property that takes a GstStructure instead. This will allow us to add more custom stuff to the SDES messages later.
2009-06-29rtpbin: removed old gstrtpclientWim Taymans4-547/+0
2009-06-29frei0r: Correctly clean up elements to be reusable and not leak memorySebastian Dröge3-0/+15
2009-06-29frei0r: In the filter plugins create the frei0r instances in create() before ↵Sebastian Dröge2-13/+12
playback starts
2009-06-29frei0r: In the mixer plugins create the frei0r instances in create() before ↵Sebastian Dröge1-12/+9
playback starts
2009-06-29frei0r: In the src plugins create the frei0r instances in create() before ↵Sebastian Dröge1-11/+10
playback starts
2009-06-29frei0r: Use fixed caps on the filter padsSebastian Dröge1-0/+2
This is required because we have to create a new frei0r instance for any caps changes and the instances can have history. Just creating a new instance during playback can result in bad output right after the caps change.
2009-06-27frei0r: Set the default property values correctlySebastian Dröge1-9/+38
2009-06-26camerabin: code cleanupsStefan Kost1-14/+10
Downgrade a WARNING to INFO. Use a bit more compact code. Add a fixme comment.
2009-06-26camerabin: just ref caps, we don't need a writable copyStefan Kost1-1/+3
2009-06-26camerabin: no need to ref and unref this temporarilyStefan Kost1-2/+3
2009-06-26camerabin: don't leak sink_caps if they would be any-capsStefan Kost1-22/+24
2009-06-26camerabin: don't leak preview imagesStefan Kost1-0/+1
2009-06-26camerabin: don't leak viewfinder-capsStefan Kost1-0/+2
2009-06-26camerabin: insert a few blank lines for readabilityStefan Kost1-1/+3
2009-06-26camerabin: don't leak messages and element refs in previewStefan Kost1-1/+14
2009-06-26freeze: don't build plugin static libChangwoo Ryu1-0/+1
Pass --tag=disable-static to libtool like we do for other plugins. Fixes #587023.
2009-06-25camerabin: don't leak requestpadsStefan Kost2-0/+9
Requestpads need to be released and unreffed. Add a comment in one case where we intentionaly don't unref.
2009-06-25capssetter: import element into -badMark Nauwelaerts4-3/+418
2009-06-25qtmux: Remove unused variable.Edward Hervey1-3/+0
2009-06-25qtmux: Fix debug statement.Edward Hervey1-1/+2
2009-06-24camerabin: buffer-alloc support fixes to image and video bin handlingLasse Laukkanen1-45/+29
Keep image bin in PAUSED state in image mode except when processing/saving (PLAYING/READY). Change output-selector to view finder before setting video bin to READY. Fix filename sent with img-done signal.
2009-06-24camerabin: fix setting mute when video bin elements haven't been createdLasse Laukkanen2-12/+16
2009-06-24camerabin: set image bin to PAUSED when starting captureLasse Laukkanen1-3/+3
Set image bin to PAUSED also when starting capture using photography interface.
2009-06-24camerabin: leave v4l2camsrc "capture-mode" as video mode when pausingLasse Laukkanen1-12/+0
2009-06-23shapewipe: Correctly handle 0/1 fpsSebastian Dröge1-1/+4