mirror of
https://github.com/cookiengineer/audacity
synced 2026-04-14 10:10:46 +02:00
24 lines
613 B
C++
24 lines
613 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ExportFFmpeg.h
|
|
|
|
LRN
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_EXPORTFFMPEG__
|
|
#define __AUDACITY_EXPORTFFMPEG__
|
|
|
|
#include "../MemoryX.h"
|
|
class ExportPlugin;
|
|
|
|
/** The only part of this class which is publically accessible is the
|
|
* factory method New_ExportFFmpeg() which creates a NEW ExportFFmpeg object and
|
|
* returns a pointer to it. The rest of the class declaration is in ExportFFmpeg.cpp
|
|
*/
|
|
std::unique_ptr<ExportPlugin> New_ExportFFmpeg();
|
|
|
|
#endif
|