summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2015-06-22bayer: update ORC filesrhel-7.2Wim Taymans1-616/+760
Update ORC files with newest ORC to fix backup code generation error.
2014-12-18Release 1.4.5Sebastian Dröge83-1911/+1947
2014-12-18Update .po filesSebastian Dröge40-40/+40
2014-12-17avfvideosrc: Don't pretend to support reconfigurationSebastian Dröge1-0/+13
We will run into an assertion in set_caps() if we try to change caps while the source is already running. Don't try to find new caps in GstBaseSrc::negotiate() to prevent caps changes.
2014-12-17avfvideosrc: improve timestamping and latency reportingAlessandro Decina1-25/+37
Use AVF provided timings to timestamp output buffers. Use the running time at the time the first buffer is produced to base timestamps on. Report 1-frame latency based on the negotiated framerate instead of hardcoding 4ms latency.
2014-12-16vtenc: negotiate profile and level with downstreamAlessandro Decina2-3/+98
2014-12-16vtenc: report latencyAlessandro Decina2-1/+36
2014-12-16vtenc: Add properties to specify the maximum keyframe interval in frames and ↵Sebastian Dröge2-3/+88
seconds
2014-12-16vtenc: add quality propertyAlessandro Decina2-7/+49
2014-12-16vtenc: set profile and level in capsAlessandro Decina2-1/+9
2014-12-16vtenc: Fix conversion of the bitrate property and our internal bitrate storageSebastian Dröge1-2/+2
The property is in kbit/s and we store it in bit/s, so just multiply and divide by 1000. No need to put a factor of 8 in there. kVTCompressionPropertyKey_AverageBitRate is also in bit/s according to its documentation.
2014-12-16rectangle: clear rectangle struct before useWim Taymans6-17/+28
2014-12-15opusparse: fix frame size determinationVincent Penquerc'h1-0/+5
https://bugzilla.gnome.org/show_bug.cgi?id=741321
2014-12-15mpegtsbase: scan more bytes to find initial PCRsSudip Jain1-1/+1
Fixes playback of Samsung-Colorful-Variety-1080i.ts. https://bugzilla.gnome.org/show_bug.cgi?id=729768
2014-12-12mirror: Needs remap when the mode changes.Mathieu Duponchelle1-4/+17
This caused the user to think the mode wasn't taken into account.
2014-12-12configure: Do comparisons in a portable way with = instead of ==Thomas Klausner1-3/+3
https://bugzilla.gnome.org/show_bug.cgi?id=740953
2014-12-12audiomixer: Do not try to resize a buffer to a negative size on EOSThibault Saunier1-1/+2
2014-12-12decklink: HD1080i50 is 50 frames per secondSebastian Dröge1-1/+1
2014-12-12rawparse: send SEEKING query upstream firstWonchul Lee1-0/+5
Sometimes rawparse does not handle the seeking query properly, the rawparse should send the query upstream first. For example, upstream could support seeking in TIME format (but not in BYTE format), so the BYTE format seeking query that rawparse sends in push mode would fail. https://bugzilla.gnome.org/show_bug.cgi?id=722764
2014-11-24vtenc: let VT pick the bitrate by defaultAlessandro Decina1-3/+3
2014-11-24vtenc: add realtime and allow-frame-reordering propertiesAlessandro Decina2-1/+103
2014-11-20srtpdec: fix rtp/rtcp sink event memory leakAleix Conchillo Flaqué1-2/+8
https://bugzilla.gnome.org/show_bug.cgi?id=740451
2014-11-20vtenc: set H264_Baseline_AutoLevel on OSX as wellAlessandro Decina1-3/+4
2014-11-20vtdec: disable the reorder queue for baseline streamsAlessandro Decina1-0/+6
2014-11-20vtdec: Fix divide by zero in the picture buffer length calculationSebastian Dröge1-2/+5
2014-11-19gl: Use numeric OSX version instead of the macroSebastian Dröge2-2/+2
The macro is not defined on older OSX versions and evaluates to 0. https://bugzilla.gnome.org/show_bug.cgi?id=740201
2014-11-19gl/cocoa: Don't override the application delegateSebastian Dröge1-16/+0
Otherwise interesting things will happen in Cocoa applications, like infinite event loops that block the NSApplication loop forever. This was only needed for GNUStep and thus can safely be removed now.
2014-11-19gl/cocoa: Only use convertRectToBacking on OSX >= 10.7Sebastian Dröge1-0/+2
It does not exist before and older versions also don't have support for HiDPI displays anyway. https://bugzilla.gnome.org/show_bug.cgi?id=740201
2014-11-19gl/cocoa: Remove GNUStep supportSebastian Dröge4-118/+1
Until gcc and GNUStep properly support Objective-C blocks and other "new" features of Objective-C we can't properly support them without making the code much more ugly. https://bugzilla.gnome.org/show_bug.cgi?id=739152
2014-11-19vtenc: fix build on iOSAlessandro Decina1-2/+5
2014-11-19coremediabuffer: set ->pixel_buf for CVPixelBuffer buffersAlessandro Decina1-6/+4
Fix a bug for which we never actually set ->pixel_buf to non-NULL for CVPixelBuffer buffers.
2014-11-19vtenc: fix compilation on < 10.9Alessandro Decina1-0/+7
2014-11-19vtenc: enable the hw encoder on OSXAlessandro Decina1-3/+10
2014-11-15dvbbasebin: fix possible crash by passing 64 bits for 64-bit queue propertyTim-Philipp Müller1-1/+1
https://bugzilla.gnome.org/show_bug.cgi?id=740191
2014-11-15codecparsers: h264: fix derivation of MaxPicNum variable.Gwenole Beauchesne1-2/+2
The logic to compute the MaxPicNum variable was reversed. In paricular, MaxPicNum is double MaxFrameNum only if field_pic_flag is set to 1. https://bugzilla.gnome.org/show_bug.cgi?id=739291
2014-11-15decklinksink: Check the correct variable for failureSebastian Dröge1-1/+1
If we can't get an output, we would otherwise just use it later and crash.
2014-11-07glimagesink: clamp the resize width/height to >= 1 to avoid a GL errorMatthew Waters1-0/+3
2014-11-06Release 1.4.4Sebastian Dröge78-88/+1012
2014-11-06Update .po filesSebastian Dröge40-40/+40
2014-11-06h265parse: don't unnecesarily set src_capsSebastian Dröge1-13/+13
https://bugzilla.gnome.org/show_bug.cgi?id=739374
2014-11-06h264parse: don't unnecesarily set src_capsMatej Knopp1-13/+13
https://bugzilla.gnome.org/show_bug.cgi?id=739374
2014-11-05glimagesink: resize the viewport correctly on a caps changeMatthew Waters2-0/+16
with force-aspect-ratio=true, if the width or height changed, the viewport wasn't being updated to respect the new video width and height until a resize occured.
2014-11-04gl/cocoa: include gl3.h in configure too for consistency with gstglapi.hSebastian Dröge1-0/+4
2014-11-04gl/cocoa: use NSAutoreleasePool to free resize dataJulien Isorce1-0/+2
Otherwise when resizing the window you will also get messages like: class NSConcreteMapTable autoreleased with no pool in place - just leaking class NSConcreteValue autoreleased with no pool in place - just leaking class NSConcreteValue autoreleased with no pool in place - just leaking class __NSCFDictionary autoreleased with no pool in place - just leaking
2014-11-04gl/cocoa: include gl3.h to have GL_CONTEXT_PROFILE_MASKJulien Isorce1-0/+4
2014-11-04gl/cocoa: make sure to turn on frame rectangle changes notificationsJulien Isorce1-0/+1
Default value of property postsFrameChangedNotifications is YES but it is worth to explicitly enable it.
2014-11-04gl/cocoa: fix uncaught exception 'unrecognized selector sent to instance'Julien Isorce1-1/+1
Need to set the ':' as the reshape method now takes one parameter. For the story, the GstGLNSView was previously inheriting from NSOpenGLView which has a reshape function without any parameter. Now the GstGLNSView inherits from NSView and we re-use the reshape function manually.
2014-11-04gl/cocoa: fix compiler warningJulien Isorce1-4/+4
Use the reshape function after being defined. The other way would have been to declare the reshape function in the header. gstglwindow_cocoa.m: In function '-[GstGLNSView drawRect:]': gstglwindow_cocoa.m:555: warning: 'GstGLNSView' may not respond to '-reshape' gstglwindow_cocoa.m:555: warning: (Messages without a matching method signature gstglwindow_cocoa.m:555: warning: will be assumed to return 'id' and accept gstglwindow_cocoa.m:555: warning: '...' as arguments.)
2014-11-04gl/cocoa: Fix compiler warningSebastian Dröge1-2/+2
gstglwindow_cocoa.m: In function '-[GstGLNSView drawRect:]': gstglwindow_cocoa.m:555: warning: 'GstGLNSView' may not respond to '-reshape' gstglwindow_cocoa.m:555: warning: (Messages without a matching method signature gstglwindow_cocoa.m:555: warning: will be assumed to return 'id' and accept gstglwindow_cocoa.m:555: warning: '...' as arguments.)
2014-11-03glshader: Fix memory leakLuis de Bethencourt1-2/+2
Memory is only freed in the TRUE clause of the if conditional. Free in the else clause as well. Also, consolidate g_malloc + sprintf into a g_strdup_printf(). CID #1212171 https://bugzilla.gnome.org/show_bug.cgi?id=739368