summaryrefslogtreecommitdiff
path: root/src/h__Writer.cpp
diff options
context:
space:
mode:
authorjhurst <jhurst@cinecert.com>2012-03-16 00:28:23 +0000
committerjhurst <>2012-03-16 00:28:23 +0000
commitaac3cfda50b82f7b763b69b9acfcc4d63c81d98b (patch)
tree60d819d1c568564e926a34488e69dd574bf11580 /src/h__Writer.cpp
parente511dc66f4a9c9278964d89a85662fcd9bfb18ac (diff)
as-02ooooooooooo!
Diffstat (limited to 'src/h__Writer.cpp')
-rwxr-xr-xsrc/h__Writer.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/h__Writer.cpp b/src/h__Writer.cpp
index f21b165..48b3486 100755
--- a/src/h__Writer.cpp
+++ b/src/h__Writer.cpp
@@ -41,31 +41,6 @@ using namespace ASDCP::MXF;
#endif
-static std::vector<int>
-version_split(const char* str)
-{
- std::vector<int> result;
-
- const char* pstr = str;
- const char* r = strchr(pstr, '.');
-
- while ( r != 0 )
- {
- assert(r >= pstr);
- if ( r > pstr )
- result.push_back(atoi(pstr));
-
- pstr = r + 1;
- r = strchr(pstr, '.');
- }
-
- if( strlen(pstr) > 0 )
- result.push_back(atoi(pstr));
-
- assert(result.size() == 3);
- return result;
-}
-
//
ASDCP::h__Writer::h__Writer(const Dictionary& d) :