Diffstat (limited to 'src/iii-extract-riff-chunk.cc') (more/less context) (ignore whitespace changes)
-rw-r--r-- | src/iii-extract-riff-chunk.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/iii-extract-riff-chunk.cc b/src/iii-extract-riff-chunk.cc index 3a06db2..d53170d 100644 --- a/src/iii-extract-riff-chunk.cc +++ b/src/iii-extract-riff-chunk.cc @@ -6,25 +6,25 @@ #include <iostream> #include <fstream> #include <stdexcept> #include <cassert> #include <list> #include <string> #include <iterator> #include "config.h" #define PHEADER \ PACKAGE " Version " VERSION "\n" \ - "Copyright (c) 2009-2010 Klever Group" + "Copyright (c) 2009-2011 Klever Group" typedef uint32_t fourcc_type; enum fourcc_value { fourcc_RIFF = 0x46464952, fourcc_AVI = 0x20495641, fourcc_LIST = 0x5453494c, fourcc_hdrl = 0x6c726468, fourcc_strl = 0x6c727473, fourcc_ncdt = 0x7464636e, fourcc_ncvr = 0x7276636e, fourcc_nctg = 0x6774636e, fourcc_ncth = 0x6874636e }; fourcc_type str2fourcc(const char *str) { fourcc_type rv = 0; return *(fourcc_type*)strncpy((char*)&rv,str,sizeof(rv)); } |