2006-01-30 15:01:28 +00:00
|
|
|
/* GStreamer
|
|
|
|
*
|
|
|
|
* unit test for vorbisenc
|
|
|
|
*
|
2006-01-30 17:01:54 +00:00
|
|
|
* Copyright (C) 2006 Andy Wingo <wingo at pobox.com>
|
2006-01-30 15:01:28 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-03 23:05:09 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2006-01-30 15:01:28 +00:00
|
|
|
*/
|
2018-01-16 18:14:59 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2006-01-30 15:01:28 +00:00
|
|
|
|
|
|
|
#include <gst/check/gstcheck.h>
|
2006-07-21 15:59:24 +00:00
|
|
|
#include <gst/check/gstbufferstraw.h>
|
2006-01-30 15:01:28 +00:00
|
|
|
|
2006-05-28 09:37:18 +00:00
|
|
|
#ifndef GST_DISABLE_PARSE
|
|
|
|
|
2006-01-31 16:26:57 +00:00
|
|
|
#define TIMESTAMP_OFFSET G_GINT64_CONSTANT(3249870963)
|
2006-01-30 15:01:28 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
check_buffer_timestamp (GstBuffer * buffer, GstClockTime timestamp)
|
|
|
|
{
|
|
|
|
fail_unless (GST_BUFFER_TIMESTAMP (buffer) == timestamp,
|
|
|
|
"expected timestamp %" GST_TIME_FORMAT
|
|
|
|
", but got timestamp %" GST_TIME_FORMAT,
|
|
|
|
GST_TIME_ARGS (timestamp), GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buffer)));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
check_buffer_duration (GstBuffer * buffer, GstClockTime duration)
|
|
|
|
{
|
|
|
|
fail_unless (GST_BUFFER_DURATION (buffer) == duration,
|
|
|
|
"expected duration %" GST_TIME_FORMAT
|
|
|
|
", but got duration %" GST_TIME_FORMAT,
|
|
|
|
GST_TIME_ARGS (duration), GST_TIME_ARGS (GST_BUFFER_DURATION (buffer)));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
ogg muxing of vorbis and theora now has pages ordered correctly again, even with delays.
Original commit message from CVS:
ogg muxing of vorbis and theora now has pages ordered correctly again,
even with delays.
* ext/ogg/README:
updated with some examples
* ext/theora/theoraenc.c: (granulepos_to_timestamp),
(granulepos_add), (theora_buffer_from_packet):
* ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
(granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
(gst_vorbisenc_chain):
implement strategy from ext/ogg/README
* ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
(gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
(gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
(gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
Fix muxer so that oggz-validate is happy with all streams;
except for no eos mark, and the BOS page ordering
* tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
(check_buffer_granulepos):
* tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
update tests to check for OFFSET being set as requested
fixed type of granulepos, it's not a ClockTime
2006-03-05 22:57:58 +00:00
|
|
|
check_buffer_granulepos (GstBuffer * buffer, gint64 granulepos)
|
2006-01-30 15:01:28 +00:00
|
|
|
{
|
ogg muxing of vorbis and theora now has pages ordered correctly again, even with delays.
Original commit message from CVS:
ogg muxing of vorbis and theora now has pages ordered correctly again,
even with delays.
* ext/ogg/README:
updated with some examples
* ext/theora/theoraenc.c: (granulepos_to_timestamp),
(granulepos_add), (theora_buffer_from_packet):
* ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
(granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
(gst_vorbisenc_chain):
implement strategy from ext/ogg/README
* ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
(gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
(gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
(gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
Fix muxer so that oggz-validate is happy with all streams;
except for no eos mark, and the BOS page ordering
* tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
(check_buffer_granulepos):
* tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
update tests to check for OFFSET being set as requested
fixed type of granulepos, it's not a ClockTime
2006-03-05 22:57:58 +00:00
|
|
|
GstClockTime clocktime;
|
|
|
|
|
2006-01-30 15:01:28 +00:00
|
|
|
fail_unless (GST_BUFFER_OFFSET_END (buffer) == granulepos,
|
|
|
|
"expected granulepos %" G_GUINT64_FORMAT
|
|
|
|
", but got granulepos %" G_GUINT64_FORMAT,
|
|
|
|
granulepos, GST_BUFFER_OFFSET_END (buffer));
|
ogg muxing of vorbis and theora now has pages ordered correctly again, even with delays.
Original commit message from CVS:
ogg muxing of vorbis and theora now has pages ordered correctly again,
even with delays.
* ext/ogg/README:
updated with some examples
* ext/theora/theoraenc.c: (granulepos_to_timestamp),
(granulepos_add), (theora_buffer_from_packet):
* ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
(granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
(gst_vorbisenc_chain):
implement strategy from ext/ogg/README
* ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
(gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
(gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
(gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
Fix muxer so that oggz-validate is happy with all streams;
except for no eos mark, and the BOS page ordering
* tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
(check_buffer_granulepos):
* tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
update tests to check for OFFSET being set as requested
fixed type of granulepos, it's not a ClockTime
2006-03-05 22:57:58 +00:00
|
|
|
|
|
|
|
/* contrary to what we record as TIMESTAMP, we can use OFFSET to check
|
|
|
|
* the granulepos correctly here */
|
|
|
|
clocktime = gst_util_uint64_scale (GST_BUFFER_OFFSET_END (buffer), 44100,
|
|
|
|
GST_SECOND);
|
|
|
|
|
|
|
|
fail_unless (clocktime == GST_BUFFER_OFFSET (buffer),
|
|
|
|
"expected OFFSET set to clocktime %" GST_TIME_FORMAT
|
|
|
|
", but got %" GST_TIME_FORMAT,
|
|
|
|
GST_TIME_ARGS (clocktime), GST_TIME_ARGS (GST_BUFFER_OFFSET (buffer)));
|
2006-01-30 15:01:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* this check is here to check that the granulepos we derive from the timestamp
|
|
|
|
is about correct. This is "about correct" because you can't precisely go from
|
|
|
|
timestamp to granulepos due to the downward-rounding characteristics of
|
|
|
|
gst_util_uint64_scale, so you check if granulepos is equal to the number, or
|
|
|
|
the number plus one. */
|
|
|
|
static void
|
|
|
|
check_buffer_granulepos_from_endtime (GstBuffer * buffer, GstClockTime endtime)
|
|
|
|
{
|
ogg muxing of vorbis and theora now has pages ordered correctly again, even with delays.
Original commit message from CVS:
ogg muxing of vorbis and theora now has pages ordered correctly again,
even with delays.
* ext/ogg/README:
updated with some examples
* ext/theora/theoraenc.c: (granulepos_to_timestamp),
(granulepos_add), (theora_buffer_from_packet):
* ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
(granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
(gst_vorbisenc_chain):
implement strategy from ext/ogg/README
* ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
(gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
(gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
(gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
Fix muxer so that oggz-validate is happy with all streams;
except for no eos mark, and the BOS page ordering
* tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
(check_buffer_granulepos):
* tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
update tests to check for OFFSET being set as requested
fixed type of granulepos, it's not a ClockTime
2006-03-05 22:57:58 +00:00
|
|
|
gint64 granulepos, expected;
|
2006-01-30 15:01:28 +00:00
|
|
|
|
|
|
|
granulepos = GST_BUFFER_OFFSET_END (buffer);
|
|
|
|
expected = gst_util_uint64_scale (endtime, 44100, GST_SECOND);
|
|
|
|
|
|
|
|
fail_unless (granulepos == expected || granulepos == expected + 1,
|
|
|
|
"expected granulepos %" G_GUINT64_FORMAT
|
|
|
|
" or %" G_GUINT64_FORMAT
|
|
|
|
", but got granulepos %" G_GUINT64_FORMAT,
|
|
|
|
expected, expected + 1, granulepos);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_START_TEST (test_granulepos_offset)
|
|
|
|
{
|
|
|
|
GstElement *bin;
|
|
|
|
GstPad *pad;
|
|
|
|
gchar *pipe_str;
|
|
|
|
GstBuffer *buffer;
|
|
|
|
GError *error = NULL;
|
|
|
|
|
|
|
|
pipe_str = g_strdup_printf ("audiotestsrc timestamp-offset=%" G_GUINT64_FORMAT
|
2011-09-29 11:46:36 +00:00
|
|
|
" ! audio/x-raw,rate=44100"
|
2016-04-17 15:21:32 +00:00
|
|
|
" ! audioconvert ! vorbisenc ! fakesink name=sink", TIMESTAMP_OFFSET);
|
2006-01-30 15:01:28 +00:00
|
|
|
|
|
|
|
bin = gst_parse_launch (pipe_str, &error);
|
|
|
|
fail_unless (bin != NULL, "Error parsing pipeline: %s",
|
|
|
|
error ? error->message : "(invalid error)");
|
|
|
|
g_free (pipe_str);
|
|
|
|
|
|
|
|
/* get the pad */
|
|
|
|
{
|
2016-04-17 15:21:32 +00:00
|
|
|
GstElement *sink = gst_bin_get_by_name (GST_BIN (bin), "sink");
|
2006-01-30 15:01:28 +00:00
|
|
|
|
|
|
|
fail_unless (sink != NULL, "Could not get fakesink out of bin");
|
Don't use bad gst_element_get_pad().
Original commit message from CVS:
* ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
* gst/playback/decodetest.c: (new_decoded_pad_cb):
* gst/playback/gstdecodebin.c: (gst_decode_bin_init),
(try_to_link_1), (elem_is_dynamic), (close_link), (type_found),
(cleanup_decodebin):
* gst/playback/gstdecodebin2.c: (gst_decode_bin_init),
(connect_element), (gst_decode_group_control_demuxer_pad):
* gst/playback/gstplaybasebin.c: (queue_remove_probe),
(queue_out_of_data), (gen_preroll_element), (preroll_unlinked),
(mute_group_type):
* gst/playback/gstplaybin.c: (gst_play_bin_vis_blocked),
(gst_play_bin_set_property), (handoff), (gen_video_element),
(gen_text_element), (gen_audio_element), (gen_vis_element),
(remove_sinks), (add_sink), (setup_sinks):
* gst/playback/gstplaybin2.c: (pad_added_cb), (no_more_pads_cb):
* gst/playback/gstplaysink.c: (gst_play_sink_get_video_sink),
(gst_play_sink_get_audio_sink), (gst_play_sink_vis_unblocked),
(gst_play_sink_vis_blocked), (gst_play_sink_set_vis_plugin),
(gst_play_sink_get_vis_plugin), (gst_play_sink_set_mute),
(gen_video_chain), (gen_text_chain), (gen_audio_chain),
(gen_vis_chain), (gst_play_sink_reconfigure),
(gst_play_sink_set_font_desc), (gst_play_sink_get_font_desc),
(gst_play_sink_request_pad):
* gst/playback/gsturidecodebin.c: (type_found), (setup_source):
* gst/playback/test.c: (gen_video_element), (gen_audio_element),
(cb_newpad):
* gst/playback/test6.c: (new_decoded_pad_cb):
* tests/check/elements/audioconvert.c: (GST_START_TEST):
* tests/check/elements/audiorate.c: (test_injector_chain),
(do_perfect_stream_test):
* tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
* tests/check/elements/gdpdepay.c: (GST_START_TEST):
* tests/check/elements/gnomevfssink.c:
* tests/check/elements/textoverlay.c:
(notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2):
* tests/check/elements/videotestsrc.c: (GST_START_TEST):
* tests/check/libs/cddabasesrc.c: (GST_START_TEST):
* tests/check/pipelines/oggmux.c: (test_pipeline):
* tests/check/pipelines/streamheader.c: (GST_START_TEST):
* tests/check/pipelines/theoraenc.c: (GST_START_TEST):
* tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
* tests/examples/seek/scrubby.c: (make_wav_pipeline):
* tests/examples/seek/seek.c: (make_mod_pipeline),
(make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
(make_sid_pipeline), (make_parse_pipeline), (make_vorbis_pipeline),
(make_theora_pipeline), (make_vorbis_theora_pipeline),
(make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
(make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
(update_fill), (msg_buffering):
Don't use bad gst_element_get_pad().
2008-05-21 16:36:50 +00:00
|
|
|
pad = gst_element_get_static_pad (sink, "sink");
|
2006-01-30 15:01:28 +00:00
|
|
|
fail_unless (pad != NULL, "Could not get pad out of fakesink");
|
|
|
|
gst_object_unref (sink);
|
|
|
|
}
|
|
|
|
|
2006-07-21 15:59:24 +00:00
|
|
|
gst_buffer_straw_start_pipeline (bin, pad);
|
2006-01-30 15:01:28 +00:00
|
|
|
|
|
|
|
/* header packets should have timestamp == NONE, granulepos 0 */
|
2006-07-21 15:59:24 +00:00
|
|
|
buffer = gst_buffer_straw_get_buffer (bin, pad);
|
2006-06-02 17:01:02 +00:00
|
|
|
GST_DEBUG ("Got buffer in test");
|
2006-01-30 15:01:28 +00:00
|
|
|
check_buffer_timestamp (buffer, GST_CLOCK_TIME_NONE);
|
|
|
|
check_buffer_duration (buffer, GST_CLOCK_TIME_NONE);
|
|
|
|
check_buffer_granulepos (buffer, 0);
|
|
|
|
gst_buffer_unref (buffer);
|
2006-06-02 17:01:02 +00:00
|
|
|
GST_DEBUG ("Unreffed buffer in test");
|
2006-01-30 15:01:28 +00:00
|
|
|
|
2006-07-21 15:59:24 +00:00
|
|
|
buffer = gst_buffer_straw_get_buffer (bin, pad);
|
2006-01-30 15:01:28 +00:00
|
|
|
check_buffer_timestamp (buffer, GST_CLOCK_TIME_NONE);
|
|
|
|
check_buffer_duration (buffer, GST_CLOCK_TIME_NONE);
|
|
|
|
check_buffer_granulepos (buffer, 0);
|
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
|
2006-07-21 15:59:24 +00:00
|
|
|
buffer = gst_buffer_straw_get_buffer (bin, pad);
|
2006-01-30 15:01:28 +00:00
|
|
|
check_buffer_timestamp (buffer, GST_CLOCK_TIME_NONE);
|
|
|
|
check_buffer_duration (buffer, GST_CLOCK_TIME_NONE);
|
|
|
|
check_buffer_granulepos (buffer, 0);
|
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
|
|
|
|
{
|
ogg muxing of vorbis and theora now has pages ordered correctly again, even with delays.
Original commit message from CVS:
ogg muxing of vorbis and theora now has pages ordered correctly again,
even with delays.
* ext/ogg/README:
updated with some examples
* ext/theora/theoraenc.c: (granulepos_to_timestamp),
(granulepos_add), (theora_buffer_from_packet):
* ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
(granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
(gst_vorbisenc_chain):
implement strategy from ext/ogg/README
* ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
(gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
(gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
(gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
Fix muxer so that oggz-validate is happy with all streams;
except for no eos mark, and the BOS page ordering
* tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
(check_buffer_granulepos):
* tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
update tests to check for OFFSET being set as requested
fixed type of granulepos, it's not a ClockTime
2006-03-05 22:57:58 +00:00
|
|
|
GstClockTime next_timestamp;
|
2006-07-21 16:54:19 +00:00
|
|
|
gint64 last_granulepos = 0;
|
2006-01-30 15:01:28 +00:00
|
|
|
|
|
|
|
/* first buffer should have timestamp of TIMESTAMP_OFFSET, granulepos to
|
|
|
|
* match the timestamp of the end of the last sample in the output buffer.
|
|
|
|
* Note that one cannot go timestamp->granulepos->timestamp and get the same
|
|
|
|
* value due to loss of precision with granulepos. vorbisenc does take care
|
|
|
|
* to timestamp correctly based on the offset of the input data however, so
|
|
|
|
* it does do sub-granulepos timestamping. */
|
2006-07-21 15:59:24 +00:00
|
|
|
buffer = gst_buffer_straw_get_buffer (bin, pad);
|
2006-01-30 15:01:28 +00:00
|
|
|
last_granulepos = GST_BUFFER_OFFSET_END (buffer);
|
|
|
|
check_buffer_timestamp (buffer, TIMESTAMP_OFFSET);
|
|
|
|
/* don't really have a good way of checking duration... */
|
|
|
|
check_buffer_granulepos_from_endtime (buffer,
|
|
|
|
TIMESTAMP_OFFSET + GST_BUFFER_DURATION (buffer));
|
|
|
|
|
|
|
|
next_timestamp = TIMESTAMP_OFFSET + GST_BUFFER_DURATION (buffer);
|
|
|
|
|
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
|
|
|
|
/* check continuity with the next buffer */
|
2006-07-21 15:59:24 +00:00
|
|
|
buffer = gst_buffer_straw_get_buffer (bin, pad);
|
2006-01-30 15:01:28 +00:00
|
|
|
check_buffer_timestamp (buffer, next_timestamp);
|
|
|
|
check_buffer_duration (buffer,
|
|
|
|
gst_util_uint64_scale (GST_BUFFER_OFFSET_END (buffer), GST_SECOND,
|
|
|
|
44100)
|
|
|
|
- gst_util_uint64_scale (last_granulepos, GST_SECOND, 44100));
|
|
|
|
check_buffer_granulepos_from_endtime (buffer,
|
|
|
|
next_timestamp + GST_BUFFER_DURATION (buffer));
|
|
|
|
|
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
}
|
|
|
|
|
2006-07-21 15:59:24 +00:00
|
|
|
gst_buffer_straw_stop_pipeline (bin, pad);
|
2006-01-30 15:01:28 +00:00
|
|
|
|
|
|
|
gst_object_unref (pad);
|
|
|
|
gst_object_unref (bin);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
GST_START_TEST (test_timestamps)
|
|
|
|
{
|
|
|
|
GstElement *bin;
|
|
|
|
GstPad *pad;
|
|
|
|
gchar *pipe_str;
|
|
|
|
GstBuffer *buffer;
|
|
|
|
GError *error = NULL;
|
|
|
|
|
|
|
|
pipe_str = g_strdup_printf ("audiotestsrc"
|
2016-04-17 15:21:32 +00:00
|
|
|
" ! audio/x-raw,rate=44100 ! audioconvert ! vorbisenc "
|
|
|
|
" ! fakesink name=sink");
|
2006-01-30 15:01:28 +00:00
|
|
|
|
|
|
|
bin = gst_parse_launch (pipe_str, &error);
|
|
|
|
fail_unless (bin != NULL, "Error parsing pipeline: %s",
|
|
|
|
error ? error->message : "(invalid error)");
|
|
|
|
g_free (pipe_str);
|
|
|
|
|
|
|
|
/* get the pad */
|
|
|
|
{
|
2016-04-17 15:21:32 +00:00
|
|
|
GstElement *sink = gst_bin_get_by_name (GST_BIN (bin), "sink");
|
2006-01-30 15:01:28 +00:00
|
|
|
|
|
|
|
fail_unless (sink != NULL, "Could not get fakesink out of bin");
|
Don't use bad gst_element_get_pad().
Original commit message from CVS:
* ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
* gst/playback/decodetest.c: (new_decoded_pad_cb):
* gst/playback/gstdecodebin.c: (gst_decode_bin_init),
(try_to_link_1), (elem_is_dynamic), (close_link), (type_found),
(cleanup_decodebin):
* gst/playback/gstdecodebin2.c: (gst_decode_bin_init),
(connect_element), (gst_decode_group_control_demuxer_pad):
* gst/playback/gstplaybasebin.c: (queue_remove_probe),
(queue_out_of_data), (gen_preroll_element), (preroll_unlinked),
(mute_group_type):
* gst/playback/gstplaybin.c: (gst_play_bin_vis_blocked),
(gst_play_bin_set_property), (handoff), (gen_video_element),
(gen_text_element), (gen_audio_element), (gen_vis_element),
(remove_sinks), (add_sink), (setup_sinks):
* gst/playback/gstplaybin2.c: (pad_added_cb), (no_more_pads_cb):
* gst/playback/gstplaysink.c: (gst_play_sink_get_video_sink),
(gst_play_sink_get_audio_sink), (gst_play_sink_vis_unblocked),
(gst_play_sink_vis_blocked), (gst_play_sink_set_vis_plugin),
(gst_play_sink_get_vis_plugin), (gst_play_sink_set_mute),
(gen_video_chain), (gen_text_chain), (gen_audio_chain),
(gen_vis_chain), (gst_play_sink_reconfigure),
(gst_play_sink_set_font_desc), (gst_play_sink_get_font_desc),
(gst_play_sink_request_pad):
* gst/playback/gsturidecodebin.c: (type_found), (setup_source):
* gst/playback/test.c: (gen_video_element), (gen_audio_element),
(cb_newpad):
* gst/playback/test6.c: (new_decoded_pad_cb):
* tests/check/elements/audioconvert.c: (GST_START_TEST):
* tests/check/elements/audiorate.c: (test_injector_chain),
(do_perfect_stream_test):
* tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
* tests/check/elements/gdpdepay.c: (GST_START_TEST):
* tests/check/elements/gnomevfssink.c:
* tests/check/elements/textoverlay.c:
(notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2):
* tests/check/elements/videotestsrc.c: (GST_START_TEST):
* tests/check/libs/cddabasesrc.c: (GST_START_TEST):
* tests/check/pipelines/oggmux.c: (test_pipeline):
* tests/check/pipelines/streamheader.c: (GST_START_TEST):
* tests/check/pipelines/theoraenc.c: (GST_START_TEST):
* tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
* tests/examples/seek/scrubby.c: (make_wav_pipeline):
* tests/examples/seek/seek.c: (make_mod_pipeline),
(make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
(make_sid_pipeline), (make_parse_pipeline), (make_vorbis_pipeline),
(make_theora_pipeline), (make_vorbis_theora_pipeline),
(make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
(make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
(update_fill), (msg_buffering):
Don't use bad gst_element_get_pad().
2008-05-21 16:36:50 +00:00
|
|
|
pad = gst_element_get_static_pad (sink, "sink");
|
2006-01-30 15:01:28 +00:00
|
|
|
fail_unless (pad != NULL, "Could not get pad out of fakesink");
|
|
|
|
gst_object_unref (sink);
|
|
|
|
}
|
|
|
|
|
2006-07-21 15:59:24 +00:00
|
|
|
gst_buffer_straw_start_pipeline (bin, pad);
|
2006-01-30 15:01:28 +00:00
|
|
|
|
|
|
|
/* check header packets */
|
2006-07-21 15:59:24 +00:00
|
|
|
buffer = gst_buffer_straw_get_buffer (bin, pad);
|
2006-01-30 15:01:28 +00:00
|
|
|
check_buffer_timestamp (buffer, GST_CLOCK_TIME_NONE);
|
|
|
|
check_buffer_duration (buffer, GST_CLOCK_TIME_NONE);
|
|
|
|
check_buffer_granulepos (buffer, 0);
|
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
|
2006-07-21 15:59:24 +00:00
|
|
|
buffer = gst_buffer_straw_get_buffer (bin, pad);
|
2006-01-30 15:01:28 +00:00
|
|
|
check_buffer_timestamp (buffer, GST_CLOCK_TIME_NONE);
|
|
|
|
check_buffer_duration (buffer, GST_CLOCK_TIME_NONE);
|
|
|
|
check_buffer_granulepos (buffer, 0);
|
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
|
2006-07-21 15:59:24 +00:00
|
|
|
buffer = gst_buffer_straw_get_buffer (bin, pad);
|
2006-01-30 15:01:28 +00:00
|
|
|
check_buffer_timestamp (buffer, GST_CLOCK_TIME_NONE);
|
|
|
|
check_buffer_duration (buffer, GST_CLOCK_TIME_NONE);
|
|
|
|
check_buffer_granulepos (buffer, 0);
|
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
|
|
|
|
{
|
ogg muxing of vorbis and theora now has pages ordered correctly again, even with delays.
Original commit message from CVS:
ogg muxing of vorbis and theora now has pages ordered correctly again,
even with delays.
* ext/ogg/README:
updated with some examples
* ext/theora/theoraenc.c: (granulepos_to_timestamp),
(granulepos_add), (theora_buffer_from_packet):
* ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
(granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
(gst_vorbisenc_chain):
implement strategy from ext/ogg/README
* ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
(gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
(gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
(gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
Fix muxer so that oggz-validate is happy with all streams;
except for no eos mark, and the BOS page ordering
* tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
(check_buffer_granulepos):
* tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
update tests to check for OFFSET being set as requested
fixed type of granulepos, it's not a ClockTime
2006-03-05 22:57:58 +00:00
|
|
|
GstClockTime next_timestamp;
|
|
|
|
gint64 last_granulepos;
|
2006-01-30 15:01:28 +00:00
|
|
|
|
|
|
|
/* first buffer has timestamp 0 */
|
2006-07-21 15:59:24 +00:00
|
|
|
buffer = gst_buffer_straw_get_buffer (bin, pad);
|
2006-01-30 15:01:28 +00:00
|
|
|
last_granulepos = GST_BUFFER_OFFSET_END (buffer);
|
|
|
|
check_buffer_timestamp (buffer, 0);
|
|
|
|
/* don't really have a good way of checking duration... */
|
|
|
|
check_buffer_granulepos_from_endtime (buffer, GST_BUFFER_DURATION (buffer));
|
|
|
|
|
|
|
|
next_timestamp = GST_BUFFER_DURATION (buffer);
|
|
|
|
|
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
|
|
|
|
/* check continuity with the next buffer */
|
2006-07-21 15:59:24 +00:00
|
|
|
buffer = gst_buffer_straw_get_buffer (bin, pad);
|
2006-01-30 15:01:28 +00:00
|
|
|
check_buffer_timestamp (buffer, next_timestamp);
|
|
|
|
check_buffer_duration (buffer,
|
|
|
|
gst_util_uint64_scale (GST_BUFFER_OFFSET_END (buffer), GST_SECOND,
|
|
|
|
44100)
|
|
|
|
- gst_util_uint64_scale (last_granulepos, GST_SECOND, 44100));
|
|
|
|
check_buffer_granulepos_from_endtime (buffer,
|
|
|
|
next_timestamp + GST_BUFFER_DURATION (buffer));
|
|
|
|
|
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
}
|
|
|
|
|
2006-07-21 15:59:24 +00:00
|
|
|
gst_buffer_straw_stop_pipeline (bin, pad);
|
2006-01-30 15:01:28 +00:00
|
|
|
|
|
|
|
gst_object_unref (pad);
|
|
|
|
gst_object_unref (bin);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2011-11-01 00:34:28 +00:00
|
|
|
static GstPadProbeReturn
|
2011-11-08 10:07:18 +00:00
|
|
|
drop_second_data_buffer (GstPad * droppad, GstPadProbeInfo * info,
|
|
|
|
gpointer unused)
|
2006-07-21 16:54:19 +00:00
|
|
|
{
|
2011-11-08 10:07:18 +00:00
|
|
|
GstBuffer *buffer = GST_PAD_PROBE_INFO_BUFFER (info);
|
2011-11-01 00:34:28 +00:00
|
|
|
GstPadProbeReturn res = GST_PAD_PROBE_OK;
|
2011-06-03 17:07:44 +00:00
|
|
|
|
2011-10-09 15:08:36 +00:00
|
|
|
if (GST_BUFFER_OFFSET (buffer) == 4096)
|
2011-11-01 00:34:28 +00:00
|
|
|
res = GST_PAD_PROBE_DROP;
|
2011-03-28 17:23:38 +00:00
|
|
|
|
|
|
|
GST_DEBUG ("dropping %d", res);
|
|
|
|
|
|
|
|
return res;
|
2006-07-21 16:54:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_START_TEST (test_discontinuity)
|
|
|
|
{
|
|
|
|
GstElement *bin;
|
|
|
|
GstPad *pad, *droppad;
|
|
|
|
gchar *pipe_str;
|
|
|
|
GstBuffer *buffer;
|
|
|
|
GError *error = NULL;
|
|
|
|
guint drop_id;
|
|
|
|
|
2011-10-08 18:17:43 +00:00
|
|
|
/* make audioencoder act sufficiently pedantic */
|
2006-07-21 16:54:19 +00:00
|
|
|
pipe_str = g_strdup_printf ("audiotestsrc samplesperbuffer=1024"
|
2016-04-17 15:21:32 +00:00
|
|
|
" ! audio/x-raw,rate=44100 ! audioconvert "
|
|
|
|
" ! vorbisenc tolerance=10000000 name=enc ! fakesink name=sink");
|
2006-07-21 16:54:19 +00:00
|
|
|
|
|
|
|
bin = gst_parse_launch (pipe_str, &error);
|
|
|
|
fail_unless (bin != NULL, "Error parsing pipeline: %s",
|
|
|
|
error ? error->message : "(invalid error)");
|
|
|
|
g_free (pipe_str);
|
|
|
|
|
|
|
|
/* the plan: same as test_timestamps, but dropping a buffer and seeing if
|
|
|
|
vorbisenc correctly notes the discontinuity */
|
|
|
|
|
|
|
|
/* get the pad to use to drop buffers */
|
|
|
|
{
|
2016-04-17 15:21:32 +00:00
|
|
|
GstElement *sink = gst_bin_get_by_name (GST_BIN (bin), "enc");
|
2006-07-21 16:54:19 +00:00
|
|
|
|
|
|
|
fail_unless (sink != NULL, "Could not get vorbisenc out of bin");
|
Don't use bad gst_element_get_pad().
Original commit message from CVS:
* ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
* gst/playback/decodetest.c: (new_decoded_pad_cb):
* gst/playback/gstdecodebin.c: (gst_decode_bin_init),
(try_to_link_1), (elem_is_dynamic), (close_link), (type_found),
(cleanup_decodebin):
* gst/playback/gstdecodebin2.c: (gst_decode_bin_init),
(connect_element), (gst_decode_group_control_demuxer_pad):
* gst/playback/gstplaybasebin.c: (queue_remove_probe),
(queue_out_of_data), (gen_preroll_element), (preroll_unlinked),
(mute_group_type):
* gst/playback/gstplaybin.c: (gst_play_bin_vis_blocked),
(gst_play_bin_set_property), (handoff), (gen_video_element),
(gen_text_element), (gen_audio_element), (gen_vis_element),
(remove_sinks), (add_sink), (setup_sinks):
* gst/playback/gstplaybin2.c: (pad_added_cb), (no_more_pads_cb):
* gst/playback/gstplaysink.c: (gst_play_sink_get_video_sink),
(gst_play_sink_get_audio_sink), (gst_play_sink_vis_unblocked),
(gst_play_sink_vis_blocked), (gst_play_sink_set_vis_plugin),
(gst_play_sink_get_vis_plugin), (gst_play_sink_set_mute),
(gen_video_chain), (gen_text_chain), (gen_audio_chain),
(gen_vis_chain), (gst_play_sink_reconfigure),
(gst_play_sink_set_font_desc), (gst_play_sink_get_font_desc),
(gst_play_sink_request_pad):
* gst/playback/gsturidecodebin.c: (type_found), (setup_source):
* gst/playback/test.c: (gen_video_element), (gen_audio_element),
(cb_newpad):
* gst/playback/test6.c: (new_decoded_pad_cb):
* tests/check/elements/audioconvert.c: (GST_START_TEST):
* tests/check/elements/audiorate.c: (test_injector_chain),
(do_perfect_stream_test):
* tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
* tests/check/elements/gdpdepay.c: (GST_START_TEST):
* tests/check/elements/gnomevfssink.c:
* tests/check/elements/textoverlay.c:
(notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2):
* tests/check/elements/videotestsrc.c: (GST_START_TEST):
* tests/check/libs/cddabasesrc.c: (GST_START_TEST):
* tests/check/pipelines/oggmux.c: (test_pipeline):
* tests/check/pipelines/streamheader.c: (GST_START_TEST):
* tests/check/pipelines/theoraenc.c: (GST_START_TEST):
* tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
* tests/examples/seek/scrubby.c: (make_wav_pipeline):
* tests/examples/seek/seek.c: (make_mod_pipeline),
(make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
(make_sid_pipeline), (make_parse_pipeline), (make_vorbis_pipeline),
(make_theora_pipeline), (make_vorbis_theora_pipeline),
(make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
(make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
(update_fill), (msg_buffering):
Don't use bad gst_element_get_pad().
2008-05-21 16:36:50 +00:00
|
|
|
droppad = gst_element_get_static_pad (sink, "sink");
|
2006-07-21 16:54:19 +00:00
|
|
|
fail_unless (droppad != NULL, "Could not get pad out of vorbisenc");
|
|
|
|
gst_object_unref (sink);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get the pad */
|
|
|
|
{
|
2016-04-17 15:21:32 +00:00
|
|
|
GstElement *sink = gst_bin_get_by_name (GST_BIN (bin), "sink");
|
2006-07-21 16:54:19 +00:00
|
|
|
|
|
|
|
fail_unless (sink != NULL, "Could not get fakesink out of bin");
|
Don't use bad gst_element_get_pad().
Original commit message from CVS:
* ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
* gst/playback/decodetest.c: (new_decoded_pad_cb):
* gst/playback/gstdecodebin.c: (gst_decode_bin_init),
(try_to_link_1), (elem_is_dynamic), (close_link), (type_found),
(cleanup_decodebin):
* gst/playback/gstdecodebin2.c: (gst_decode_bin_init),
(connect_element), (gst_decode_group_control_demuxer_pad):
* gst/playback/gstplaybasebin.c: (queue_remove_probe),
(queue_out_of_data), (gen_preroll_element), (preroll_unlinked),
(mute_group_type):
* gst/playback/gstplaybin.c: (gst_play_bin_vis_blocked),
(gst_play_bin_set_property), (handoff), (gen_video_element),
(gen_text_element), (gen_audio_element), (gen_vis_element),
(remove_sinks), (add_sink), (setup_sinks):
* gst/playback/gstplaybin2.c: (pad_added_cb), (no_more_pads_cb):
* gst/playback/gstplaysink.c: (gst_play_sink_get_video_sink),
(gst_play_sink_get_audio_sink), (gst_play_sink_vis_unblocked),
(gst_play_sink_vis_blocked), (gst_play_sink_set_vis_plugin),
(gst_play_sink_get_vis_plugin), (gst_play_sink_set_mute),
(gen_video_chain), (gen_text_chain), (gen_audio_chain),
(gen_vis_chain), (gst_play_sink_reconfigure),
(gst_play_sink_set_font_desc), (gst_play_sink_get_font_desc),
(gst_play_sink_request_pad):
* gst/playback/gsturidecodebin.c: (type_found), (setup_source):
* gst/playback/test.c: (gen_video_element), (gen_audio_element),
(cb_newpad):
* gst/playback/test6.c: (new_decoded_pad_cb):
* tests/check/elements/audioconvert.c: (GST_START_TEST):
* tests/check/elements/audiorate.c: (test_injector_chain),
(do_perfect_stream_test):
* tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
* tests/check/elements/gdpdepay.c: (GST_START_TEST):
* tests/check/elements/gnomevfssink.c:
* tests/check/elements/textoverlay.c:
(notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2):
* tests/check/elements/videotestsrc.c: (GST_START_TEST):
* tests/check/libs/cddabasesrc.c: (GST_START_TEST):
* tests/check/pipelines/oggmux.c: (test_pipeline):
* tests/check/pipelines/streamheader.c: (GST_START_TEST):
* tests/check/pipelines/theoraenc.c: (GST_START_TEST):
* tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
* tests/examples/seek/scrubby.c: (make_wav_pipeline):
* tests/examples/seek/seek.c: (make_mod_pipeline),
(make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
(make_sid_pipeline), (make_parse_pipeline), (make_vorbis_pipeline),
(make_theora_pipeline), (make_vorbis_theora_pipeline),
(make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
(make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
(update_fill), (msg_buffering):
Don't use bad gst_element_get_pad().
2008-05-21 16:36:50 +00:00
|
|
|
pad = gst_element_get_static_pad (sink, "sink");
|
2006-07-21 16:54:19 +00:00
|
|
|
fail_unless (pad != NULL, "Could not get pad out of fakesink");
|
|
|
|
gst_object_unref (sink);
|
|
|
|
}
|
|
|
|
|
2011-11-01 00:34:28 +00:00
|
|
|
drop_id = gst_pad_add_probe (droppad, GST_PAD_PROBE_TYPE_BUFFER,
|
2011-06-03 17:07:44 +00:00
|
|
|
(GstPadProbeCallback) drop_second_data_buffer, NULL, NULL);
|
2006-07-21 16:54:19 +00:00
|
|
|
gst_buffer_straw_start_pipeline (bin, pad);
|
|
|
|
|
|
|
|
/* check header packets */
|
|
|
|
buffer = gst_buffer_straw_get_buffer (bin, pad);
|
|
|
|
check_buffer_timestamp (buffer, GST_CLOCK_TIME_NONE);
|
|
|
|
check_buffer_duration (buffer, GST_CLOCK_TIME_NONE);
|
|
|
|
check_buffer_granulepos (buffer, 0);
|
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
|
|
|
|
buffer = gst_buffer_straw_get_buffer (bin, pad);
|
|
|
|
check_buffer_timestamp (buffer, GST_CLOCK_TIME_NONE);
|
|
|
|
check_buffer_duration (buffer, GST_CLOCK_TIME_NONE);
|
|
|
|
check_buffer_granulepos (buffer, 0);
|
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
|
|
|
|
buffer = gst_buffer_straw_get_buffer (bin, pad);
|
|
|
|
check_buffer_timestamp (buffer, GST_CLOCK_TIME_NONE);
|
|
|
|
check_buffer_duration (buffer, GST_CLOCK_TIME_NONE);
|
|
|
|
check_buffer_granulepos (buffer, 0);
|
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
|
|
|
|
{
|
|
|
|
GstClockTime next_timestamp = 0;
|
2011-10-08 18:17:43 +00:00
|
|
|
gint64 last_granulepos = 0, granulepos;
|
|
|
|
gint i;
|
2006-07-21 16:54:19 +00:00
|
|
|
|
2011-10-08 18:17:43 +00:00
|
|
|
for (i = 0; i < 10; i++) {
|
2006-07-21 16:54:19 +00:00
|
|
|
buffer = gst_buffer_straw_get_buffer (bin, pad);
|
2011-10-08 18:17:43 +00:00
|
|
|
granulepos = GST_BUFFER_OFFSET_END (buffer);
|
|
|
|
/* discont is either at start, or following gap */
|
|
|
|
if (GST_BUFFER_IS_DISCONT (buffer)) {
|
|
|
|
if (next_timestamp) {
|
|
|
|
fail_unless (granulepos - last_granulepos > 1024,
|
|
|
|
"expected discont of at least 1024 samples");
|
|
|
|
next_timestamp = GST_BUFFER_TIMESTAMP (buffer);
|
|
|
|
}
|
|
|
|
}
|
2006-07-21 16:54:19 +00:00
|
|
|
check_buffer_timestamp (buffer, next_timestamp);
|
|
|
|
next_timestamp += GST_BUFFER_DURATION (buffer);
|
2011-10-08 18:17:43 +00:00
|
|
|
last_granulepos = granulepos;
|
2006-07-21 16:54:19 +00:00
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_buffer_straw_stop_pipeline (bin, pad);
|
2011-06-03 17:07:44 +00:00
|
|
|
gst_pad_remove_probe (droppad, drop_id);
|
2006-07-21 16:54:19 +00:00
|
|
|
|
|
|
|
gst_object_unref (droppad);
|
|
|
|
gst_object_unref (pad);
|
|
|
|
gst_object_unref (bin);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2006-05-28 09:37:18 +00:00
|
|
|
#endif /* #ifndef GST_DISABLE_PARSE */
|
|
|
|
|
Correct all relevant warnings found by the sparse semantic code analyzer. This include marking several symbols static...
Original commit message from CVS:
* ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_get_type):
* ext/alsa/gstalsasink.c: (set_hwparams):
* ext/alsa/gstalsasrc.c: (set_hwparams):
* ext/gio/gstgio.c: (gst_gio_uri_handler_get_uri):
* ext/ogg/gstoggmux.h:
* ext/ogg/gstogmparse.c:
* gst-libs/gst/audio/audio.c:
* gst-libs/gst/fft/kiss_fft_f64.c: (kiss_fft_f64_alloc):
* gst-libs/gst/pbutils/missing-plugins.c:
(gst_missing_uri_sink_message_new),
(gst_missing_element_message_new),
(gst_missing_decoder_message_new),
(gst_missing_encoder_message_new):
* gst-libs/gst/rtp/gstbasertppayload.c:
* gst-libs/gst/rtp/gstrtcpbuffer.c:
(gst_rtcp_packet_bye_get_reason):
* gst/audioconvert/gstaudioconvert.c:
* gst/audioresample/gstaudioresample.c:
* gst/ffmpegcolorspace/imgconvert.c:
* gst/playback/test.c: (gen_video_element), (gen_audio_element):
* gst/typefind/gsttypefindfunctions.c:
* gst/videoscale/vs_4tap.c:
* gst/videoscale/vs_4tap.h:
* sys/v4l/gstv4lelement.c:
* sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_any_caps):
* sys/v4l/v4l_calls.c:
* sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
(gst_v4lsrc_try_capture):
* sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
(gst_ximagesink_ximage_new):
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
(gst_xvimagesink_xvimage_new):
* tests/check/elements/audioconvert.c:
* tests/check/elements/audioresample.c:
(fail_unless_perfect_stream):
* tests/check/elements/audiotestsrc.c: (setup_audiotestsrc):
* tests/check/elements/decodebin.c:
* tests/check/elements/gdpdepay.c: (setup_gdpdepay),
(setup_gdpdepay_streamheader):
* tests/check/elements/gdppay.c: (setup_gdppay), (GST_START_TEST),
(setup_gdppay_streamheader):
* tests/check/elements/gnomevfssink.c: (setup_gnomevfssink):
* tests/check/elements/multifdsink.c: (setup_multifdsink):
* tests/check/elements/textoverlay.c:
* tests/check/elements/videorate.c: (setup_videorate):
* tests/check/elements/videotestsrc.c: (setup_videotestsrc):
* tests/check/elements/volume.c: (setup_volume):
* tests/check/elements/vorbisdec.c: (setup_vorbisdec):
* tests/check/elements/vorbistag.c:
* tests/check/generic/clock-selection.c:
* tests/check/generic/states.c: (setup), (teardown):
* tests/check/libs/cddabasesrc.c:
* tests/check/libs/video.c:
* tests/check/pipelines/gio.c:
* tests/check/pipelines/oggmux.c:
* tests/check/pipelines/simple-launch-lines.c:
(simple_launch_lines_suite):
* tests/check/pipelines/streamheader.c:
* tests/check/pipelines/theoraenc.c:
* tests/check/pipelines/vorbisdec.c:
* tests/check/pipelines/vorbisenc.c:
* tests/examples/seek/scrubby.c:
* tests/examples/seek/seek.c: (query_positions_elems),
(query_positions_pads):
* tests/icles/stress-xoverlay.c: (myclock):
Correct all relevant warnings found by the sparse semantic code
analyzer. This include marking several symbols static, using
NULL instead of 0 for pointers and using "foo (void)" instead
of "foo ()" for declarations.
* win32/common/libgstrtp.def:
Add gst_rtp_buffer_set_extension_data to the symbol definition file.
2008-03-03 06:04:31 +00:00
|
|
|
static Suite *
|
2006-01-30 15:01:28 +00:00
|
|
|
vorbisenc_suite (void)
|
|
|
|
{
|
|
|
|
Suite *s = suite_create ("vorbisenc");
|
|
|
|
TCase *tc_chain = tcase_create ("general");
|
|
|
|
|
|
|
|
suite_add_tcase (s, tc_chain);
|
2006-05-28 09:37:18 +00:00
|
|
|
#ifndef GST_DISABLE_PARSE
|
2006-01-30 15:01:28 +00:00
|
|
|
tcase_add_test (tc_chain, test_granulepos_offset);
|
|
|
|
tcase_add_test (tc_chain, test_timestamps);
|
2006-07-21 16:54:19 +00:00
|
|
|
tcase_add_test (tc_chain, test_discontinuity);
|
2006-05-28 09:37:18 +00:00
|
|
|
#endif
|
2006-01-30 15:01:28 +00:00
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2015-06-02 14:14:39 +00:00
|
|
|
GST_CHECK_MAIN (vorbisenc);
|