Merge pull request #9 from dcbullock/master
[asdcplib.git] / src / as-02-wrap.cpp
index 204feb0d2007b76ec610f3fdb82646d5ce1d96a8..a4984741a5d7345a57f955d1fa1a77c5b7a2b9b1 100755 (executable)
@@ -176,8 +176,8 @@ Options:\n\
   -t <min>          - Set RGB component minimum code value (default: 0)\n\
   -T <max>          - Set RGB component maximum code value (default: 1023)\n\
   -u                - Print UL catalog to stdout\n\
-  -u <URI>          - ISXD (RDD47) document URI (use 'auto' to read the\n\
-                      namespace name from the first edit unit\n\
+  -U <URI>          - ISXD (RDD47) document URI (use 'auto' to read the\n\
+                      namespace name from the first edit unit)\n\
   -v                - Verbose, prints informative messages to stderr\n\
   -W                - Read input file only, do not write source file\n\
   -x <int>          - Horizontal subsampling degree (default: 2)\n\
@@ -473,12 +473,12 @@ public:
     std::list<std::string> range_tokens = Kumu::km_token_split(arg, ",");
     if ( range_tokens.size() != 2 )
       {
-       fprintf(stderr, "Expecting a luminance pair.\n");
+       fprintf(stderr, "Expecting a code value pair.\n");
        return false;
       }
 
-    if ( ! set_luminance_from_token(range_tokens.front(), target_frame_min_ref) ) return false;
-    if ( ! set_luminance_from_token(range_tokens.back(), target_frame_max_ref) ) return false;
+    target_frame_min_ref = strtol(range_tokens.front().c_str(), 0 , 10);
+    target_frame_max_ref = strtol(range_tokens.back().c_str(), 0 , 10);
 
     return true;
   }