X-Git-Url: https://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.0%2Fcinelerra%2Ffile.h;h=854b4919cd9a4f697d0dbb1b39064a82971dcde8;hb=6c0c8bd0e577001d1cc18c6c27d58e62f58a6bff;hp=16e2327bb33fdf0f996af845f513f478c9742442;hpb=f9d0d999e813ae19965e07ae2f7da690b4e6fe45;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.0/cinelerra/file.h b/cinelerra-5.0/cinelerra/file.h index 16e2327b..854b4919 100644 --- a/cinelerra-5.0/cinelerra/file.h +++ b/cinelerra-5.0/cinelerra/file.h @@ -30,10 +30,6 @@ #include "filebase.inc" #include "file.inc" -#ifdef USE_FILEFORK -#include "filefork.inc" -#endif - #include "filethread.inc" #include "filexml.inc" #include "formattools.inc" @@ -58,8 +54,6 @@ public: File(); ~File(); - friend class FileFork; - // Get attributes for various file formats. // The dither parameter is carried over from recording, where dither is done at the device. int get_options(FormatTools *format, @@ -328,22 +322,6 @@ private: // Copy read frames to the cache int use_cache; -#ifdef USE_FILEFORK -// Pointer to the fork object. 0 if this instance of File is the fork. - FileFork *file_fork; -// If this instance is the fork. - int is_fork; -// result_data must be locked during sync transaction - Mutex *forked; - - class FileForker { - Mutex &m; - public: - FileForker(Mutex &lk) : m(lk) { m.lock("FileForker::FileForker"); } - ~FileForker() { m.unlock(); } - }; -#endif - }; #endif