I am using DVR RDK 3.0 and has a usecase of
cap -> ..... -> IPC_OUT_M3 - > IPC_IN_M3 -> enc -> ....
working normally.
now I try adding some link between IPC_IN_M3 and enc, becoming
.... -> IPC_IN_M3 -> Dup -> Select -> Merrge -> enc -> ....
| ---------------------------|
and gets the error Unhandled Exception
I tried only adding the Dup, Select, Merge link one by one only, and the merge link seems ok while adding the Dup and Select link still fail
The error is something similar to below
[m3video] Unhandled Exception:
[m3video] Exception occurred in ThreadType_Task
[m3video] handle: 0x3d320520.
[m3video] stack base: 0x3dd44e60.
[m3video] stack size: 0x8000.
[m3video] R0 = 0x644a4ab2 R8 = 0x3dbeca50
[m3video] R1 = 0xe581b1f1 R9 = 0x0000003c
[m3video] R2 = 0x00000000 R10 = 0x00000000
[m3video] R3 = 0x9d1eda24 R11 = 0xbf10b134
[m3video] R4 = 0x0000003c R12 = 0x9d21d679
[m3video] R5 = 0xffffffff SP(R13) = 0x3dd4cdb0
[m3video] R6 = 0x00000010 LR(R14) = 0x0032a81d
[m3video] R7 = 0xffffffff PC(R15) = 0x0032adc8
[m3video] PSR = 0x21000000
[m3video] ICSR = 0x0440f803
[m3video] MMFSR = 0x00
[m3video] BFSR = 0x82
[m3video] UFSR = 0x0000
[m3video] HFSR = 0x40000000
[m3video] DFSR = 0x00000000
[m3video] MMAR = 0x76aadcb9
[m3video] BFAR = 0x76aadcb9
[m3video] AFSR = 0x00000000
[m3video] Terminating Execution...
so my question is, is it ok to create SYSTEM_VIDEO_LINK_ID_DUP_0 or SYSTEM_VIDEO_LINK_ID_SELECT_0 on M3-video?
Thanks