Dear Mr. ZeeFrench,
First, we did not succeed with your gstream example on our QSB, does it have any other dependency?
Second, we don't want to use gstream for decoding, we just want to run it in our own application. Gstream is too complex for us to implemented, mxc_vpu_test is good example for multi-decoding, but we found we get many errors with it.
For mxc_vpu_test, it should decode 2 files at same time, we use it as follow:
./mxc_vpu_test.out -D "-i ./test1.mp4 -j 0 -k 0 -w 176 -h 144 " \
-D "-i ./test2.mp4 -j 176 -k 0 -w 176 -h 144 "
If we decode it with only one file (test1.mp4), it works well. but when decode it with 2 files, then failed.
The test1.mp4 and test2.mp4 are copied from same file in the config fold. but we get errors when display in V4L2.
Or we are running 2 instance like yours here:
./mxc_vpu_test.out -D "-i ./test1.mp4 -j 0 -k 0 -w 176 -h 144 " &
./mxc_vpu_test.out -D "-i ./test2.mp4 -j 176 -k 0 -w 176 -h 144 " &
[ERR] VIDIOC_S_OUTPUT failed
And we still get errors.
Regards. Jason