summaryrefslogtreecommitdiff
path: root/ext/mimic
Commit message (Collapse)AuthorAgeFilesLines
* mimdec: Print invalid fourcc in error message in hexSebastian Rasmussen2014-07-041-2/+2
| | | | | | | Previously this was printed as characters which caused later processing of the error message to sometimes warn about non-UTF-8 characters. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=732715
* mimdec: fix open error checkingVincent Penquerc'h2014-04-091-1/+1
| | | | Coverity 206364
* mimic: Ensure segment is sent before caps and bufferNicolas Dufresne2013-05-153-5/+13
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=700420
* gst: Add better support for static pluginsSebastian Dröge2013-04-151-1/+1
|
* ext: printf format fixes in debug and error messagesTim-Philipp Müller2013-04-081-2/+3
|
* Fix FSF addressTim-Philipp Müller2012-11-045-10/+10
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=687520
* Use gst_element_class_set_static_metadata()Tim-Philipp Müller2012-10-172-2/+2
| | | | | where possible. Avoids some string copies. Also re-indent some stuff. Also some indent fixes here and there.
* replace gst_element_class_set_details_simple with gst_element_class_set_metadataMark Nauwelaerts2012-09-142-2/+2
|
* mimic: Port to 0.11Olivier Crête2012-08-074-323/+223
|
* update for task api changeWim Taymans2012-06-201-1/+2
|
* gst: Update for GST_PLUGIN_DEFINE() API changesSebastian Dröge2012-04-051-1/+1
|
* mimic, opencv, vp8, acmmp3dec, linsys: Don't build static pluginsMart Raudsepp2011-11-111-0/+1
| | | | | | Pass --tag=disable-static to libtool everywhere where it's been forgotten https://bugzilla.gnome.org/show_bug.cgi?id=663768
* mimenc: Remove dead assignmentEdward Hervey2010-11-251-2/+0
|
* mimdec: Clear adapter when flushingOlivier Crête2010-06-021-1/+2
|
* mimdec: Stop decoding if can't pushOlivier Crête2010-06-021-0/+3
|
* mimdec: Flush adapter right ater using itOlivier Crête2010-06-021-2/+1
|
* mimenc: No need to do a try allocationOlivier Crête2010-06-021-1/+1
|
* mimenc: Document paused-mode propertyOlivier Crête2010-06-021-0/+9
|
* mimic: Use log loglevel for messages that are shown on every frameOlivier Crête2010-06-022-2/+2
|
* mimdec: Remove object lock usage, stream lock is enoughOlivier Crête2010-06-022-18/+2
|
* mimdec: Output framerate is unknownOlivier Crête2010-06-021-3/+3
|
* mimdec: Remove local state variable from instanceOlivier Crête2010-06-022-61/+42
|
* mimdec: Remove useless variableOlivier Crête2010-06-021-4/+3
|
* mimdec: Make caps a lot stricterOlivier Crête2010-06-021-2/+11
|
* mimenc: Set delta_unit flag on intra framesOlivier Crête2010-06-021-0/+3
|
* mimic: Initialize encoder/decoders in state change and setcaps where possibleOlivier Crête2010-06-022-72/+72
|
* mimic: Fix element detailsOlivier Crête2010-06-022-7/+10
|
* mimic: Hold element lock while accessing the clockOlivier Crête2010-06-021-2/+3
|
* mimic: Refactor tcp header creation to not make a separate bufferOlivier Crête2010-06-021-30/+24
|
* mimic: Function can't failOlivier Crête2010-06-021-7/+0
|
* mimic: Remove C++ style commentsOlivier Crête2010-06-022-3/+3
|
* mimic: Use GST_ELEMENT_ERROR when returning a flow errorOlivier Crête2010-06-022-13/+20
|
* mimic: Fix GST_MIM_*_CLASS macrosOlivier Crête2010-06-022-2/+2
|
* mimic: Warn if paused-mode is toggled while playingOlivier Crête2010-06-021-0/+3
|
* mimic: Add GST_DEBUG_FUNCPTR where appropriateOlivier Crête2010-06-022-7/+12
|
* mimic: Rename functions/macros to match class namesOlivier Crête2010-06-025-89/+87
|
* mimdec: Don't try to re-send the same event more than onceOlivier Crête2010-05-071-4/+4
|
* mimic: Push out newsegment from current timestamp if the incoming ts is validOlivier Crête2010-05-061-14/+21
| | | | | | Push out newsegment event with the timestamp from the incoming buffer if the incoming buffers have a valid timestamp but no valid newsegment event has been through.
* gst_element_class_set_details => gst_element_class_set_details_simpleBenjamin Otte2010-03-182-17/+12
|
* Clean up LDFLAGS, LIBS, CFLAGSTim-Philipp Müller2009-11-221-3/+3
| | | | | | | Fix order, fix variables that don't exist, like GST_LIBS_LIBS, use $(LIBM) instead of -lm, and move _LIBS from LDFLAGS to LIBADD. Spotted by Havard Graff.
* mimenc: Remove invalid todoOlivier Crête2009-10-061-1/+0
|
* mimenc: Write FOURCC as 32bitOlivier Crête2009-08-181-1/+1
|
* mimenc: USE GST_WRITE_*_LE macrosOlivier Crête2009-08-121-9/+9
|
* mimenc: Refuse to go playing in paused-mode without clockOlivier Crête2009-08-121-3/+12
| | | | | | | 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
* mimdec: Lock element before unlockingOlivier Crête2009-07-221-1/+2
|
* mimdec: Fix leaksOlivier Crête2009-07-221-6/+4
| | | | | Use gst_pad_new_from_static_template() to not leak the pad template Also properly chain up the finalize to the parent
* mimenc: Use gst_pad_new_from_static_templateOlivier Crête2009-07-221-6/+2
| | | | Prevents leak found by valgrind
* mimenc: Unref clockidOlivier Crête2009-07-221-0/+2
|
* mimdec: Don't overwrite valid timestampsOlivier Crête2009-07-221-1/+5
|
* Revert "mimdec: Ignore the timestamps inside the buffers"Olivier Crête2009-07-222-2/+97
| | | | This reverts commit 5e051fa98aeebdce2eca6b321ec1929e6f8fdf61.