Stefan Sauer
9b9d1a6119
Revert "doc: Workaround gtkdoc issue"
...
This reverts commit df7ef3c35d
.
This is fixed by the gtk-doc 1.23 release.
2015-05-18 20:01:49 +02:00
Tim-Philipp Müller
8304893d06
appsrc: optimise caps changing when previously-set caps have not taken effect yet
...
Only negotiate/change caps once when setting caps twice and
the first-set caps have not been used yet.
Based on patch by Eunhae Choi.
https://bugzilla.gnome.org/show_bug.cgi?id=747517
2015-05-18 13:37:54 +01:00
Vineeth T M
b1bc2af766
xvimagesink: fix pool leak
...
During set caps when config fails, the referenced newpool
is not unref ed.
https://bugzilla.gnome.org/show_bug.cgi?id=749530
2015-05-18 10:40:37 +03:00
eunhae choi
1b755eb272
playbin: check the flags before set again
...
check the previous flags of playsink to avoid the reconfigure of playsink repeatedly
https://bugzilla.gnome.org/show_bug.cgi?id=749528
2015-05-18 10:01:04 +03:00
Nicolas Dufresne
df7ef3c35d
doc: Workaround gtkdoc issue
...
With gtkdoc 1.22, the XML generator fails when a itemizedlist is
followed by a refsect2. Workaround the issue by wrapping the refsect2
into para.
2015-05-16 23:33:55 -04:00
Stefan Sauer
015bd9285a
playback: use the new gst_object api
...
Use gst_object_has_as_anchestor instead of the now deprecated _has_ancestor.
2015-05-15 14:49:47 +02:00
Tim-Philipp Müller
4343c3bff8
docs: fix up example pipeline
2015-05-10 11:42:21 +01:00
Tim-Philipp Müller
ec5c93f169
docs: update element example pipelines
...
- gst-launch -> gst-launch-1.0
- use autoaudiosink and audiovideosink more often
- review pipeline examples and descriptions
2015-05-10 11:38:19 +01:00
Jan Schmidt
bf683b9a6c
video: Update win32 exports for new libgstvideo API
2015-05-10 10:51:09 +10:00
Vivia Nikolaidou
327efa9805
videoconvert: Expose some properties from the videoconverter API
...
Expose chroma resampler, alpha mode, alpha value, chroma mode, matrix mode,
gamma mode and primaries mode from the videoconverter API.
https://bugzilla.gnome.org/show_bug.cgi?id=749105
2015-05-08 15:17:06 +02:00
Vivia Nikolaidou
c9cfd0196f
video-converter: Change some implicit string enums to real enums
...
GST_VIDEO_CONVERTER_OPT_ALPHA_MODE, GST_VIDEO_CONVERTER_OPT_CHROMA_MODE,
GST_VIDEO_CONVERTER_OPT_MATRIX_MODE, GST_VIDEO_CONVERTER_OPT_GAMMA_MODE and
GST_VIDEO_CONVERTER_OPT_PRIMARIES_MODE were G_TYPE_STRING with only a few valid
options. Changed those to real enums.
https://bugzilla.gnome.org/show_bug.cgi?id=749104
2015-05-08 15:13:54 +02:00
Sebastian Dröge
0c43005f54
audiodecoder: Also negotiate with downstream if needed before handling a GAP event
2015-05-08 15:07:56 +02:00
Sebastian Dröge
f74524b58d
videodecoder: Also negotiate with downstream if needed before handling a GAP event
2015-05-08 15:07:56 +02:00
Sebastian Dröge
21b5741251
videodecoder: Try to be smarter when clipping buffers without duration/framerate to the segment
...
2 second frame duration is rather unlikely... but if we don't clip
away buffers that far before the segment we can cause the pipeline to
lockup. This can happen if audio is properly clipped, and thus the
audio sink does not preroll yet but the video sink prerolls because
we already outputted a buffer here... and then queues run full.
In the worst case we will clip one buffer too many here now if no
framerate is given, no buffer duration is given and the actual
framerate is less than 0.5fps.
Fixes seeking on HLS/DASH streams, when seeking into the middle of
fragments and having no framerate/buffer duration.
2015-05-06 12:42:33 +02:00
Guillaume Desmottes
ca100d117c
xvimagesink: fix navigation event leak when early returning
...
Create the event *after* the early return check so it's not leaked.
https://bugzilla.gnome.org/show_bug.cgi?id=748903
2015-05-05 13:54:08 -03:00
Guillaume Desmottes
9d85e23c3d
xvimagesink: fix navigation event leak when not handled
...
gst_navigation_message_new_event() is *not* consuming the event so we should
always drop our extra reference.
https://bugzilla.gnome.org/show_bug.cgi?id=748903
2015-05-05 13:54:08 -03:00
Guillaume Desmottes
f90bb8140d
navigation: fix structure leak if subclass doesn't implement send_event()
...
The send_event() implementation is supposed to consume @structure.
https://bugzilla.gnome.org/show_bug.cgi?id=748903
2015-05-05 13:54:08 -03:00
Sebastian Dröge
a73631a29d
streamsynchronizer: Don't override segment.base from upstream with 0
...
Upstream might want to use it to properly map timestamps to running/stream
times, if we just override it with 0 synchronization will be just wrong.
For this we remove some old 0.10 code related to segment accumulation, and
remove some more code that is useless now, and accumulate the group start time
(aka segment.base offset) manually now.
https://bugzilla.gnome.org/show_bug.cgi?id=635701
2015-05-05 15:35:46 +02:00
Sebastian Dröge
1a2c590cd2
rtpbasedepayload: Add some debug output
2015-05-05 13:16:05 +02:00
Aurélien Zanelli
c52adc8fcc
video: add NV61 format support
...
https://bugzilla.gnome.org/show_bug.cgi?id=746466
2015-05-04 20:37:59 +01:00
Tim-Philipp Müller
6957811c11
docs: add new video API to docs
2015-05-04 20:33:23 +01:00
Jan Schmidt
62bdb117ac
video: check colorimetry and chroma_site equality in gst_video_info_is_equal()
...
Add VideoInfo accessors for colorimetry and chroma_site and use them
when checking the equality of two GstVideoInfo
2015-05-04 13:16:27 +10:00
Jan Schmidt
14fafc74a3
video-color: Add gst_video_colorimetry_is_equal()
...
Add a function for comparing the equality of 2 colorimetry
structures.
2015-05-04 13:16:27 +10:00
Young Han Lee
bd40d2e33f
oggdemux: remove unused code
...
These lines have done nothing for about 10 years.
https://bugzilla.gnome.org/show_bug.cgi?id=748820
2015-05-03 13:33:01 +01:00
Sreerenj Balachandran
6af56187e8
pbutils: Use more strict profile checking for hevc
...
Use the profile_idc value to set the profile string in caps.
Don't use compatibility flags for this purpose.
https://bugzilla.gnome.org/show_bug.cgi?id=747613
2015-04-30 21:42:34 +02:00
Ravi Kiran K N
955dc5258f
video-converter: Remove unused macro
...
Remove unused macro GET_TMP_LINE
https://bugzilla.gnome.org/show_bug.cgi?id=748687
2015-04-30 20:24:32 +01:00
Tim-Philipp Müller
5a8d1d2246
gst-play: add some more key navigation mappings
...
And don't feed multi-character key descriptors to the
event handler, it won't be what it expects.
2015-04-29 15:47:46 +01:00
Tim-Philipp Müller
44e571c5e9
navigation: sprinkle some since markers and add new API to .def file
...
https://bugzilla.gnome.org/show_bug.cgi?id=747245
2015-04-29 15:30:26 +01:00
Edward Hervey
bba3f57c8b
tools: Add mouse/keyboard handling from messages
...
Allows the user to control playback with the window in focus
https://bugzilla.gnome.org/show_bug.cgi?id=747245
2015-04-29 15:47:49 +02:00
Edward Hervey
c90a3ac468
xvimagesink: Post unhandled navigation events on the bus
...
https://bugzilla.gnome.org/show_bug.cgi?id=747245
2015-04-29 15:47:49 +02:00
Edward Hervey
01e2a2152d
video: Add a new "event" navigation message type
...
This will be useful for elements that wish to post unhandled navigation
events on the bus to give the application a chance to do something with
it
https://bugzilla.gnome.org/show_bug.cgi?id=747245
2015-04-29 15:47:49 +02:00
Wim Taymans
b3db5883e1
video-info: expose InterlaceMode conversion to/from string
...
Expose the methods used to convert a GstVideoInterlaceMode to and
from a string.
2015-04-28 12:01:02 +02:00
Luis de Bethencourt
69f66aff9e
Rename property enums from ARG_ to PROP_
...
Property enum items should be named PROP_ for consistency and readability.
2015-04-27 11:27:00 +01:00
Matthieu Bouron
9dfe40d740
videoconvert: Keep colorimetry and chroma-site fields if passthrough
...
https://bugzilla.gnome.org/show_bug.cgi?id=748141
2015-04-27 11:20:36 +02:00
Sebastian Dröge
9e480d11a2
audio: Change the remaining "samples" in the ::delay() vfunc docs to "frames"
...
https://bugzilla.gnome.org/show_bug.cgi?id=748289
2015-04-27 10:08:17 +02:00
Tim-Philipp Müller
508ae9c2fc
tests: tcp: remove SOCK_CLOEXEC which causes build problems on OS/X
...
It's not needed here.
https://bugzilla.gnome.org/show_bug.cgi?id=747692
2015-04-26 20:14:53 +01:00
Sebastian Dröge
531b9ba951
audio: The delay vfunc returns the number of frames, not samples
...
https://bugzilla.gnome.org/show_bug.cgi?id=748289
2015-04-26 21:08:14 +02:00
Tim-Philipp Müller
c680e324bc
Remove obsolete Android build cruft
...
This is not needed any longer.
2015-04-26 18:42:34 +01:00
Tim-Philipp Müller
0bedfc51a4
tests: typefindfunctions: add test for UTF-16 MSS manifest typefinding
2015-04-26 14:45:44 +01:00
Tim-Philipp Müller
1638859627
typefinding: don't read more data than needed in MSS typefinder
2015-04-26 14:45:44 +01:00
Tim-Philipp Müller
9ef16721ed
typefinding: detect MSS manifests without using g_convert()
...
Embedded systems often have limited charset conversion
functionality, so don't rely on g_convert() (i.e. iconv)
for UTF-16 to UTF-8 conversions, we can easily enough do
that ourselves by converting to native endianness and
then using GLib's helper functions.
2015-04-26 14:41:30 +01:00
Stefan Sauer
7e8e020cfd
audiovisualizer: fix the license from GPL to LGPL
...
This was a copy'n'paste buf in the initial commit done by myself.
2015-04-25 18:45:50 +02:00
Guillaume Desmottes
2b0b08b74c
xmptag: fix invalid reads in GST_DEBUG statement
...
Don't try to print a string that is not NUL-terminated. This
log line does not really seem useful so let's just drop it.
https://bugzilla.gnome.org/show_bug.cgi?id=748413
2015-04-24 17:32:51 +01:00
Luis de Bethencourt
df08f5eabe
remove unused enum items PROP_LAST
...
This were probably added to the enums due to cargo cult programming and are
unused. Removing them.
2015-04-24 17:11:01 +01:00
Wonchul Lee
5dffb8a311
audiodecoder: Add sink and src query virtual method
...
API: GstAudioDecoderClass::src_query()
API: GstAudioDecoderClass::sink_query()
https://bugzilla.gnome.org/show_bug.cgi?id=747293
2015-04-23 19:29:20 +01:00
Tim-Philipp Müller
2891509ec4
tests: define GST_CHECK_TEST_ENVIRONMENT_BEACON
...
Make sure the test environment is set up.
https://bugzilla.gnome.org//show_bug.cgi?id=747624
2015-04-23 15:57:37 +01:00
Tim-Philipp Müller
c0ecdd4b0c
configure: bump automake requirement to 1.14 and autoconf to 2.69
...
This is only required for builds from git, people can still
build tarballs if they only have older autotools.
https://bugzilla.gnome.org//show_bug.cgi?id=747624
2015-04-23 15:42:41 +01:00
Tim-Philipp Müller
0cb6a439da
Update .gitignore
2015-04-23 15:42:29 +01:00
Ravi Kiran K N
0ff9b1e276
video-converter: n_lines member should be a guint not a boolean
...
https://bugzilla.gnome.org/show_bug.cgi?id=748348
2015-04-23 13:30:45 +01:00
Guillaume Desmottes
d31472fde7
oggdemux: fix event leaks
...
gst_event_replace() takes its own reference on the event so we should drop
ours after creating and storing an event using it.
This fix leaks which can be reproduced using the
validate.http.media_check.vorbis_theora_1_ogg scenario.
https://bugzilla.gnome.org/show_bug.cgi?id=748247
2015-04-23 11:02:45 +01:00