summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--movie.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/movie.c b/movie.c
index 206d7d3..94c2f92 100644
--- a/movie.c
+++ b/movie.c
@@ -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);