- Jun 15, 2011
-
-
Tim-Philipp Müller authored
This is an ad-hoc release that is almost identical to 0.10.29: * work around GLib atomic ops API change * better handling of malformed buffers in RTP depayloders * some minor compilation fixes
-
Raimo Järvi authored
Fixes: #652144. gstudpnetutils.h:32:0: error: "WINVER" redefined /usr/i686-w64-mingw32/sys-root/mingw/include/_mingw.h:231:0: note: this is the location of the previous definition
-
David Schleef authored
See #651514 for details.
-
Jose Antonio Santos Cadenas authored
This commit checks if the value returned by gst_rtp_buffer_get_payload_buffer and gst_rtp_buffer_get_payload_subbuffer is NULL before using it.
-
Pino Toscano authored
GNU Hurd for example doesn't define it.
-
Sebastian Dröge authored
Otherwise wavenc will fail if upstream decides to set equivalent caps or caps with additional information later. Thanks to Alexander Schremmer for finding this bug.
-
- May 10, 2011
-
-
Tim-Philipp Müller authored
Highlights: - amrparse, aacparse, ac3parse, flacparse, mpegaudioparse, dcaparse audio parsers (moved from -bad) - muxers now mux based on running time - ISO MP4 muxers: mp4mux/3gppmux/qtmux/mj2mux (moved from -bad) - new matroskaparse element - new v4l2radio element - rtpsession: support RTCP Early Feedback (the AVPF profile) - orc 0.4.14 or newer recommended - many other fixes and improvements
-
- May 05, 2011
-
-
Edward Hervey authored
You would end up on some architectures with 0 being written out instead of the proper value. https://bugzilla.gnome.org/show_bug.cgi?id=649449
-
- May 04, 2011
-
-
Mark Nauwelaerts authored
... as it will not be written anyway. Fixes #648937 (?).
-
- May 02, 2011
-
-
Tim-Philipp Müller authored
-
- May 01, 2011
-
-
Tom Janiszewski authored
A duration tag gets inserted only for streamable=false, so only update/write the duration later if we actually inserted that tag, otherwise we write garbage into other tags. https://bugzilla.gnome.org/show_bug.cgi?id=649060
-
- Apr 30, 2011
-
-
Tim-Philipp Müller authored
-
-
- Apr 27, 2011
-
-
Tim-Philipp Müller authored
-
- Apr 26, 2011
-
-
Wim Taymans authored
-
- Apr 25, 2011
-
-
-
David Schleef authored
Fixes #606662.
-
David Schleef authored
Now that we depend on (what will be) -base-0.10.33.
-
- Apr 24, 2011
-
-
Tim-Philipp Müller authored
Temporary workaround until we fix this properly and check for the ObjC warning/error flags instead of just passing CFLAGS to the ObjC compiler. https://bugzilla.gnome.org/show_bug.cgi?id=643939
-
-
Tim-Philipp Müller authored
From c3cafe1 to 46dfcea
-
- Apr 21, 2011
-
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
-
- Apr 20, 2011
-
-
Olivier Crête authored
Remove bits that were meant to suppport RTCP FIR https://bugzilla.gnome.org/show_bug.cgi?id=648160
-
- Apr 19, 2011
-
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
-
-
- Apr 18, 2011
-
-
Sebastian Dröge authored
-
Sebastian Dröge authored
-
Sebastian Dröge authored
-
Sebastian Dröge authored
-
- Apr 17, 2011
-
-
Tim-Philipp Müller authored
-
- Apr 16, 2011
-
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
Refuse h264 caps without stream-format and codec_data fields for now, to avoid creating broken files. This might cause some pipelines that worked previously to fail. However, the move from -bad to -good is our only chance to fix this up, so make it strict for now. We can always change it back to be less strict in future. https://bugzilla.gnome.org/show_bug.cgi?id=647919
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
Don't use g_assert() for error handling, even if they're highly unlikely. Either we *know* that something can't happen, in which case we should just not handle it, or we think something can happen, but it is very very unlikely that it will ever happen, in which case we should handle it like any other error instead of asserting. g_assert() is best left for conditions we have control of, like checking internal consistency of our code, not checking return values of external code. Fixes a bunch of warnings when compiling with -DG_DISABLE_ASSERT: gstrtpgsmpay.c: In function 'gst_rtp_gsm_pay_handle_buffer': gstrtpgsmpay.c:130:17: warning: variable 'rtpgsmpay' set but not used gstspeexenc.c: In function 'gst_speex_enc_encode': gstspeexenc.c:904:19: warning: variable 'written' set but not used pulsesink.c: In function 'gst_pulsesink_change_state': pulsesink.c:2725:9: warning: variable 'res' set but not used pulsesrc.c: In function 'gst_pulsesrc_change_state': pulsesrc.c:1253:7: warning: variable 'e' set but not used
-
Tim-Philipp Müller authored
Caused by -DG_DISABLE_ASSERT
-