Blame exrmultiview/makeMultiView.h

Packit c2c737
///////////////////////////////////////////////////////////////////////////
Packit c2c737
//
Packit c2c737
// Copyright (c) 2007, Industrial Light & Magic, a division of Lucas
Packit c2c737
// Digital Ltd. LLC
Packit c2c737
// 
Packit c2c737
// All rights reserved.
Packit c2c737
// 
Packit c2c737
// Redistribution and use in source and binary forms, with or without
Packit c2c737
// modification, are permitted provided that the following conditions are
Packit c2c737
// met:
Packit c2c737
// *       Redistributions of source code must retain the above copyright
Packit c2c737
// notice, this list of conditions and the following disclaimer.
Packit c2c737
// *       Redistributions in binary form must reproduce the above
Packit c2c737
// copyright notice, this list of conditions and the following disclaimer
Packit c2c737
// in the documentation and/or other materials provided with the
Packit c2c737
// distribution.
Packit c2c737
// *       Neither the name of Industrial Light & Magic nor the names of
Packit c2c737
// its contributors may be used to endorse or promote products derived
Packit c2c737
// from this software without specific prior written permission. 
Packit c2c737
// 
Packit c2c737
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Packit c2c737
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
Packit c2c737
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
Packit c2c737
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
Packit c2c737
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
Packit c2c737
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
Packit c2c737
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
Packit c2c737
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
Packit c2c737
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
Packit c2c737
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Packit c2c737
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit c2c737
//
Packit c2c737
///////////////////////////////////////////////////////////////////////////
Packit c2c737
Packit c2c737
Packit c2c737
#ifndef INCLUDED_MAKE_MULTI_VIEW_H
Packit c2c737
#define INCLUDED_MAKE_MULTI_VIEW_H
Packit c2c737
Packit c2c737
//----------------------------------------------------------------------------
Packit c2c737
//
Packit c2c737
//	Combine multiple single-view images
Packit c2c737
//	into one multi-view image.
Packit c2c737
//
Packit c2c737
//----------------------------------------------------------------------------
Packit c2c737
Packit c2c737
#include <ImfCompression.h>
Packit c2c737
#include <string>
Packit c2c737
#include <vector>
Packit c2c737
#include "namespaceAlias.h"
Packit c2c737
Packit c2c737
Packit c2c737
void	makeMultiView (const std::vector <std::string> &viewNames,
Packit c2c737
		       const std::vector <const char *> &inFileNames,
Packit c2c737
		       const char *outFileName,
Packit c2c737
		       IMF::Compression compression,
Packit c2c737
		       bool verbose);
Packit c2c737
Packit c2c737
#endif