Hello!
I got a probblem when running decode demo.
When dm365 boot, the first time execution of "decode" runs well. But executed again, it failed. one execution - one reset required.
The command sequence is as follows.
# ./loadmodules_sd.sh or ./loadmodules_hd.sh
# ./decode -v test.mpeg4 // 720x480 encoded with encode demo using composite input
The only clue that I found is that there are differences in log output from module ( or kernel ? )
1. when failed
layer.pix_fmt.bytesperline = 32
layer.pix_fmt.width = 32
layer.pix_fmt.height = 2
layer.pix_fmt.sizeimage =96
pixfmt->width = 32
layer->layer_info.config.line_length = 32
2. when it works
layer.pix_fmt.bytesperline = 736
layer.pix_fmt.width = 720
layer.pix_fmt.height = 480
layer.pix_fmt.sizeimage =529920
pixfmt->width = 720
layer->layer_info.config.line_length = 736
Thanks in advance.