2009-12-17 11:34:42 +00:00
|
|
|
/* GStreamer
|
|
|
|
*
|
2011-02-25 12:15:25 +00:00
|
|
|
* unit test for GstMeta
|
2009-12-17 11:34:42 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) <2009> Wim Taymans <wim.taymans@gmail.com>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_VALGRIND_H
|
|
|
|
# include <valgrind/valgrind.h>
|
|
|
|
#else
|
|
|
|
# define RUNNING_ON_VALGRIND FALSE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <gst/check/gstcheck.h>
|
|
|
|
|
|
|
|
/* test metadata for PTS/DTS and duration */
|
|
|
|
typedef struct
|
|
|
|
{
|
2011-02-25 12:15:25 +00:00
|
|
|
GstMeta meta;
|
2009-12-17 11:34:42 +00:00
|
|
|
|
|
|
|
GstClockTime pts;
|
|
|
|
GstClockTime dts;
|
|
|
|
GstClockTime duration;
|
|
|
|
GstClockTime clock_rate;
|
2011-02-28 08:39:44 +00:00
|
|
|
} GstMetaTest;
|
2009-12-17 11:34:42 +00:00
|
|
|
|
2011-02-28 08:39:44 +00:00
|
|
|
static const GstMetaInfo *gst_meta_test_get_info (void);
|
|
|
|
#define GST_META_TEST_INFO (gst_meta_test_get_info())
|
2009-12-17 11:34:42 +00:00
|
|
|
|
2011-02-28 08:39:44 +00:00
|
|
|
#define GST_META_TEST_GET(buf) ((GstMetaTest *)gst_buffer_get_meta(buf,GST_META_TEST_INFO))
|
|
|
|
#define GST_META_TEST_ADD(buf) ((GstMetaTest *)gst_buffer_add_meta(buf,GST_META_TEST_INFO,NULL))
|
2009-12-17 11:34:42 +00:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
/* unused currently. This is a user function to fill the metadata with default
|
|
|
|
* values. We don't call this from the init function because the user is mostly
|
|
|
|
* likely going to override the values immediately after */
|
|
|
|
static void
|
2011-02-28 08:39:44 +00:00
|
|
|
gst_meta_test_init (GstMetaTest * meta)
|
2009-12-17 11:34:42 +00:00
|
|
|
{
|
|
|
|
meta->pts = GST_CLOCK_TIME_NONE;
|
|
|
|
meta->dts = GST_CLOCK_TIME_NONE;
|
|
|
|
meta->duration = GST_CLOCK_TIME_NONE;
|
|
|
|
meta->clock_rate = GST_SECOND;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void
|
2011-02-28 08:39:44 +00:00
|
|
|
test_init_func (GstMetaTest * meta, GstBuffer * buffer)
|
2009-12-17 11:34:42 +00:00
|
|
|
{
|
|
|
|
GST_DEBUG ("init called on buffer %p, meta %p", buffer, meta);
|
|
|
|
/* nothing to init really, the init function is mostly for allocating
|
|
|
|
* additional memory or doing special setup as part of adding the metadata to
|
|
|
|
* the buffer*/
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-02-28 08:39:44 +00:00
|
|
|
test_free_func (GstMetaTest * meta, GstBuffer * buffer)
|
2009-12-17 11:34:42 +00:00
|
|
|
{
|
|
|
|
GST_DEBUG ("free called on buffer %p, meta %p", buffer, meta);
|
|
|
|
/* nothing to free really */
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-03-24 20:18:52 +00:00
|
|
|
test_copy_func (GstBuffer * copybuf, GstMetaTest * meta,
|
|
|
|
GstBuffer * buffer, gsize offset, gsize size)
|
2009-12-17 11:34:42 +00:00
|
|
|
{
|
2011-02-28 08:39:44 +00:00
|
|
|
GstMetaTest *test;
|
2009-12-17 11:34:42 +00:00
|
|
|
|
2011-03-24 20:18:52 +00:00
|
|
|
GST_DEBUG ("copy called from buffer %p to %p, meta %p, %u-%u", buffer,
|
|
|
|
copybuf, meta, offset, size);
|
2009-12-17 11:34:42 +00:00
|
|
|
|
2011-03-24 20:18:52 +00:00
|
|
|
test = GST_META_TEST_ADD (copybuf);
|
2009-12-17 11:34:42 +00:00
|
|
|
if (offset == 0) {
|
|
|
|
/* same offset, copy timestamps */
|
|
|
|
test->pts = meta->pts;
|
|
|
|
test->dts = meta->dts;
|
2011-03-21 18:15:27 +00:00
|
|
|
if (size == gst_buffer_get_size (buffer)) {
|
2009-12-17 11:34:42 +00:00
|
|
|
/* same size, copy duration */
|
|
|
|
test->duration = meta->duration;
|
|
|
|
} else {
|
|
|
|
/* else clear */
|
|
|
|
test->duration = GST_CLOCK_TIME_NONE;
|
|
|
|
}
|
2010-04-07 09:34:23 +00:00
|
|
|
} else {
|
|
|
|
test->pts = -1;
|
|
|
|
test->dts = -1;
|
|
|
|
test->duration = -1;
|
2009-12-17 11:34:42 +00:00
|
|
|
}
|
|
|
|
test->clock_rate = meta->clock_rate;
|
|
|
|
}
|
|
|
|
|
2011-02-25 12:15:25 +00:00
|
|
|
static const GstMetaInfo *
|
2011-02-28 08:39:44 +00:00
|
|
|
gst_meta_test_get_info (void)
|
2009-12-17 11:34:42 +00:00
|
|
|
{
|
2011-02-28 08:39:44 +00:00
|
|
|
static const GstMetaInfo *meta_test_info = NULL;
|
2009-12-27 21:03:32 +00:00
|
|
|
|
2011-02-28 08:39:44 +00:00
|
|
|
if (meta_test_info == NULL) {
|
|
|
|
meta_test_info = gst_meta_register ("GstMetaTest", "GstMetaTest",
|
|
|
|
sizeof (GstMetaTest),
|
2011-02-25 12:15:25 +00:00
|
|
|
(GstMetaInitFunction) test_init_func,
|
|
|
|
(GstMetaFreeFunction) test_free_func,
|
2011-05-13 06:38:06 +00:00
|
|
|
(GstMetaCopyFunction) test_copy_func, (GstMetaTransformFunction) NULL);
|
2009-12-17 11:34:42 +00:00
|
|
|
}
|
2011-02-28 08:39:44 +00:00
|
|
|
return meta_test_info;
|
2009-12-17 11:34:42 +00:00
|
|
|
}
|
|
|
|
|
2011-02-28 08:39:44 +00:00
|
|
|
GST_START_TEST (test_meta_test)
|
2009-12-17 11:34:42 +00:00
|
|
|
{
|
|
|
|
GstBuffer *buffer, *copy, *subbuf;
|
2011-02-28 08:39:44 +00:00
|
|
|
GstMetaTest *meta;
|
2011-03-21 18:15:27 +00:00
|
|
|
gpointer data;
|
2009-12-17 11:34:42 +00:00
|
|
|
|
|
|
|
buffer = gst_buffer_new_and_alloc (4);
|
2011-03-21 18:15:27 +00:00
|
|
|
|
|
|
|
data = gst_buffer_map (buffer, NULL, NULL, GST_MAP_WRITE);
|
|
|
|
memset (data, 0, 4);
|
|
|
|
gst_buffer_unmap (buffer, data, 4);
|
2009-12-17 11:34:42 +00:00
|
|
|
|
|
|
|
/* add some metadata */
|
2011-02-28 08:39:44 +00:00
|
|
|
meta = GST_META_TEST_ADD (buffer);
|
2009-12-17 11:34:42 +00:00
|
|
|
fail_if (meta == NULL);
|
|
|
|
/* fill some values */
|
|
|
|
meta->pts = 1000;
|
|
|
|
meta->dts = 2000;
|
|
|
|
meta->duration = 1000;
|
|
|
|
meta->clock_rate = 1000;
|
|
|
|
|
|
|
|
/* copy of the buffer */
|
|
|
|
copy = gst_buffer_copy (buffer);
|
|
|
|
/* get metadata of the buffer */
|
2011-02-28 08:39:44 +00:00
|
|
|
meta = GST_META_TEST_GET (copy);
|
2009-12-17 11:34:42 +00:00
|
|
|
fail_if (meta == NULL);
|
|
|
|
fail_if (meta->pts != 1000);
|
|
|
|
fail_if (meta->dts != 2000);
|
|
|
|
fail_if (meta->duration != 1000);
|
|
|
|
fail_if (meta->clock_rate != 1000);
|
|
|
|
gst_buffer_unref (copy);
|
|
|
|
|
|
|
|
/* make subbuffer */
|
2011-03-30 14:47:55 +00:00
|
|
|
subbuf = gst_buffer_copy_region (buffer, GST_BUFFER_COPY_ALL, 0, 1);
|
2009-12-17 11:34:42 +00:00
|
|
|
/* get metadata of the buffer */
|
2011-02-28 08:39:44 +00:00
|
|
|
meta = GST_META_TEST_GET (subbuf);
|
2009-12-17 11:34:42 +00:00
|
|
|
fail_if (meta == NULL);
|
|
|
|
fail_if (meta->pts != 1000);
|
|
|
|
fail_if (meta->dts != 2000);
|
|
|
|
fail_if (meta->duration != -1);
|
|
|
|
fail_if (meta->clock_rate != 1000);
|
|
|
|
gst_buffer_unref (subbuf);
|
|
|
|
|
|
|
|
/* make another subbuffer */
|
2011-03-30 14:47:55 +00:00
|
|
|
subbuf = gst_buffer_copy_region (buffer, GST_BUFFER_COPY_ALL, 1, 3);
|
2009-12-17 11:34:42 +00:00
|
|
|
/* get metadata of the buffer */
|
2011-02-28 08:39:44 +00:00
|
|
|
meta = GST_META_TEST_GET (subbuf);
|
2009-12-17 11:34:42 +00:00
|
|
|
fail_if (meta == NULL);
|
|
|
|
fail_if (meta->pts != -1);
|
|
|
|
fail_if (meta->dts != -1);
|
|
|
|
fail_if (meta->duration != -1);
|
|
|
|
fail_if (meta->clock_rate != 1000);
|
|
|
|
gst_buffer_unref (subbuf);
|
|
|
|
|
|
|
|
/* clean up */
|
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
static Suite *
|
|
|
|
gst_buffermeta_suite (void)
|
|
|
|
{
|
2011-02-25 12:15:25 +00:00
|
|
|
Suite *s = suite_create ("GstMeta");
|
2009-12-17 11:34:42 +00:00
|
|
|
TCase *tc_chain = tcase_create ("general");
|
|
|
|
|
|
|
|
suite_add_tcase (s, tc_chain);
|
2011-02-28 08:39:44 +00:00
|
|
|
tcase_add_test (tc_chain, test_meta_test);
|
2009-12-17 11:34:42 +00:00
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_CHECK_MAIN (gst_buffermeta);
|