mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
tests/check/elements/: Add missing files.
Original commit message from CVS: * tests/check/elements/aacparse_data.h: * tests/check/elements/amrparse_data.h: Add missing files.
This commit is contained in:
parent
0dd5875f42
commit
8e100b0c3d
3 changed files with 118 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2008-11-17 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* tests/check/elements/aacparse_data.h:
|
||||
* tests/check/elements/amrparse_data.h:
|
||||
Add missing files.
|
||||
|
||||
2008-11-14 David Schleef <ds@schleef.org>
|
||||
|
||||
* gst/qtmux/gstqtmux.c:
|
||||
|
|
52
tests/check/elements/aacparse_data.h
Normal file
52
tests/check/elements/aacparse_data.h
Normal file
|
@ -0,0 +1,52 @@
|
|||
/*
|
||||
* GStreamer
|
||||
*
|
||||
* unit test data for aacparse
|
||||
*
|
||||
* Copyright (C) 2008 Nokia Corporation. All rights reserved.
|
||||
*
|
||||
* Contact: Stefan Kost <stefan.kost@nokia.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.
|
||||
*/
|
||||
|
||||
#define ADIF_HEADER_LEN 4
|
||||
|
||||
static const unsigned char adif_header[]=
|
||||
{
|
||||
'A','D','I','F'
|
||||
};
|
||||
|
||||
#define ADTS_FRAME_LEN 15
|
||||
|
||||
static const unsigned char adts_frame_mpeg2[]=
|
||||
{
|
||||
0xff, 0xf9, 0x4c, 0x80, 0x01, 0xff, 0xfc, 0x21, 0x10, 0xd3, 0x20, 0x0c,
|
||||
0x32, 0x00, 0xc7
|
||||
};
|
||||
|
||||
static const unsigned char adts_frame_mpeg4[]=
|
||||
{
|
||||
0xff, 0xf1, 0x4c, 0x80, 0x01, 0xff, 0xfc, 0x21, 0x10, 0xd3, 0x20, 0x0c,
|
||||
0x32, 0x00, 0xc7
|
||||
};
|
||||
|
||||
#define GARBAGE_FRAME_LEN 5
|
||||
|
||||
static const unsigned char garbage_frame[]=
|
||||
{
|
||||
0xff, 0xff, 0xff, 0xff, 0xff
|
||||
};
|
60
tests/check/elements/amrparse_data.h
Normal file
60
tests/check/elements/amrparse_data.h
Normal file
|
@ -0,0 +1,60 @@
|
|||
/*
|
||||
* GStreamer
|
||||
*
|
||||
* unit test data for amrparse
|
||||
*
|
||||
* Copyright (C) 2008 Nokia Corporation. All rights reserved.
|
||||
*
|
||||
* Contact: Stefan Kost <stefan.kost@nokia.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.
|
||||
*/
|
||||
|
||||
#define FRAME_DATA_NB_LEN 14
|
||||
|
||||
static const unsigned char frame_data_nb[]=
|
||||
{
|
||||
0x0c,0x56,0x3c,0x52,0xe0,0x61,0xbc,0x45,0x0f,0x98,0x2e,0x01,0x42,0x02
|
||||
};
|
||||
|
||||
#define FRAME_DATA_WB_LEN 24
|
||||
|
||||
static const unsigned char frame_data_wb[]=
|
||||
{
|
||||
0x08,0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0a,0x0b,0x0c,
|
||||
0x0d,0x0e,0x0f,0x10,0x11,0x12,0x13,0x14,0x15,0x16
|
||||
};
|
||||
|
||||
#define FRAME_HDR_NB_LEN 6
|
||||
|
||||
static const unsigned char frame_hdr_nb[]=
|
||||
{
|
||||
'#','!','A','M','R','\n'
|
||||
};
|
||||
|
||||
#define FRAME_HDR_WB_LEN 9
|
||||
|
||||
static const unsigned char frame_hdr_wb[]=
|
||||
{
|
||||
'#','!','A','M','R','-','W','B','\n'
|
||||
};
|
||||
|
||||
#define GARBAGE_FRAME_LEN 5
|
||||
|
||||
static const unsigned char garbage_frame[]=
|
||||
{
|
||||
0xff, 0xff, 0xff, 0xff, 0xff
|
||||
};
|
Loading…
Reference in a new issue