Merge CV, ver=5.1; ops/methods from HV, and interface from CV where possible
[goodguy/history.git] / cinelerra-5.0 / cinelerra / filetiff.h
diff --git a/cinelerra-5.0/cinelerra/filetiff.h b/cinelerra-5.0/cinelerra/filetiff.h
deleted file mode 100644 (file)
index 9fceb53..0000000
+++ /dev/null
@@ -1,156 +0,0 @@
-
-/*
- * CINELERRA
- * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
- * 
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- * 
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * 
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- * 
- */
-
-#ifndef FILETIFF_H
-#define FILETIFF_H
-
-#include <stdlib.h>
-
-#include "file.inc"
-#include "filelist.h"
-#include "mutex.inc"
-#include <tiffio.h>
-#include "vframe.inc"
-
-// This header file is representative of any single frame file format.
-
-class FileTIFF : public FileList
-{
-public:
-       FileTIFF(Asset *asset, File *file);
-       ~FileTIFF();
-
-       static void get_parameters(BC_WindowBase *parent_window, 
-               Asset *asset, 
-               BC_WindowBase* &format_window,
-               int audio_options,
-               int video_options);
-       static int check_sig(Asset *asset);
-       static const char* compression_to_str(int value);
-       static const char* cmodel_to_str(int value);
-       int can_copy_from(Asset *asset, int64_t position);
-       int colormodel_supported(int colormodel);
-       int get_best_colormodel(Asset *asset, int driver);
-       int read_frame_header(char *path);
-       int read_frame(VFrame *output, VFrame *input);
-       int write_frame(VFrame *frame, VFrame *data, FrameWriterUnit *unit);
-       FrameWriterUnit* new_writer_unit(FrameWriter *writer);
-
-       enum
-       {
-               NONE,
-// values stored in Asset::tiff_cmodel
-// Data types
-               RGB_888,
-               RGB_161616,
-               RGBA_8888,
-               RGBA_16161616,
-               RGB_FLOAT,
-               RGBA_FLOAT,
-               GREYSCALE,
-// values stored in Asset::tiff_compression
-// Compression types
-               LZW,
-               PACK_BITS,
-               DEFLATE,
-               JPEG
-       };
-
-       Mutex *unit_lock;
-};
-
-
-// For each write frame call, since multiple write_frames are running concurrently.
-class FileTIFFUnit : public FrameWriterUnit
-{
-public:
-       FileTIFFUnit(FileTIFF *file, FrameWriter *writer);
-       ~FileTIFFUnit();
-
-       int offset;
-       VFrame *data;
-       VFrame *temp;
-       FileTIFF *file;
-};
-
-
-
-
-class TIFFConfigVideo : public  BC_Window
-{
-public:
-       TIFFConfigVideo(BC_WindowBase *parent_window, Asset *asset);
-       ~TIFFConfigVideo();
-
-
-       void create_objects();
-       int close_event();
-       static char* alpha_to_codec(int use_alpha);
-       static int codec_to_alpha(char *codec);
-       BC_WindowBase *parent_window;
-       Asset *asset;
-};
-
-
-class TIFFColorspace : public BC_PopupMenu
-{
-public:
-       TIFFColorspace(TIFFConfigVideo *gui, int x, int y, int w);
-       void create_objects();
-       int handle_event();
-       TIFFConfigVideo *gui;
-};
-
-class TIFFColorspaceItem : public BC_MenuItem
-{
-public:
-       TIFFColorspaceItem(TIFFConfigVideo *gui, int value);
-       int handle_event();
-       TIFFConfigVideo *gui;
-       int value;
-};
-
-
-
-
-class TIFFCompression : public BC_PopupMenu
-{
-public:
-       TIFFCompression(TIFFConfigVideo *gui, int x, int y, int w);
-       void create_objects();
-       int handle_event();
-       TIFFConfigVideo *gui;
-};
-
-class TIFFCompressionItem : public BC_MenuItem
-{
-public:
-       TIFFCompressionItem(TIFFConfigVideo *gui, int value);
-       int handle_event();
-       TIFFConfigVideo *gui;
-       int value;
-};
-
-
-
-
-
-#endif