summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
Yunji Kim [Mon, 29 Oct 2012 04:24:27 +0000 (13:24 +0900)]
vdec/osal: Remove unused format.
- OMX_SEC_COLOR_FormatNV12TPhysicalAddress
- OMX_SEC_COLOR_FormatANBYUV420SemiPlanar
Change-Id: I31d743c2bec1ea2da8847940d8f9d7b36308e09b
Signed-off-by: Yunji Kim <yunji.kim@samsung.com>
Signed-off-by: Huisung Kang <hs1218.kang@samsung.com>
Taehwan Kim [Mon, 29 Oct 2012 04:18:30 +0000 (13:18 +0900)]
vdec: modified an error check routine
If do "buffer flush" without doing srcIn function,
In case of BUFFER_COPY,
always return OMX_ErrorBadParameter
in the codecEnQueueAllBuffer function.
Change-Id: I01e8f421b68d6f66b0939334fc128901fb30210d
Signed-off-by: Taehwan Kim <t_h.kim@samsung.com>
Signed-off-by: Huisung Kang <hs1218.kang@samsung.com>
Taehwan Kim [Mon, 29 Oct 2012 04:13:59 +0000 (13:13 +0900)]
common: Added a bufferQ cleaning routine
When changing to Loaded from Idle,
does not clean a bufferQ at each port.
Then, possible to access old infomation
in input or output buffer getQueue function.
Change-Id: I574f9783abaaf9def7413588e2e3341602cdcc70
Signed-off-by: Taehwan Kim <t_h.kim@samsung.com>
Signed-off-by: Huisung Kang <hs1218.kang@samsung.com>
Taehwan Kim [Mon, 29 Oct 2012 04:12:08 +0000 (13:12 +0900)]
vdec/include: fixed to return an input buffer to client
Error frame is skipped by Check_Stream_StartCode function.
but, It isn't returned to client.
added OMX_ErrorCorruptedFrame return type and handling scheme.
Change-Id: I18bff34e143b6b956f77346f27c8926c5aef1022
Signed-off-by: Taehwan Kim <t_h.kim@samsung.com>
Signed-off-by: Huisung Kang <hs1218.kang@samsung.com>
Yunji Kim [Mon, 29 Oct 2012 04:07:20 +0000 (13:07 +0900)]
core: Changed the library loading information.
changed the error level from trace to info.
Change-Id: Id752a6461cc11bbb153275df057f31404213d0fd
Signed-off-by: Yunji Kim <yunji.kim@samsung.com>
Signed-off-by: Huisung Kang <hs1218.kang@samsung.com>
Taehwan Kim [Mon, 29 Oct 2012 04:05:00 +0000 (13:05 +0900)]
vdec: resolved prevent defects
resolved defects like below
1. UNREACHABLE
2. NO_EFFECT
3. FORWARD_NULL
4. DEADCODE
Change-Id: Id1961c3bd693f28eb0d7d87d702f5899ec954225
Signed-off-by: Taehwan Kim <t_h.kim@samsung.com>
Signed-off-by: Huisung Kang <hs1218.kang@samsung.com>
Taehwan Kim [Mon, 29 Oct 2012 03:59:34 +0000 (12:59 +0900)]
vdec: fixed a problem about drop frame logic
After skeeing, If not exist startup code in the first frame,
can't escape the drop frame logic.
Change-Id: Ia095dbdd7cc1554a15adaac91bea7eeb8b577ee7
Signed-off-by: Taehwan Kim <t_h.kim@samsung.com>
Signed-off-by: Huisung Kang <hs1218.kang@samsung.com>
Huisung Kang [Mon, 29 Oct 2012 03:55:59 +0000 (12:55 +0900)]
code cleanup
Change-Id: I8627745966029678d9de77f8665e993f94972787
Signed-off-by: Huisung Kang <hs1218.kang@samsung.com>
Jinsung Yang [Mon, 29 Oct 2012 02:45:44 +0000 (11:45 +0900)]
video/common: Code cleanup for bitmask comparisons
This patch cleans up the coding style of bitmask comparisons for
easy understanding like below:
- if ((pExynosInputPort->bufferProcessType & BUFFER_COPY) == BUFFER_COPY)
+ if (pExynosInputPort->bufferProcessType & BUFFER_COPY)
- if (pExynosOutputPort->bufferProcessType == BUFFER_SHARE)
+ if (pexynosOutputPort->bufferProcessType & BUFFER_SHARE)
Change-Id: I43e0e216ac13e1e84dbe1822bc69984ad4ca4555
Signed-off-by: Jinsung Yang <jsgood.yang@samsung.com>
Signed-off-by: Huisung Kang <hs1218.kang@samsung.com>
Huisung Kang [Mon, 29 Oct 2012 02:27:32 +0000 (11:27 +0900)]
video: Remove useless definition of include header
'$(TOP)/hardware/samsung_slsi/exynos/libcsc' is not need to.
Change-Id: I61fc12a78e52203deb4f38793f1097861e0cc3f4
Signed-off-by: Huisung Kang <hs1218.kang@samsung.com>
Yunji Kim [Sat, 27 Oct 2012 02:51:27 +0000 (11:51 +0900)]
osal: Changed error check routine for ion_client_create function.
Because the return value of ion_client_create function chagned from
ion_client pointer to ion_client type.
ion_client_create returns negative value if creating new ion_client is
failed.
Change-Id: I736edff5373d1c3adc340cbd0e804502076b89a6
Signed-off-by: Yunji Kim <yunji.kim@samsung.com>
Signed-off-by: Huisung Kang <hs1218.kang@samsung.com>
Satish Kumar Reddy [Tue, 28 Aug 2012 17:56:28 +0000 (17:56 +0000)]
video: dec: h264: S3D support
This patch enables S3D support, only when output buffer is
BUFFER_COPY mode
Change-Id: Icbc7ada44528c396f12db864136aebab7fb920ae
Signed-off-by: Satish Kumar Reddy <palli.satish@samsung.com>
Signed-off-by: Huisung Kang <hs1218.kang@samsung.com>
Yunji Kim [Sat, 27 Oct 2012 01:10:59 +0000 (10:10 +0900)]
exynos_omx: Add BOARD_USE_KHRONOS_OMX_HEADER flag.
BOARD_USE_KHRONOS_OMX_HEADER flag is needed to include proper openMAX
spec header file.
If BOARD_USE_KHRONOS_OMX_HEADER is true, use khronos's original omx
header files.
- $(EXYNOS_OMX_TOP)/include/khronos/
else, use android's omx header files.
- frameworks/native/include/media/openmax
Google extends OMX header files of Khronos.
- OMX_COLOR_FormatAndroidOpaque was added in OMX_COLOR_FORMATTYPE.
- OMX_VIDEO_CodingVPX was added in OMX_VIDEO_CODINGTYPE.
- FLAC type for audio was added.
- etc..
So this BOARD_USE_KHRONOS_OMX_HEADER flag is needed to avoid conflict
error about OMX_COLOR_FormatAndroidOpaque, etc.
Change-Id: Ib03ad0ea83669e58125da32d590368ac11d36677
Signed-off-by: Yunji Kim <yunji.kim@samsung.com>
Signed-off-by: Huisung Kang <hs1218.kang@samsung.com>
Huisung Kang [Sat, 27 Oct 2012 00:53:00 +0000 (09:53 +0900)]
Code cleanup for Android.mk
This patch fixup build error and remove unused definitions
Change-Id: I14e03bfb65778bb20a30f5f7a5581e3c378f6b66
Signed-off-by: Yunji Kim <yunji.kim@samsung.com>
Signed-off-by: Huisung Kang <hs1218.kang@samsung.com>
Huisung Kang [Sat, 27 Oct 2012 03:08:06 +0000 (12:08 +0900)]
Modified Android.mk to support various SoCs
Change-Id: I871a0bb6c8cc0499690f9011084376013fd0cc03
Signed-off-by: Huisung Kang <hs1218.kang@samsung.com>
Yunji Kim [Thu, 11 Oct 2012 06:32:10 +0000 (06:32 +0000)]
exynos_omx has moved from hardware/samsung_slsi/exynos5
Change-Id: I16f3ebed97ae8921436a09d9e2e653bb7172b3d2
Signed-off-by: Yunji Kim <yunji.kim@samsung.com>
Signed-off-by: Huisung Kang <hs1218.kang@samsung.com>
Seokkeun Ahn [Fri, 24 Aug 2012 07:23:53 +0000 (16:23 +0900)]
empty base