From 7e9ad089942bc3f1f9b461c87203b515c6d4a237 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 29 Jul 2016 16:21:13 +0100 Subject: Simplify NameFormat classes a bit. --- src/filename_format.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/filename_format.cc') diff --git a/src/filename_format.cc b/src/filename_format.cc index 37fc12a0..d1536c08 100644 --- a/src/filename_format.cc +++ b/src/filename_format.cc @@ -39,6 +39,8 @@ using namespace dcp; FilenameFormat::FilenameFormat (string specification) : NameFormat (specification) { - add ("type", 't', "asset type (j2c/pcm/sub/pkl/cpl)"); - add ("id", 'i', "unique ID"); + /* asset type */ + add ('t'); + /* unique ID */ + add ('i'); } -- cgit v1.2.3