Displaying 1 result from an estimated 1 matches for "metadata_filename".
2004 Aug 06
1
ices: Metadata for im_stdinpcm
..."channels"))
             s->channels = atoi(current->value);
+        else if(!strcmp(current->name, "metadata"))
+            use_metadata = atoi(current->value);
+        else if(!strcmp(current->name, "metadatafilename"))
+            ices_config->metadata_filename = current->value;
         else
             LOG_WARN1("Unknown parameter %s for stdinpcm module", current->name);
 
         current = current->next;
+    }
+    if(use_metadata)
+    {
+        if(ices_config->metadata_filename)
+            thread_create("im_stdinpcm-m...