diff options
author | Daniel Meyerholt <dxm523@googlemail.com> | 2014-06-21 17:06:33 +0200 |
---|---|---|
committer | Daniel Meyerholt <dxm523@googlemail.com> | 2014-06-21 17:06:33 +0200 |
commit | f51b6ba89c4cbe13c40b73092e86b31d2508bc06 (patch) | |
tree | 12917a37a36a79ddb5c095a58c8720ab4866f544 | |
parent | 02777433ad46ff40b795c479b4cf50572dd28dfe (diff) | |
download | vdr-plugin-vdrrip-f51b6ba89c4cbe13c40b73092e86b31d2508bc06.tar.gz vdr-plugin-vdrrip-f51b6ba89c4cbe13c40b73092e86b31d2508bc06.tar.bz2 |
* Some debug output
-rw-r--r--[-rwxr-xr-x] | movie.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -575,7 +575,12 @@ void cMovie::queryAudioDataVDR() { size_t i = 0; int n = 0; int c = 0; - + cRecording *crec = new cRecording(Dir); + for (int i=0;i<crec->Info()->Components()->NumComponents();i++) { + tComponent *t = crec->Info()->Components()->Component(i); + dsyslog("[vdrrip] component %s",(const char *)t->ToString()); + } + delete (crec); // Get Audio PID if (!OldRecording) { asprintf(&cmd, AUDIOPID, MPlayer, Dir); |