Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 61d3526

Browse files
committed
Uploaded source code
Signed-off-by: Dmitry Ermilov <dmitry.ermilov@intel.com>
1 parent ffffb69 commit 61d3526

File tree

83 files changed

+14564
-23
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+14564
-23
lines changed

LICENSE

+19-23
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,23 @@
1-
Copyright (c) 2016, Intel-Media-SDK
2-
All rights reserved.
1+
Copyright (C) 2005-2016 Intel Corporation. All rights reserved.
32

43
Redistribution and use in source and binary forms, with or without
54
modification, are permitted provided that the following conditions are met:
5+
- Redistributions of source code must retain the above copyright notice,
6+
this list of conditions and the following disclaimer.
7+
- Redistributions in binary form must reproduce the above copyright notice,
8+
this list of conditions and the following disclaimer in the documentation
9+
and/or other materials provided with the distribution.
10+
- Neither the name of Intel Corporation nor the names of its contributors
11+
may be used to endorse or promote products derived from this software
12+
without specific prior written permission.
613

7-
* Redistributions of source code must retain the above copyright notice, this
8-
list of conditions and the following disclaimer.
9-
10-
* Redistributions in binary form must reproduce the above copyright notice,
11-
this list of conditions and the following disclaimer in the documentation
12-
and/or other materials provided with the distribution.
13-
14-
* Neither the name of gstreamer-plugins nor the names of its
15-
contributors may be used to endorse or promote products derived from
16-
this software without specific prior written permission.
17-
18-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19-
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20-
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21-
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22-
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23-
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24-
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25-
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26-
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14+
THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS" AND ANY EXPRESS OR
15+
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16+
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17+
IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT, INDIRECT,
18+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19+
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23+
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Makefile.am

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
2+
3+
AUTOMAKE_OPTIONS = foreign
4+
5+
SUBDIRS = utils src plugins

NOTICE

+145
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
GStreamer-MediaSDK incorporates or links against the third-party
2+
software. The software and licenses are listed below.
3+
4+
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
5+
6+
Section Name: MediaSDK dispatcher
7+
8+
Copyright (C) 2012-2016 Intel Corporation
9+
10+
Redistribution and use in source and binary forms, with or without
11+
modification, are permitted provided that the following conditions are met:
12+
- Redistributions of source code must retain the above copyright notice,
13+
this list of conditions and the following disclaimer.
14+
- Redistributions in binary form must reproduce the above copyright notice,
15+
this list of conditions and the following disclaimer in the documentation
16+
and/or other materials provided with the distribution.
17+
- Neither the name of Intel Corporation nor the names of its contributors
18+
may be used to endorse or promote products derived from this software
19+
without specific prior written permission.
20+
21+
THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS" AND ANY EXPRESS OR
22+
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23+
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24+
IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT, INDIRECT,
25+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26+
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30+
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31+
32+
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
33+
34+
Section Name: Media Server Studio
35+
36+
Intel End User License Agreement:
37+
https://software.intel.com/en-us/articles/end-user-license-agreement
38+
39+
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
40+
41+
Section Name: gstreamer-1.0
42+
43+
GNU LIBRARY GENERAL PUBLIC LICENSE
44+
Version 2, June 1991
45+
46+
Copyright (C) 1991 Free Software Foundation, Inc.
47+
51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
48+
Everyone is permitted to copy and distribute verbatim copies
49+
of this license document, but changing it is not allowed.
50+
51+
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
52+
53+
Section Name: gstallocators-1.0
54+
55+
GNU GENERAL PUBLIC LICENSE
56+
Version 2, June 1991
57+
58+
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
59+
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
60+
Everyone is permitted to copy and distribute verbatim copies
61+
of this license document, but changing it is not allowed.
62+
63+
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
64+
65+
Section Name: gstvideo-1.0
66+
67+
GNU LESSER GENERAL PUBLIC LICENSE
68+
Version 2.1, February 1999
69+
70+
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
71+
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
72+
Everyone is permitted to copy and distribute verbatim copies
73+
of this license document, but changing it is not allowed.
74+
75+
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
76+
77+
Section Name: GObject
78+
79+
GNU LIBRARY GENERAL PUBLIC LICENSE
80+
Version 2, June 1991
81+
82+
Copyright (C) 1991 Free Software Foundation, Inc.
83+
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
84+
Everyone is permitted to copy and distribute verbatim copies
85+
of this license document, but changing it is not allowed.
86+
87+
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
88+
89+
Section Name: Glib
90+
91+
GNU LIBRARY GENERAL PUBLIC LICENSE
92+
Version 2, June 1991
93+
94+
Copyright (C) 1991 Free Software Foundation, Inc.
95+
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
96+
Everyone is permitted to copy and distribute verbatim copies
97+
of this license document, but changing it is not allowed.
98+
99+
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
100+
101+
Section Name: libVA
102+
103+
Permission is hereby granted, free of charge, to any person obtaining a
104+
copy of this software and associated documentation files (the
105+
"Software"), to deal in the Software without restriction, including
106+
without limitation the rights to use, copy, modify, merge, publish,
107+
distribute, sub license, and/or sell copies of the Software, and to
108+
permit persons to whom the Software is furnished to do so, subject to
109+
the following conditions:
110+
111+
The above copyright notice and this permission notice (including the
112+
next paragraph) shall be included in all copies or substantial portions
113+
of the Software.
114+
115+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
116+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
117+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
118+
IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
119+
ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
120+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
121+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
122+
123+
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
124+
125+
Section Name: libDRM
126+
127+
Permission is hereby granted, free of charge, to any person obtaining a
128+
copy of this software and associated documentation files (the
129+
"Software"), to deal in the Software without restriction, including
130+
without limitation the rights to use, copy, modify, merge, publish,
131+
distribute, sub license, and/or sell copies of the Software, and to
132+
permit persons to whom the Software is furnished to do so, subject to
133+
the following conditions:
134+
135+
The above copyright notice and this permission notice (including the
136+
next paragraph) shall be included in all copies or substantial portions
137+
of the Software.
138+
139+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
140+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
141+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
142+
IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
143+
ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
144+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
145+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)