aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--10_wrs_omxil_core.cfg8
-rw-r--r--AUTHORS12
-rw-r--r--Android.mk8
-rw-r--r--COPYING5
-rw-r--r--base/inc/cmodule.h18
-rw-r--r--base/inc/componentbase.h18
-rw-r--r--base/inc/portaudio.h18
-rw-r--r--base/inc/portbase.h18
-rw-r--r--base/inc/portimage.h18
-rw-r--r--base/inc/portother.h18
-rw-r--r--base/inc/portvideo.h18
-rw-r--r--base/src/Android.mk8
-rw-r--r--base/src/cmodule.cpp18
-rw-r--r--base/src/componentbase.cpp18
-rw-r--r--base/src/ebuild.mk8
-rw-r--r--base/src/portaudio.cpp18
-rw-r--r--base/src/portbase.cpp18
-rw-r--r--base/src/portimage.cpp18
-rw-r--r--base/src/portother.cpp18
-rw-r--r--base/src/portvideo.cpp18
-rw-r--r--core/src/Android.mk8
-rw-r--r--core/src/ebuild.mk8
-rw-r--r--core/src/pv_omx_interface.cpp20
-rw-r--r--core/src/wrs_omxcore.cpp18
-rw-r--r--ebuild.mk8
-rw-r--r--utils/inc/audio_parser.h18
-rw-r--r--utils/inc/list.h18
-rw-r--r--utils/inc/log.h18
-rw-r--r--utils/inc/module.h18
-rw-r--r--utils/inc/queue.h18
-rw-r--r--utils/inc/thread.h18
-rw-r--r--utils/inc/workqueue.h18
-rw-r--r--utils/src/Android.mk8
-rw-r--r--utils/src/audio_parser.c18
-rw-r--r--utils/src/ebuild.mk8
-rw-r--r--utils/src/list.c18
-rw-r--r--utils/src/module.c18
-rw-r--r--utils/src/queue.c18
-rw-r--r--utils/src/thread.cpp18
-rw-r--r--utils/src/workqueue.cpp18
40 files changed, 402 insertions, 211 deletions
diff --git a/10_wrs_omxil_core.cfg b/10_wrs_omxil_core.cfg
index b36ab4f..b495d0c 100644
--- a/10_wrs_omxil_core.cfg
+++ b/10_wrs_omxil_core.cfg
@@ -1,9 +1 @@
-#
-# Copyright (c) 2009-2010 Wind River Systems, Inc.
-#
-# The right to copy, distribute, modify, or otherwise make use
-# of this software may be licensed only pursuant to the terms
-# of an applicable Wind River license agreement.
-#
-
(0xa054369c,0x22c5,0x412e,0x19,0x17,0x87,0x4c,0x1a,0x19,0xd4,0x5f),"libwrs_omxil_core_pvwrapped.so"
diff --git a/AUTHORS b/AUTHORS
index 90bab70..9ef10a0 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,15 +1,7 @@
-/*
- * Copyright (c) 2009-2010 Wind River Systems, Inc.
- *
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
- */
-
-OMX-IL Core Library (base)
+OMX-IL Core Library (core)
Ho-Eun Ryu <ho-eun.ryu@windriver.com>
-Component Base Framework (core)
+Component Base Framework (base)
Ho-Eun Ryu <ho-eun.ryu@windriver.com>
Utility Library (utils)
diff --git a/Android.mk b/Android.mk
index 5596c8a..a0e7060 100644
--- a/Android.mk
+++ b/Android.mk
@@ -1,11 +1,3 @@
-#
-# Copyright (c) 2009-2010 Wind River Systems, Inc.
-#
-# The right to copy, distribute, modify, or otherwise make use
-# of this software may be licensed only pursuant to the terms
-# of an applicable Wind River license agreement.
-#
-
ifeq ($(strip $(BOARD_USES_WRS_OMXIL_CORE)),true)
LOCAL_PATH := $(call my-dir)
diff --git a/COPYING b/COPYING
deleted file mode 100644
index ceea955..0000000
--- a/COPYING
+++ /dev/null
@@ -1,5 +0,0 @@
-Copyright (c) 2009 Wind River Systems, Inc.
-
-The right to copy, distribute, modify, or otherwise make use of this software
-may be licensed only pursuant to the terms of an applicable Wind River license
-agreement.
diff --git a/base/inc/cmodule.h b/base/inc/cmodule.h
index 47a958f..7fa6275 100644
--- a/base/inc/cmodule.h
+++ b/base/inc/cmodule.h
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * cmodule.h, component module interface class
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#ifndef __CMODULE_H
diff --git a/base/inc/componentbase.h b/base/inc/componentbase.h
index 11ddab0..a8cbf43 100644
--- a/base/inc/componentbase.h
+++ b/base/inc/componentbase.h
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * componentbase.h, component base class
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#ifndef __COMPONENTBASE_H
diff --git a/base/inc/portaudio.h b/base/inc/portaudio.h
index 3142940..1c0debf 100644
--- a/base/inc/portaudio.h
+++ b/base/inc/portaudio.h
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * portaudio.h, port class for audio
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#ifndef __PORTAUDIO_H
diff --git a/base/inc/portbase.h b/base/inc/portbase.h
index dfcc811..dab81e2 100644
--- a/base/inc/portbase.h
+++ b/base/inc/portbase.h
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * portbase.h, port base class
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#ifndef __PORTBASE_H
diff --git a/base/inc/portimage.h b/base/inc/portimage.h
index 3875a67..2820ffa 100644
--- a/base/inc/portimage.h
+++ b/base/inc/portimage.h
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * portimage.h, port class for image
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#ifndef __PORTIMAGE_H
diff --git a/base/inc/portother.h b/base/inc/portother.h
index 46a0310..142ba19 100644
--- a/base/inc/portother.h
+++ b/base/inc/portother.h
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * portother.h, port class for other
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#ifndef __PORTOTHER_H
diff --git a/base/inc/portvideo.h b/base/inc/portvideo.h
index 57909e9..2c07834 100644
--- a/base/inc/portvideo.h
+++ b/base/inc/portvideo.h
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * portvideo.h, port class for video
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#ifndef __PORTVIDEO_H
diff --git a/base/src/Android.mk b/base/src/Android.mk
index 0975440..6f84fe4 100644
--- a/base/src/Android.mk
+++ b/base/src/Android.mk
@@ -1,11 +1,3 @@
-#
-# Copyright (c) 2009-2010 Wind River Systems, Inc.
-#
-# The right to copy, distribute, modify, or otherwise make use
-# of this software may be licensed only pursuant to the terms
-# of an applicable Wind River license agreement.
-#
-
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
diff --git a/base/src/cmodule.cpp b/base/src/cmodule.cpp
index ab5c08c..002648a 100644
--- a/base/src/cmodule.cpp
+++ b/base/src/cmodule.cpp
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * cmodule.cpp, component module interface class
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#include <stdio.h>
diff --git a/base/src/componentbase.cpp b/base/src/componentbase.cpp
index edc44ee..34eb940 100644
--- a/base/src/componentbase.cpp
+++ b/base/src/componentbase.cpp
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * componentbase.cpp, component base class
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#include <stdlib.h>
diff --git a/base/src/ebuild.mk b/base/src/ebuild.mk
index 754d928..77454d8 100644
--- a/base/src/ebuild.mk
+++ b/base/src/ebuild.mk
@@ -1,11 +1,3 @@
-#
-# Copyright (c) 2009-2010 Wind River Systems, Inc.
-#
-# The right to copy, distribute, modify, or otherwise make use
-# of this software may be licensed only pursuant to the terms
-# of an applicable Wind River license agreement.
-#
-
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
diff --git a/base/src/portaudio.cpp b/base/src/portaudio.cpp
index 0b37b94..cab5e36 100644
--- a/base/src/portaudio.cpp
+++ b/base/src/portaudio.cpp
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * portaudio.cpp, port class for audio
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#include <stdlib.h>
diff --git a/base/src/portbase.cpp b/base/src/portbase.cpp
index 581c506..5d06f1e 100644
--- a/base/src/portbase.cpp
+++ b/base/src/portbase.cpp
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * portbase.cpp, base port class
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#include <stdlib.h>
diff --git a/base/src/portimage.cpp b/base/src/portimage.cpp
index 0109a20..a395c53 100644
--- a/base/src/portimage.cpp
+++ b/base/src/portimage.cpp
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * portimage.cpp, port class for image
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#include <stdlib.h>
diff --git a/base/src/portother.cpp b/base/src/portother.cpp
index ff17037..c7a9d3f 100644
--- a/base/src/portother.cpp
+++ b/base/src/portother.cpp
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * portother.cpp, port class for other
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#include <stdlib.h>
diff --git a/base/src/portvideo.cpp b/base/src/portvideo.cpp
index 1a1e61e..cdc340d 100644
--- a/base/src/portvideo.cpp
+++ b/base/src/portvideo.cpp
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * portvideo.cpp, port class for video
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#include <stdlib.h>
diff --git a/core/src/Android.mk b/core/src/Android.mk
index f526873..3ae9ef6 100644
--- a/core/src/Android.mk
+++ b/core/src/Android.mk
@@ -1,11 +1,3 @@
-#
-# Copyright (c) 2009-2010 Wind River Systems, Inc.
-#
-# The right to copy, distribute, modify, or otherwise make use
-# of this software may be licensed only pursuant to the terms
-# of an applicable Wind River license agreement.
-#
-
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
diff --git a/core/src/ebuild.mk b/core/src/ebuild.mk
index aa1f298..d2ce4ff 100644
--- a/core/src/ebuild.mk
+++ b/core/src/ebuild.mk
@@ -1,11 +1,3 @@
-#
-# Copyright (c) 2009-2010 Wind River Systems, Inc.
-#
-# The right to copy, distribute, modify, or otherwise make use
-# of this software may be licensed only pursuant to the terms
-# of an applicable Wind River license agreement.
-#
-
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
diff --git a/core/src/pv_omx_interface.cpp b/core/src/pv_omx_interface.cpp
index 2d406ba..7de2d20 100644
--- a/core/src/pv_omx_interface.cpp
+++ b/core/src/pv_omx_interface.cpp
@@ -1,11 +1,3 @@
-/*
- * Copyright (c) 2009-2010 Wind River Systems, Inc.
- *
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
- */
-
/* ------------------------------------------------------------------
* Copyright (C) 1998-2009 PacketVideo
*
@@ -23,11 +15,16 @@
* and limitations under the License.
* -------------------------------------------------------------------
*/
+
+/* Contains changes by Wind River Systems, 2009-2010 */
+
#include "pvlogger.h"
#include "pv_omxcore.h"
#include "omx_interface.h"
+
+
class PVOMXInterface : public OMXInterface
{
public:
@@ -69,7 +66,7 @@ class PVOMXInterface : public OMXInterface
pOMX_GetRolesOfComponent = OMX_GetRolesOfComponent;
pOMX_SetupTunnel = OMX_SetupTunnel;
pOMX_GetContentPipe = OMX_GetContentPipe;
- //pOMXConfigParser = OMXConfigParser;
+ /* pOMXConfigParser = OMXConfigParser; */
};
};
@@ -81,13 +78,12 @@ extern "C"
{
return PVOMXInterface::Instance();
}
- OSCL_EXPORT_REF void PVReleaseInterface(void* aInterface)
+ OSCL_EXPORT_REF void PVReleaseInterface(void* interface)
{
- PVOMXInterface* pInterface = (PVOMXInterface*)aInterface;
+ PVOMXInterface* pInterface = (PVOMXInterface*)interface;
if (pInterface)
{
OSCL_DELETE(pInterface);
}
}
-
}
diff --git a/core/src/wrs_omxcore.cpp b/core/src/wrs_omxcore.cpp
index efb21cc..807ba6b 100644
--- a/core/src/wrs_omxcore.cpp
+++ b/core/src/wrs_omxcore.cpp
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * wrs_core.cpp, Wind River OpenMax-IL Core
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#include <stdio.h>
diff --git a/ebuild.mk b/ebuild.mk
index 041843f..06676e0 100644
--- a/ebuild.mk
+++ b/ebuild.mk
@@ -1,11 +1,3 @@
-#
-# Copyright (c) 2009-2010 Wind River Systems, Inc.
-#
-# The right to copy, distribute, modify, or otherwise make use
-# of this software may be licensed only pursuant to the terms
-# of an applicable Wind River license agreement.
-#
-
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
diff --git a/utils/inc/audio_parser.h b/utils/inc/audio_parser.h
index 46c1a9c..8abac3c 100644
--- a/utils/inc/audio_parser.h
+++ b/utils/inc/audio_parser.h
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * audio_parser.h, helper parser for audio codec data
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#ifndef __WRS_OMXIL_AUDIO_PARSER
diff --git a/utils/inc/list.h b/utils/inc/list.h
index c0fb944..3f12a53 100644
--- a/utils/inc/list.h
+++ b/utils/inc/list.h
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * list.h, list
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#ifndef __LIST_H
diff --git a/utils/inc/log.h b/utils/inc/log.h
index 7d42166..530237a 100644
--- a/utils/inc/log.h
+++ b/utils/inc/log.h
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * log.h, logging helper
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#ifndef __LOG_H
diff --git a/utils/inc/module.h b/utils/inc/module.h
index ab97bdc..9842e42 100644
--- a/utils/inc/module.h
+++ b/utils/inc/module.h
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * module.h, dynamic module interface
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#ifndef __MODULE_H
diff --git a/utils/inc/queue.h b/utils/inc/queue.h
index 1e78f63..f7976cd 100644
--- a/utils/inc/queue.h
+++ b/utils/inc/queue.h
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * queue.h, queue
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#ifndef __QUEUE_H
diff --git a/utils/inc/thread.h b/utils/inc/thread.h
index f00380b..a29e538 100644
--- a/utils/inc/thread.h
+++ b/utils/inc/thread.h
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * thread.h, thread class
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#ifndef __THREAD_H
diff --git a/utils/inc/workqueue.h b/utils/inc/workqueue.h
index 51a0fdc..791714d 100644
--- a/utils/inc/workqueue.h
+++ b/utils/inc/workqueue.h
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * workqueue.h, workqueue class
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#ifndef __WORKQUEUE_H
diff --git a/utils/src/Android.mk b/utils/src/Android.mk
index 1f3fec2..5b432ce 100644
--- a/utils/src/Android.mk
+++ b/utils/src/Android.mk
@@ -1,11 +1,3 @@
-#
-# Copyright (c) 2009-2010 Wind River Systems, Inc.
-#
-# The right to copy, distribute, modify, or otherwise make use
-# of this software may be licensed only pursuant to the terms
-# of an applicable Wind River license agreement.
-#
-
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
diff --git a/utils/src/audio_parser.c b/utils/src/audio_parser.c
index 0a54e09..f8fc8bd 100644
--- a/utils/src/audio_parser.c
+++ b/utils/src/audio_parser.c
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * audio_parser.c, helper parser for audio codec data
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#include <endian.h>
diff --git a/utils/src/ebuild.mk b/utils/src/ebuild.mk
index 5ca9bbb..2955ed7 100644
--- a/utils/src/ebuild.mk
+++ b/utils/src/ebuild.mk
@@ -1,11 +1,3 @@
-#
-# Copyright (c) 2009-2010 Wind River Systems, Inc.
-#
-# The right to copy, distribute, modify, or otherwise make use
-# of this software may be licensed only pursuant to the terms
-# of an applicable Wind River license agreement.
-#
-
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
diff --git a/utils/src/list.c b/utils/src/list.c
index 0b17475..7cf87c9 100644
--- a/utils/src/list.c
+++ b/utils/src/list.c
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * list.c, list
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#include <stdlib.h>
diff --git a/utils/src/module.c b/utils/src/module.c
index b8742d2..93ced62 100644
--- a/utils/src/module.c
+++ b/utils/src/module.c
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * module.c, dynamic module interface
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#include <string.h>
diff --git a/utils/src/queue.c b/utils/src/queue.c
index e0eace9..6e54502 100644
--- a/utils/src/queue.c
+++ b/utils/src/queue.c
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * queue.c, queue
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#include <stdlib.h>
diff --git a/utils/src/thread.cpp b/utils/src/thread.cpp
index 226b765..0127f06 100644
--- a/utils/src/thread.cpp
+++ b/utils/src/thread.cpp
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * thread.cpp, thread class
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#include <pthread.h>
diff --git a/utils/src/workqueue.cpp b/utils/src/workqueue.cpp
index 153ca94..8ffaf75 100644
--- a/utils/src/workqueue.cpp
+++ b/utils/src/workqueue.cpp
@@ -1,9 +1,19 @@
/*
- * Copyright (c) 2009 Wind River Systems, Inc.
+ * workqueue.cpp, workqueue class
*
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
+ * Copyright (c) 2009-2010 Wind River Systems, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
#include <workqueue.h>