Merge CV, ver=5.1; ops/methods from HV, and interface from CV where possible
[goodguy/history.git] / cinelerra-5.0 / cinelerra / filetga.h
diff --git a/cinelerra-5.0/cinelerra/filetga.h b/cinelerra-5.0/cinelerra/filetga.h
deleted file mode 100644 (file)
index 0f4e22a..0000000
+++ /dev/null
@@ -1,131 +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 FILETGA_H
-#define FILETGA_H
-
-#include "filelist.h"
-#include "guicast.h"
-
-class FileTGA : public FileList
-{
-public:
-       FileTGA(Asset *asset, File *file);
-       ~FileTGA();
-
-       static int check_sig(Asset *asset);
-       static void get_parameters(BC_WindowBase *parent_window, 
-               Asset *asset, 
-               BC_WindowBase* &format_window,
-               int audio_options,
-               int video_options);
-       int read_frame_header(char *path);
-       static const char* compression_to_str(const char *compression);
-       static const char* str_to_compression(const char *string);
-
-       int64_t get_memory_usage();
-// To be used in single frame FileTGA
-       static void read_tga(Asset *asset, VFrame *frame, VFrame *data, VFrame* &temp);
-       static void write_tga(Asset *asset, VFrame *frame, VFrame *data, VFrame* &temp);
-
-       int can_copy_from(Asset *asset, int64_t position);
-       static int get_best_colormodel(Asset *asset, int driver);
-       int colormodel_supported(int colormodel);
-       int read_frame(VFrame *frame, VFrame *data);
-       int write_frame(VFrame *frame, VFrame *data, FrameWriterUnit *unit);
-       FrameWriterUnit* new_writer_unit(FrameWriter *writer);
-
-// For decoding only
-       VFrame *temp;
-
-private:
-       static void write_data(unsigned char *buffer, 
-               VFrame *data, 
-               int64_t &file_offset,
-               int64_t len);
-       static void read_line(unsigned char *row,
-               unsigned char *data,
-               int64_t &file_offset,
-               int image_type,
-               int bpp,
-               int image_compression,
-               int bytes,
-               int width,
-               int fliphoriz,
-               int alphabits,
-               int data_size);
-       static void flip_line(unsigned char *row, int bytes, int width);
-       static void rle_read(unsigned char *row,
-               unsigned char *data,
-               int64_t &file_offset,
-               int bytes,
-               int width);
-       static void rle_write(unsigned char *buffer, 
-               int width, 
-               int bytes, 
-               VFrame *frame, 
-               int64_t &file_offset);
-       static void bgr2rgb(unsigned char *dest,
-                unsigned char *src,
-                int width,
-                int bytes,
-                int alpha);
-       static void upsample(unsigned char *dest,
-                 unsigned char *src,
-                 int width,
-                 int bytes);
-};
-
-class TGAUnit : public FrameWriterUnit
-{
-public:
-       TGAUnit(FileTGA *file, FrameWriter *writer);
-       ~TGAUnit();
-       VFrame *temp;
-       FileTGA *file;
-};
-
-class TGAConfigVideo : public BC_Window
-{
-public:
-       TGAConfigVideo(BC_WindowBase *gui, Asset *asset);
-       ~TGAConfigVideo();
-       void create_objects();
-       int close_event();
-
-       ArrayList<BC_ListBoxItem*> compression_items;
-       BC_WindowBase *gui;
-       Asset *asset;
-};
-
-class TGACompression : public BC_PopupTextBox
-{
-public:
-       TGACompression(TGAConfigVideo *gui,
-               int x, 
-               int y, 
-               Asset *asset, 
-               ArrayList<BC_ListBoxItem*> *compression_items);
-       int handle_event();
-       Asset *asset;
-};
-
-#endif