diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f14f44c --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +# Mac Finder +.DS_Store +Icon? + +# Thumbnails +._* + +# Files that might appear on external disk +.Spotlight-V100 +.Trashes diff --git a/MP4Parse.xcodeproj/project.pbxproj b/MP4Parse.xcodeproj/project.pbxproj index dc5d92d..88c2d73 100644 --- a/MP4Parse.xcodeproj/project.pbxproj +++ b/MP4Parse.xcodeproj/project.pbxproj @@ -354,6 +354,7 @@ 05DE45A013378714002269FF /* Project object */ = { isa = PBXProject; attributes = { + LastUpgradeCheck = 0460; ORGANIZATIONNAME = eosgarden; }; buildConfigurationList = 05DE45A313378714002269FF /* Build configuration list for PBXProject "MP4Parse" */; @@ -377,6 +378,10 @@ isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_OPTIMIZATION_LEVEL = 0; GCC_PREPROCESSOR_DEFINITIONS = DEBUG; @@ -384,6 +389,7 @@ GCC_VERSION = com.apple.compilers.llvm.clang.1_0; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_VARIABLE = YES; MACOSX_DEPLOYMENT_TARGET = 10.6; ONLY_ACTIVE_ARCH = YES; @@ -395,10 +401,15 @@ isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_VARIABLE = YES; MACOSX_DEPLOYMENT_TARGET = 10.6; SDKROOT = macosx; @@ -409,6 +420,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + COMBINE_HIDPI_IMAGES = YES; COPY_PHASE_STRIP = NO; DEBUGGING_SYMBOLS = YES; GCC_DYNAMIC_NO_PIC = NO; @@ -425,6 +437,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + COMBINE_HIDPI_IMAGES = YES; COPY_PHASE_STRIP = YES; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; GCC_ENABLE_OBJC_EXCEPTIONS = YES; diff --git a/MP4Parse.xcodeproj/project.xcworkspace/xcuserdata/macmade.xcuserdatad/UserInterfaceState.xcuserstate b/MP4Parse.xcodeproj/project.xcworkspace/xcuserdata/macmade.xcuserdatad/UserInterfaceState.xcuserstate index 21d20ba..5bc1f5c 100644 Binary files a/MP4Parse.xcodeproj/project.xcworkspace/xcuserdata/macmade.xcuserdatad/UserInterfaceState.xcuserstate and b/MP4Parse.xcodeproj/project.xcworkspace/xcuserdata/macmade.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/MP4Parse.xcodeproj/xcuserdata/macmade.xcuserdatad/xcschemes/MP4Parse.xcscheme b/MP4Parse.xcodeproj/xcuserdata/macmade.xcuserdatad/xcschemes/MP4Parse.xcscheme index 66a8a37..e356c93 100644 --- a/MP4Parse.xcodeproj/xcuserdata/macmade.xcuserdatad/xcschemes/MP4Parse.xcscheme +++ b/MP4Parse.xcodeproj/xcuserdata/macmade.xcuserdatad/xcschemes/MP4Parse.xcscheme @@ -1,6 +1,7 @@ + LastUpgradeVersion = "0460" + version = "1.8"> @@ -22,7 +23,7 @@ @@ -30,13 +31,16 @@ + buildConfiguration = "Debug" + ignoresPersistentStateOnLaunch = "NO" + debugDocumentVersioning = "YES" + allowLocationSimulation = "YES"> @@ -46,7 +50,8 @@ shouldUseLaunchSchemeArgsEnv = "YES" savedToolIdentifier = "" useCustomWorkingDirectory = "NO" - buildConfiguration = "Release"> + buildConfiguration = "Release" + debugDocumentVersioning = "YES"> diff --git a/README.md b/README.md new file mode 100644 index 0000000..7eee779 --- /dev/null +++ b/README.md @@ -0,0 +1,24 @@ +MP4Parse +======== + +About +----- + +A project to parse MPEG-4 files in C++, similar to the [WOOPS PHP MPEG-4 component](https://github.com/macmade/WOOPS). +No longer developed, nor maintained. + +License +------- + +MP4Parse is released under the terms of the Boost Software License - Version 1.0. + +Repository Infos +---------------- + + Owner: Jean-David Gadina - XS-Labs + Web: www.xs-labs.com + Blog: www.noxeos.com + Twitter: @macmade + GitHub: github.com/macmade + LinkedIn: ch.linkedin.com/in/macmade/ + StackOverflow: stackoverflow.com/users/182676/macmade diff --git a/makefile b/makefile index 21af145..71893ac 100755 --- a/makefile +++ b/makefile @@ -1,6 +1,6 @@ # ------------------------------------------------------------------------------ # -# Copyright (c) 2010, Jean-David Gadina +# Copyright (c) 2010, Jean-David Gadina - www.xs-labs.com # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -38,13 +38,9 @@ # Please note that you need at least version 3.81 of GNU Make to use this file. # Older versions are not supported and will never be. # -# You also need a copy of the GNU Libtool in order to handle the shared objects. -# GNU Libtool is sometimes called glibtool, or simply libtool. -# Others implementations of Libtool are not supported at the time. -# #------------------------------------------------------------------------------- -# $Id: makefile 5 2011-03-18 00:56:58Z macmade@eosgarden.com $ +# $Id$ #------------------------------------------------------------------------------- # Includes @@ -147,14 +143,6 @@ _FILES_EXEC_BUILD = $(addprefix $(_DIR_BUILD_BIN),$(EXEC)) # Stem symbol (defined to avoid problems with the second expansion) _STEM = % -# Checks the debug mode for libtool -ifeq ($(DEBUG_LIBTOOL),0) - -# Debug off - Tells libtool to be quiet -_ARGS_LIBTOOL = --quiet - -endif - # Adds the include directory to the search paths _ARGS_CC = -I $(DIR_SRC_INC) -I $(DIR_SRC_LIB_INC) $(ARGS_CC) @@ -314,11 +302,13 @@ _exec_end: $(_DIR_BUILD_LIB)%$(EXT_LIB_ARCHIVE): %$(EXT_CODE) %$(EXT_HEADERS) @echo @echo ------ $(subst _CFILE_,$<,$(subst _DIR_BUILD_,$(_DIR_BUILD_LIB),$(LANG_LO_BUILD))) - @$(LIBTOOL) $(_ARGS_LIBTOOL) $(ARGS_LIBTOOL_COMPILE) $(CC) -o $(subst $(EXT_LIB_ARCHIVE),$(EXT_LIB_OBJECT),$@) -c $< $(_ARGS_CC) $(CFLAGS) + $(if $(filter 1,$(DEBUG_CC)), @echo $(CC) -o $(subst $(EXT_LIB_ARCHIVE),$(EXT_OBJECT),$@) -c $< $(_ARGS_CC) $(CFLAGS)) + @$(CC) -o $(subst $(EXT_LIB_ARCHIVE),$(EXT_OBJECT),$@) -c $< $(_ARGS_CC) $(CFLAGS) @echo ------ $(LANG_DONE) @echo - @echo ------ $(subst _TNAME_,$(addprefix $(_DIR_BUILD_LIB),$(subst $(EXT_LIB_ARCHIVE),$(EXT_LIB_OBJECT),$(@F))),$(subst _DIR_BUILD_,$(_DIR_BUILD_LIB),$(LANG_LA_BUILD))) - @$(LIBTOOL) $(_ARGS_LIBTOOL) $(ARGS_LIBTOOL_LINK) $(CC) -o $@ -c $(subst $(EXT_LIB_ARCHIVE),$(EXT_LIB_OBJECT),$@) $(_ARGS_CC) $(CFLAGS) + @echo ------ $(subst _TNAME_,$(addprefix $(_DIR_BUILD_LIB),$(subst $(EXT_LIB_ARCHIVE),$(EXT_OBJECT),$(@F))),$(subst _DIR_BUILD_,$(_DIR_BUILD_LIB),$(LANG_LA_BUILD))) + $(if $(filter 1,$(DEBUG_LIBTOOL)), @echo $(LIBTOOL) $(_ARGS_LIBTOOL) -static -o $@ $(subst $(EXT_LIB_ARCHIVE),$(EXT_OBJECT),$@)) + @$(LIBTOOL) $(_ARGS_LIBTOOL) -static -o $@ $(subst $(EXT_LIB_ARCHIVE),$(EXT_OBJECT),$@) @echo ------ $(LANG_DONE) # Builds the shared objects (with header file) @@ -374,8 +364,7 @@ $(_DIR_BUILD_BIN)%: $(_DIR_BUILD_OBJ)%$(EXT_OBJECT) $$(patsubst $$(_STEM),$(_DIR && echo ------ $(LANG_DONE)\ && echo\ && echo ------ $(subst _TFILE_,$(@F),$(subst _DIR_BUILD_,$(_DIR_BUILD_BIN),$(subst _OFILE_,$(_DIR_BUILD_OBJ)$(@F)$(EXT_OBJECT),$(subst _DEPS_,"\n"$(patsubst %,"\n--------- "$(_DIR_BUILD_LIB)%$(EXT_LIB_ARCHIVE),$(DEPS_LIB_$(@F)))$(patsubst %,"\n--------- "$(_DIR_BUILD_OBJ)%$(EXT_OBJECT),$(DEPS_$(@F)))$(patsubst %,"\n--------- -l"%,$(DEPS_SYSLIB_$(@F)))"\n",$(LANG_EXEC_BUILD_HASDEPS)))))\ - $(if $(filter 1,$(DEBUG_LIBTOOL)),&& echo $(LIBTOOL) $(_ARGS_LIBTOOL) $(ARGS_LIBTOOL_LINK) $(CC) $(if $(findstring Objective-C,$(code)), $(patsubst %, -framework %, $(OBJC_FRAMEWORK))) -o $@ $(_DIR_BUILD_OBJ)$(@F)$(EXT_OBJECT) $(patsubst %,$(_DIR_BUILD_LIB)%$(EXT_LIB_ARCHIVE),$(DEPS_LIB_$(@F))) $(patsubst %,$(_DIR_BUILD_OBJ)%$(EXT_OBJECT),$(DEPS_$(@F))) $(_ARGS_CC) $(CFLAGS))\ - && $(LIBTOOL) $(_ARGS_LIBTOOL) $(ARGS_LIBTOOL_LINK) $(CC) $(if $(findstring Objective-C,$(code)),$(patsubst %, -framework %, $(OBJC_FRAMEWORK))) -o $@ $(_DIR_BUILD_OBJ)$(@F)$(EXT_OBJECT) $(patsubst %,$(_DIR_BUILD_LIB)%$(EXT_LIB_ARCHIVE),$(DEPS_LIB_$(@F))) $(patsubst %,$(_DIR_BUILD_OBJ)%$(EXT_OBJECT),$(DEPS_$(@F))) $(patsubst %,"-l"%,$(DEPS_SYSLIB_$(@F))) $(_ARGS_CC) $(CFLAGS)\ + && $(CC) $(if $(findstring Objective-C,$(code)), -framework $(OBJC_FRAMEWORK)) -o $@ $(_DIR_BUILD_OBJ)$(@F)$(EXT_OBJECT) $(patsubst %,$(_DIR_BUILD_LIB)%$(EXT_LIB_ARCHIVE),$(DEPS_LIB_$(@F))) $(patsubst %,$(_DIR_BUILD_OBJ)%$(EXT_OBJECT),$(DEPS_$(@F))) $(patsubst %,"-l"%,$(DEPS_SYSLIB_$(@F))) $(_ARGS_CC) $(CFLAGS)\ && echo ------ $(LANG_DONE)\ ,\ @echo\ diff --git a/makefile-code/C++.mk b/makefile-code/C++.mk index 0ff29bd..17d79a6 100755 --- a/makefile-code/C++.mk +++ b/makefile-code/C++.mk @@ -1,6 +1,6 @@ # ------------------------------------------------------------------------------ # -# Copyright (c) 2010, Jean-David Gadina +# Copyright (c) 2010, Jean-David Gadina - www.xs-labs.com # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -37,13 +37,9 @@ # Please note that you need at least version 3.81 of GNU Make to use this file. # Older versions are not supported and will never be. # -# You also need a copy of the GNU Libtool in order to handle the shared objects. -# GNU Libtool is sometimes called glibtool, or simply libtool. -# Others implementations of Libtool are not supported at the time. -# #------------------------------------------------------------------------------- -# $Id: C++.mk 2 2010-06-27 10:25:10Z macmade@eosgarden.com $ +# $Id$ # Flag to let the makefile knows that the code specific options were included CODE_HASOPTIONS := 1 @@ -54,8 +50,7 @@ CODE_HASOPTIONS := 1 EXT_CODE = .cpp EXT_HEADERS = .h -EXT_LIB_OBJECT = .lo -EXT_LIB_ARCHIVE = .la +EXT_LIB_ARCHIVE = .a EXT_OBJECT = .o #------------------------------------------------------------------------------- @@ -70,5 +65,3 @@ LIBTOOL = glibtool #------------------------------------------------------------------------------- ARGS_CC = -Os -pedantic -Werror -Wall -Wextra -Wmissing-braces -Wmissing-field-initializers -Wmissing-prototypes -Wparentheses -Wreturn-type -Wshadow -Wsign-compare -Wswitch -Wuninitialized -Wunknown-pragmas -Wunused-function -Wunused-label -Wunused-parameter -Wunused-value -Wunused-variable -ARGS_LIBTOOL_COMPILE = --mode=compile -ARGS_LIBTOOL_LINK = --mode=link diff --git a/makefile-code/C.mk b/makefile-code/C.mk index 92c7634..246f70a 100755 --- a/makefile-code/C.mk +++ b/makefile-code/C.mk @@ -1,6 +1,6 @@ # ------------------------------------------------------------------------------ # -# Copyright (c) 2010, Jean-David Gadina +# Copyright (c) 2010, Jean-David Gadina - www.xs-labs.com # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -37,13 +37,9 @@ # Please note that you need at least version 3.81 of GNU Make to use this file. # Older versions are not supported and will never be. # -# You also need a copy of the GNU Libtool in order to handle the shared objects. -# GNU Libtool is sometimes called glibtool, or simply libtool. -# Others implementations of Libtool are not supported at the time. -# #------------------------------------------------------------------------------- -# $Id: C.mk 2 2010-06-27 10:25:10Z macmade@eosgarden.com $ +# $Id$ # Flag to let the makefile knows that the code specific options were included CODE_HASOPTIONS := 1 @@ -54,8 +50,7 @@ CODE_HASOPTIONS := 1 EXT_CODE = .c EXT_HEADERS = .h -EXT_LIB_OBJECT = .lo -EXT_LIB_ARCHIVE = .la +EXT_LIB_ARCHIVE = .a EXT_OBJECT = .o #------------------------------------------------------------------------------- @@ -63,12 +58,10 @@ EXT_OBJECT = .o #------------------------------------------------------------------------------- CC = gcc -LIBTOOL = glibtool +LIBTOOL = libtool #------------------------------------------------------------------------------- # Arguments for the compiler tools #------------------------------------------------------------------------------- ARGS_CC = -std=c99 -Os -pedantic -Werror -Wall -Wextra -Wbad-function-cast -Wdeclaration-after-statement -Werror-implicit-function-declaration -Wmissing-braces -Wmissing-declarations -Wmissing-field-initializers -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wparentheses -Wreturn-type -Wshadow -Wsign-compare -Wstrict-prototypes -Wswitch -Wuninitialized -Wunknown-pragmas -Wunused-function -Wunused-label -Wunused-parameter -Wunused-value -Wunused-variable -ARGS_LIBTOOL_COMPILE = --mode=compile -ARGS_LIBTOOL_LINK = --mode=link diff --git a/makefile-code/Objective-C.mk b/makefile-code/Objective-C.mk index 80f1b3a..2def676 100755 --- a/makefile-code/Objective-C.mk +++ b/makefile-code/Objective-C.mk @@ -1,6 +1,6 @@ # ------------------------------------------------------------------------------ # -# Copyright (c) 2010, Jean-David Gadina +# Copyright (c) 2010, Jean-David Gadina - www.xs-labs.com # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -37,13 +37,9 @@ # Please note that you need at least version 3.81 of GNU Make to use this file. # Older versions are not supported and will never be. # -# You also need a copy of the GNU Libtool in order to handle the shared objects. -# GNU Libtool is sometimes called glibtool, or simply libtool. -# Others implementations of Libtool are not supported at the time. -# #------------------------------------------------------------------------------- -# $Id: Objective-C.mk 2 2010-06-27 10:25:10Z macmade@eosgarden.com $ +# $Id$ # Flag to let the makefile knows that the code specific options were included CODE_HASOPTIONS := 1 @@ -54,8 +50,7 @@ CODE_HASOPTIONS := 1 EXT_CODE = .m EXT_HEADERS = .h -EXT_LIB_OBJECT = .lo -EXT_LIB_ARCHIVE = .la +EXT_LIB_ARCHIVE = .a EXT_OBJECT = .o #------------------------------------------------------------------------------- @@ -70,5 +65,3 @@ LIBTOOL = glibtool #------------------------------------------------------------------------------- ARGS_CC = -std=c99 -Os -pedantic -Werror -Wall -Wextra -Wbad-function-cast -Wdeclaration-after-statement -Werror-implicit-function-declaration -Wmissing-braces -Wmissing-declarations -Wmissing-field-initializers -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wparentheses -Wreturn-type -Wshadow -Wsign-compare -Wstrict-prototypes -Wstrict-selector-match -Wswitch -Wundeclared-selector -Wuninitialized -Wunknown-pragmas -Wunused-function -Wunused-label -Wunused-parameter -Wunused-value -Wunused-variable -ARGS_LIBTOOL_COMPILE = --mode=compile -ARGS_LIBTOOL_LINK = --mode=link diff --git a/makefile-config.mk b/makefile-config.mk index fcf6136..bc00789 100755 --- a/makefile-config.mk +++ b/makefile-config.mk @@ -1,6 +1,6 @@ # ------------------------------------------------------------------------------ # -# Copyright (c) 2010, Jean-David Gadina +# Copyright (c) 2010, Jean-David Gadina - www.xs-labs.com # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -37,13 +37,9 @@ # Please note that you need at least version 3.81 of GNU Make to use this file. # Older versions are not supported and will never be. # -# You also need a copy of the GNU Libtool in order to handle the shared objects. -# GNU Libtool is sometimes called glibtool, or simply libtool. -# Others implementations of Libtool are not supported at the time. -# #------------------------------------------------------------------------------- -# $Id: makefile-config.mk 4 2011-01-05 07:42:35Z macmade@eosgarden.com $ +# $Id$ #------------------------------------------------------------------------------- # Project programming language diff --git a/makefile-lang/en.mk b/makefile-lang/en.mk index 7f60651..19f706e 100755 --- a/makefile-lang/en.mk +++ b/makefile-lang/en.mk @@ -1,6 +1,6 @@ # ------------------------------------------------------------------------------ # -# Copyright (c) 2010, Jean-David Gadina +# Copyright (c) 2010, Jean-David Gadina - www.xs-labs.com # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -42,13 +42,9 @@ # Please note that you need at least version 3.81 of GNU Make to use this file. # Older versions are not supported and will never be. # -# You also need a copy of the GNU Libtool in order to handle the shared objects. -# GNU Libtool is sometimes called glibtool, or simply libtool. -# Others implementations of Libtool are not supported at the time. -# # ------------------------------------------------------------------------------ -# $Id: en.mk 4 2011-01-05 07:42:35Z macmade@eosgarden.com $ +# $Id$ # Flag to let the makefile knows that the language labels were included LANG_HASLABELS := 1 diff --git a/makefile-lang/fr.mk b/makefile-lang/fr.mk index 205a4f9..a3267fd 100755 --- a/makefile-lang/fr.mk +++ b/makefile-lang/fr.mk @@ -1,6 +1,6 @@ # ------------------------------------------------------------------------------ # -# Copyright (c) 2010, Jean-David Gadina +# Copyright (c) 2010, Jean-David Gadina - www.xs-labs.com # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -42,13 +42,9 @@ # Please note that you need at least version 3.81 of GNU Make to use this file. # Older versions are not supported and will never be. # -# You also need a copy of the GNU Libtool in order to handle the shared objects. -# GNU Libtool is sometimes called glibtool, or simply libtool. -# Others implementations of Libtool are not supported at the time. -# #------------------------------------------------------------------------------- -# $Id: fr.mk 4 2011-01-05 07:42:35Z macmade@eosgarden.com $ +# $Id$ # Flag to let the makefile knows that the language labels were included LANG_HASLABELS := 1 diff --git a/source/MP4.Atom.cpp b/source/MP4.Atom.cpp index 8223e73..23fac8b 100644 --- a/source/MP4.Atom.cpp +++ b/source/MP4.Atom.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.BXML.cpp b/source/MP4.BXML.cpp index 8ef69ac..86d84a4 100644 --- a/source/MP4.BXML.cpp +++ b/source/MP4.BXML.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.BinaryStream.cpp b/source/MP4.BinaryStream.cpp index 0a2ffdd..4b8e3cc 100644 --- a/source/MP4.BinaryStream.cpp +++ b/source/MP4.BinaryStream.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.CO64.cpp b/source/MP4.CO64.cpp index 6479d51..de157b9 100644 --- a/source/MP4.CO64.cpp +++ b/source/MP4.CO64.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.CPRT.cpp b/source/MP4.CPRT.cpp index 6a11204..8ec59f5 100644 --- a/source/MP4.CPRT.cpp +++ b/source/MP4.CPRT.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.CTTS.cpp b/source/MP4.CTTS.cpp index 7894f6e..b8080cc 100644 --- a/source/MP4.CTTS.cpp +++ b/source/MP4.CTTS.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.ContainerAtom.cpp b/source/MP4.ContainerAtom.cpp index 248d1eb..d9571d0 100644 --- a/source/MP4.ContainerAtom.cpp +++ b/source/MP4.ContainerAtom.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.DREF.cpp b/source/MP4.DREF.cpp index 9b2e3a6..0cb4bd7 100644 --- a/source/MP4.DREF.cpp +++ b/source/MP4.DREF.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.DataAtom.cpp b/source/MP4.DataAtom.cpp index 15f50bb..d3a582b 100644 --- a/source/MP4.DataAtom.cpp +++ b/source/MP4.DataAtom.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.ELST.cpp b/source/MP4.ELST.cpp index a160f63..61c5d29 100644 --- a/source/MP4.ELST.cpp +++ b/source/MP4.ELST.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.FREE.cpp b/source/MP4.FREE.cpp index 3666e56..0f99978 100644 --- a/source/MP4.FREE.cpp +++ b/source/MP4.FREE.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.FRMA.cpp b/source/MP4.FRMA.cpp index 2326804..9dd4ae7 100644 --- a/source/MP4.FRMA.cpp +++ b/source/MP4.FRMA.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.FTYP.cpp b/source/MP4.FTYP.cpp index f10b74e..b4b7766 100644 --- a/source/MP4.FTYP.cpp +++ b/source/MP4.FTYP.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.File.cpp b/source/MP4.File.cpp index 0c87cce..126f2c3 100644 --- a/source/MP4.File.cpp +++ b/source/MP4.File.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.FullBox.cpp b/source/MP4.FullBox.cpp index f238fdb..1aa6de6 100644 --- a/source/MP4.FullBox.cpp +++ b/source/MP4.FullBox.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.HDLR.cpp b/source/MP4.HDLR.cpp index d2aeeed..4f83ffe 100644 --- a/source/MP4.HDLR.cpp +++ b/source/MP4.HDLR.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.HMHD.cpp b/source/MP4.HMHD.cpp index ed10f1a..545c0fc 100644 --- a/source/MP4.HMHD.cpp +++ b/source/MP4.HMHD.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.IINF.cpp b/source/MP4.IINF.cpp index ea1d239..681ffe6 100644 --- a/source/MP4.IINF.cpp +++ b/source/MP4.IINF.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.ILOC.cpp b/source/MP4.ILOC.cpp index 27bbe5b..beae6cf 100644 --- a/source/MP4.ILOC.cpp +++ b/source/MP4.ILOC.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.IMIF.cpp b/source/MP4.IMIF.cpp index ddae4bf..d76985f 100644 --- a/source/MP4.IMIF.cpp +++ b/source/MP4.IMIF.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.IPMC.cpp b/source/MP4.IPMC.cpp index a2dbce9..8dc3eef 100644 --- a/source/MP4.IPMC.cpp +++ b/source/MP4.IPMC.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.MDAT.cpp b/source/MP4.MDAT.cpp index a635771..66c8ea2 100644 --- a/source/MP4.MDAT.cpp +++ b/source/MP4.MDAT.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.MDHD.cpp b/source/MP4.MDHD.cpp index 04dd1f8..baaa27c 100644 --- a/source/MP4.MDHD.cpp +++ b/source/MP4.MDHD.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.MEHD.cpp b/source/MP4.MEHD.cpp index fe9493a..995c199 100644 --- a/source/MP4.MEHD.cpp +++ b/source/MP4.MEHD.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.MFHD.cpp b/source/MP4.MFHD.cpp index 7029152..3a66e83 100644 --- a/source/MP4.MFHD.cpp +++ b/source/MP4.MFHD.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.MFRO.cpp b/source/MP4.MFRO.cpp index 8082135..84399f2 100644 --- a/source/MP4.MFRO.cpp +++ b/source/MP4.MFRO.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.MVHD.cpp b/source/MP4.MVHD.cpp index 8af783f..8b3b577 100644 --- a/source/MP4.MVHD.cpp +++ b/source/MP4.MVHD.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.PADB.cpp b/source/MP4.PADB.cpp index cefe28e..ff1add4 100644 --- a/source/MP4.PADB.cpp +++ b/source/MP4.PADB.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.PDIN.cpp b/source/MP4.PDIN.cpp index c2aa366..bab22d7 100644 --- a/source/MP4.PDIN.cpp +++ b/source/MP4.PDIN.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.PITM.cpp b/source/MP4.PITM.cpp index ec87bfb..10b4cea 100644 --- a/source/MP4.PITM.cpp +++ b/source/MP4.PITM.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.Parser.cpp b/source/MP4.Parser.cpp index 6957320..459c120 100644 --- a/source/MP4.Parser.cpp +++ b/source/MP4.Parser.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.SBGP.cpp b/source/MP4.SBGP.cpp index 061fcb9..b46d31d 100644 --- a/source/MP4.SBGP.cpp +++ b/source/MP4.SBGP.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.SCHI.cpp b/source/MP4.SCHI.cpp index 35f5adc..03d93a9 100644 --- a/source/MP4.SCHI.cpp +++ b/source/MP4.SCHI.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.SCHM.cpp b/source/MP4.SCHM.cpp index 98c80ac..8ba5a81 100644 --- a/source/MP4.SCHM.cpp +++ b/source/MP4.SCHM.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.SDTP.cpp b/source/MP4.SDTP.cpp index 93c2726..ce3595c 100644 --- a/source/MP4.SDTP.cpp +++ b/source/MP4.SDTP.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.SGPD.cpp b/source/MP4.SGPD.cpp index bda3bf6..a1418d5 100644 --- a/source/MP4.SGPD.cpp +++ b/source/MP4.SGPD.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.SMHD.cpp b/source/MP4.SMHD.cpp index af5d421..fd4a9da 100644 --- a/source/MP4.SMHD.cpp +++ b/source/MP4.SMHD.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.STCO.cpp b/source/MP4.STCO.cpp index 8839d4d..e31b3ed 100644 --- a/source/MP4.STCO.cpp +++ b/source/MP4.STCO.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.STDP.cpp b/source/MP4.STDP.cpp index 6a8be5b..7fd1e23 100644 --- a/source/MP4.STDP.cpp +++ b/source/MP4.STDP.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.STSC.cpp b/source/MP4.STSC.cpp index bdfeeb8..400ea0a 100644 --- a/source/MP4.STSC.cpp +++ b/source/MP4.STSC.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.STSD.cpp b/source/MP4.STSD.cpp index 207d341..2900921 100644 --- a/source/MP4.STSD.cpp +++ b/source/MP4.STSD.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.STSH.cpp b/source/MP4.STSH.cpp index 3f22494..26d05c5 100644 --- a/source/MP4.STSH.cpp +++ b/source/MP4.STSH.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.STSS.cpp b/source/MP4.STSS.cpp index 64ce73a..3d4fa7f 100644 --- a/source/MP4.STSS.cpp +++ b/source/MP4.STSS.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.STSZ.cpp b/source/MP4.STSZ.cpp index 75d3b62..300c2ba 100644 --- a/source/MP4.STSZ.cpp +++ b/source/MP4.STSZ.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.STTS.cpp b/source/MP4.STTS.cpp index d5aa780..8537379 100644 --- a/source/MP4.STTS.cpp +++ b/source/MP4.STTS.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.STZ2.cpp b/source/MP4.STZ2.cpp index e85fbb8..f92d964 100644 --- a/source/MP4.STZ2.cpp +++ b/source/MP4.STZ2.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.SUBS.cpp b/source/MP4.SUBS.cpp index 3d5b1f1..160cbcc 100644 --- a/source/MP4.SUBS.cpp +++ b/source/MP4.SUBS.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.TFHD.cpp b/source/MP4.TFHD.cpp index e9b7710..e2b6b7b 100644 --- a/source/MP4.TFHD.cpp +++ b/source/MP4.TFHD.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.TFRA.cpp b/source/MP4.TFRA.cpp index 1e47dc4..025c9d6 100644 --- a/source/MP4.TFRA.cpp +++ b/source/MP4.TFRA.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.TKHD.cpp b/source/MP4.TKHD.cpp index 88f95a6..c373882 100644 --- a/source/MP4.TKHD.cpp +++ b/source/MP4.TKHD.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.TREF.cpp b/source/MP4.TREF.cpp index 8d9366b..cec9454 100644 --- a/source/MP4.TREF.cpp +++ b/source/MP4.TREF.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.TREX.cpp b/source/MP4.TREX.cpp index d590d54..7ee7936 100644 --- a/source/MP4.TREX.cpp +++ b/source/MP4.TREX.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.TRUN.cpp b/source/MP4.TRUN.cpp index b323fd2..94910da 100644 --- a/source/MP4.TRUN.cpp +++ b/source/MP4.TRUN.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.UDTA.cpp b/source/MP4.UDTA.cpp index 0147e35..eea1132 100644 --- a/source/MP4.UDTA.cpp +++ b/source/MP4.UDTA.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.UnknownAtom.cpp b/source/MP4.UnknownAtom.cpp index 05d2a97..cb1c5b7 100644 --- a/source/MP4.UnknownAtom.cpp +++ b/source/MP4.UnknownAtom.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.VMHD.cpp b/source/MP4.VMHD.cpp index accf164..aca96f9 100644 --- a/source/MP4.VMHD.cpp +++ b/source/MP4.VMHD.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/MP4.XML.cpp b/source/MP4.XML.cpp index 718b8c7..8b7263c 100644 --- a/source/MP4.XML.cpp +++ b/source/MP4.XML.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.Atom.h b/source/include/MP4.Atom.h index 0eb4e9c..8dbea48 100644 --- a/source/include/MP4.Atom.h +++ b/source/include/MP4.Atom.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.BXML.h b/source/include/MP4.BXML.h index a4d9f6a..18f9494 100644 --- a/source/include/MP4.BXML.h +++ b/source/include/MP4.BXML.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.BinaryStream.h b/source/include/MP4.BinaryStream.h index 4b4be5f..6857e1f 100644 --- a/source/include/MP4.BinaryStream.h +++ b/source/include/MP4.BinaryStream.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.CO64.h b/source/include/MP4.CO64.h index db8b965..9f14d6a 100644 --- a/source/include/MP4.CO64.h +++ b/source/include/MP4.CO64.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.CPRT.h b/source/include/MP4.CPRT.h index fb6f7d3..196ae43 100644 --- a/source/include/MP4.CPRT.h +++ b/source/include/MP4.CPRT.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.CTTS.h b/source/include/MP4.CTTS.h index 3fa5d13..69abff4 100644 --- a/source/include/MP4.CTTS.h +++ b/source/include/MP4.CTTS.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.ContainerAtom.h b/source/include/MP4.ContainerAtom.h index 859a66a..0ea2387 100644 --- a/source/include/MP4.ContainerAtom.h +++ b/source/include/MP4.ContainerAtom.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.DREF.h b/source/include/MP4.DREF.h index e95980f..abb2458 100644 --- a/source/include/MP4.DREF.h +++ b/source/include/MP4.DREF.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.DataAtom.h b/source/include/MP4.DataAtom.h index 76cbacc..4894ec7 100644 --- a/source/include/MP4.DataAtom.h +++ b/source/include/MP4.DataAtom.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.ELST.h b/source/include/MP4.ELST.h index 8d9e77f..de797ba 100644 --- a/source/include/MP4.ELST.h +++ b/source/include/MP4.ELST.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.FREE.h b/source/include/MP4.FREE.h index 128cffb..4037660 100644 --- a/source/include/MP4.FREE.h +++ b/source/include/MP4.FREE.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.FRMA.h b/source/include/MP4.FRMA.h index 1b31ab7..663120e 100644 --- a/source/include/MP4.FRMA.h +++ b/source/include/MP4.FRMA.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.FTYP.h b/source/include/MP4.FTYP.h index 2ed1e03..81525a2 100644 --- a/source/include/MP4.FTYP.h +++ b/source/include/MP4.FTYP.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.File.h b/source/include/MP4.File.h index 3847d99..9c98147 100644 --- a/source/include/MP4.File.h +++ b/source/include/MP4.File.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.FullBox.h b/source/include/MP4.FullBox.h index 3cfe084..82d502e 100644 --- a/source/include/MP4.FullBox.h +++ b/source/include/MP4.FullBox.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.HDLR.h b/source/include/MP4.HDLR.h index c5d3d4f..e05dbce 100644 --- a/source/include/MP4.HDLR.h +++ b/source/include/MP4.HDLR.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.HMHD.h b/source/include/MP4.HMHD.h index d11b877..8c14077 100644 --- a/source/include/MP4.HMHD.h +++ b/source/include/MP4.HMHD.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.IINF.h b/source/include/MP4.IINF.h index 17cdeaa..6dc370b 100644 --- a/source/include/MP4.IINF.h +++ b/source/include/MP4.IINF.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.ILOC.h b/source/include/MP4.ILOC.h index f239d3e..19c82a4 100644 --- a/source/include/MP4.ILOC.h +++ b/source/include/MP4.ILOC.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.IMIF.h b/source/include/MP4.IMIF.h index 04e00e4..619e641 100644 --- a/source/include/MP4.IMIF.h +++ b/source/include/MP4.IMIF.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.IPMC.h b/source/include/MP4.IPMC.h index c7a920b..71bbb5c 100644 --- a/source/include/MP4.IPMC.h +++ b/source/include/MP4.IPMC.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.MDAT.h b/source/include/MP4.MDAT.h index 806258d..20df72c 100644 --- a/source/include/MP4.MDAT.h +++ b/source/include/MP4.MDAT.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.MDHD.h b/source/include/MP4.MDHD.h index 8bc531f..d1b36da 100644 --- a/source/include/MP4.MDHD.h +++ b/source/include/MP4.MDHD.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.MEHD.h b/source/include/MP4.MEHD.h index a2f1b3a..e134082 100644 --- a/source/include/MP4.MEHD.h +++ b/source/include/MP4.MEHD.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.MFHD.h b/source/include/MP4.MFHD.h index 8c3cb23..a5e0437 100644 --- a/source/include/MP4.MFHD.h +++ b/source/include/MP4.MFHD.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.MFRO.h b/source/include/MP4.MFRO.h index a615b59..b80bb67 100644 --- a/source/include/MP4.MFRO.h +++ b/source/include/MP4.MFRO.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.MVHD.h b/source/include/MP4.MVHD.h index 3c18475..0f02bbe 100644 --- a/source/include/MP4.MVHD.h +++ b/source/include/MP4.MVHD.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.PADB.h b/source/include/MP4.PADB.h index 03a7d9d..7cea557 100644 --- a/source/include/MP4.PADB.h +++ b/source/include/MP4.PADB.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.PDIN.h b/source/include/MP4.PDIN.h index 54ee993..c8300d5 100644 --- a/source/include/MP4.PDIN.h +++ b/source/include/MP4.PDIN.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.PITM.h b/source/include/MP4.PITM.h index 2b0c2d7..387f6b4 100644 --- a/source/include/MP4.PITM.h +++ b/source/include/MP4.PITM.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.Parser.h b/source/include/MP4.Parser.h index f75ef62..b5744a4 100644 --- a/source/include/MP4.Parser.h +++ b/source/include/MP4.Parser.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.SBGP.h b/source/include/MP4.SBGP.h index c2ff973..2c82e22 100644 --- a/source/include/MP4.SBGP.h +++ b/source/include/MP4.SBGP.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.SCHI.h b/source/include/MP4.SCHI.h index b3073bb..03ad593 100644 --- a/source/include/MP4.SCHI.h +++ b/source/include/MP4.SCHI.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.SCHM.h b/source/include/MP4.SCHM.h index a9571d2..87b65b3 100644 --- a/source/include/MP4.SCHM.h +++ b/source/include/MP4.SCHM.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.SDTP.h b/source/include/MP4.SDTP.h index fed8105..1ee1ffa 100644 --- a/source/include/MP4.SDTP.h +++ b/source/include/MP4.SDTP.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.SGPD.h b/source/include/MP4.SGPD.h index ee73eeb..28ebddc 100644 --- a/source/include/MP4.SGPD.h +++ b/source/include/MP4.SGPD.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.SMHD.h b/source/include/MP4.SMHD.h index 038e405..51d6f63 100644 --- a/source/include/MP4.SMHD.h +++ b/source/include/MP4.SMHD.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.STCO.h b/source/include/MP4.STCO.h index 9c11337..31cd789 100644 --- a/source/include/MP4.STCO.h +++ b/source/include/MP4.STCO.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.STDP.h b/source/include/MP4.STDP.h index 4bc84bf..02be033 100644 --- a/source/include/MP4.STDP.h +++ b/source/include/MP4.STDP.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.STSC.h b/source/include/MP4.STSC.h index 04e4a7d..a62faa0 100644 --- a/source/include/MP4.STSC.h +++ b/source/include/MP4.STSC.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.STSD.h b/source/include/MP4.STSD.h index be4b632..86cd297 100644 --- a/source/include/MP4.STSD.h +++ b/source/include/MP4.STSD.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.STSH.h b/source/include/MP4.STSH.h index c1200d0..da716a2 100644 --- a/source/include/MP4.STSH.h +++ b/source/include/MP4.STSH.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.STSS.h b/source/include/MP4.STSS.h index 8cc86a8..73803b5 100644 --- a/source/include/MP4.STSS.h +++ b/source/include/MP4.STSS.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.STSZ.h b/source/include/MP4.STSZ.h index 4347f4b..ac5c4ad 100644 --- a/source/include/MP4.STSZ.h +++ b/source/include/MP4.STSZ.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.STTS.h b/source/include/MP4.STTS.h index 00e3554..3c06039 100644 --- a/source/include/MP4.STTS.h +++ b/source/include/MP4.STTS.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.STZ2.h b/source/include/MP4.STZ2.h index a935320..21760e0 100644 --- a/source/include/MP4.STZ2.h +++ b/source/include/MP4.STZ2.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.SUBS.h b/source/include/MP4.SUBS.h index 7160990..6eb3571 100644 --- a/source/include/MP4.SUBS.h +++ b/source/include/MP4.SUBS.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.TFHD.h b/source/include/MP4.TFHD.h index 3e85d57..af66548 100644 --- a/source/include/MP4.TFHD.h +++ b/source/include/MP4.TFHD.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.TFRA.h b/source/include/MP4.TFRA.h index 00f5b04..f1c6fbf 100644 --- a/source/include/MP4.TFRA.h +++ b/source/include/MP4.TFRA.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.TKHD.h b/source/include/MP4.TKHD.h index 0a19101..eff5eba 100644 --- a/source/include/MP4.TKHD.h +++ b/source/include/MP4.TKHD.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.TREF.h b/source/include/MP4.TREF.h index f358d5c..be688a7 100644 --- a/source/include/MP4.TREF.h +++ b/source/include/MP4.TREF.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.TREX.h b/source/include/MP4.TREX.h index b4ea6a5..83d05f9 100644 --- a/source/include/MP4.TREX.h +++ b/source/include/MP4.TREX.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.TRUN.h b/source/include/MP4.TRUN.h index b4ebeae..e425bf5 100644 --- a/source/include/MP4.TRUN.h +++ b/source/include/MP4.TRUN.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.UDTA.h b/source/include/MP4.UDTA.h index 3a7ca0a..0010611 100644 --- a/source/include/MP4.UDTA.h +++ b/source/include/MP4.UDTA.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.UnknownAtom.h b/source/include/MP4.UnknownAtom.h index f2404e6..97b5d99 100644 --- a/source/include/MP4.UnknownAtom.h +++ b/source/include/MP4.UnknownAtom.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.VMHD.h b/source/include/MP4.VMHD.h index ffb9c6a..2970cf5 100644 --- a/source/include/MP4.VMHD.h +++ b/source/include/MP4.VMHD.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/MP4.XML.h b/source/include/MP4.XML.h index 0726a1d..531bccf 100644 --- a/source/include/MP4.XML.h +++ b/source/include/MP4.XML.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/atoms.h b/source/include/atoms.h index 1eaa512..7e127a4 100644 --- a/source/include/atoms.h +++ b/source/include/atoms.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/mp4.h b/source/include/mp4.h index 66b1cb7..8cf60e1 100644 --- a/source/include/mp4.h +++ b/source/include/mp4.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/stdc.h b/source/include/stdc.h index 1d28c1d..88e94e0 100644 --- a/source/include/stdc.h +++ b/source/include/stdc.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/stl.h b/source/include/stl.h index 1027d6f..142ecf3 100644 --- a/source/include/stl.h +++ b/source/include/stl.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/include/types.h b/source/include/types.h index 18b1448..c1edd44 100644 --- a/source/include/types.h +++ b/source/include/types.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, Jean-David Gadina + * Copyright (c) 2011, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/source/mp4parse.cpp b/source/mp4parse.cpp index 20e24f0..b7b7771 100755 --- a/source/mp4parse.cpp +++ b/source/mp4parse.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2010, Jean-David Gadina + * Copyright (c) 2010, Jean-David Gadina - www.xs-labs.com * Distributed under the Boost Software License, Version 1.0. * * Boost Software License - Version 1.0 - August 17th, 2003 @@ -46,4 +46,4 @@ int main( int argc, char * argv[] ) delete parser; return EXIT_SUCCESS; -} \ No newline at end of file +}