I wrote 2 Programs in C++, one using Qt and libav, the other one using Qt, v4l2 and libav. They are both supposed to tune to a TV-Broadcast channel and read them out.
Problem
If I tune externally over the console with azap from dvb-utils to some station:
- I can access the video input on /dev/dvb/adapter0/dvr0 through libav without any problems
- I can access the video input on /dev/dvb/adapter0/dvr0 through v4l2 without any problems
- I can also access the video input on /dev/dvb/adapter0/dvr0 with mplayer from the console without any problems.
If I tune to some station from within my program, having implemented the azap from dvb-util as a separate thread directly from the azap source-code:
- I can't access the video input on /dev/dvb/adapter0/dvr0 through libav
- I can access the video input on /dev/dvb/adapter0/dvr0 through v4l2 without any problems
- I can't also access the video input on /dev/dvb/adapter0/dvr0 with mplayer from the console.
Question
Is there a problem with access rights? I do not see where it could be going wrong. Since I wrote a lot of code it would probably be too much to post here. But generally speaking, Could there be an issue with having the dvr-reader function running in a seperate Thread from the Tuner-Thread?
What could be a reason for not getting the access to the input?