- 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
-
Tim-Philipp Müller authored
Otherwise things won't work too well when compiling with -DG_DISABLE_ASSERT (as we do for pre-releases and releases).
-
Tim-Philipp Müller authored
We use -DG_DISABLE_ASSERT for the pre-releases, which makes these warnings pop up in cases that were previously covered by g_assert_not_reached() and the like: tvtime/greedyh.c:801:14: warning: 'scanline' may be used uninitialized in this function matroska-mux.c:501:19: warning: 'context' may be used uninitialized in this function
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
-
Robert Swain authored
The v4l2object formats list was being obtained into a local variable and then still used from the context. Make use of the local variable.
-
Robert Swain authored
GCC 4.6.x complains about such variable usage. Unused but set variables were removed except that gst_oss4_mixer_slider_set_mute () now returns the value from the call to gst_oss4_mixer_set_control_val ().
-