87 lines
2.3 KiB
C
87 lines
2.3 KiB
C
|
/*****************************************************************************
|
||
|
* Copyright (C) 2013-2015 x265 project
|
||
|
*
|
||
|
* Authors: Steve Borho <steve@borho.org>
|
||
|
* Xinyue Lu <i@7086.in>
|
||
|
*
|
||
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02111, USA.
|
||
|
*
|
||
|
* This program is also available under a commercial proprietary license.
|
||
|
* For more information, contact us at license @ x265.com.
|
||
|
*****************************************************************************/
|
||
|
|
||
|
#ifndef X265_OUTPUT_H
|
||
|
#define X265_OUTPUT_H
|
||
|
|
||
|
#include "x265.h"
|
||
|
#include "input/input.h"
|
||
|
|
||
|
namespace X265_NS {
|
||
|
// private x265 namespace
|
||
|
|
||
|
class ReconFile
|
||
|
{
|
||
|
protected:
|
||
|
|
||
|
virtual ~ReconFile() {}
|
||
|
|
||
|
public:
|
||
|
|
||
|
ReconFile() {}
|
||
|
|
||
|
static ReconFile* open(const char *fname, int width, int height, uint32_t bitdepth,
|
||
|
uint32_t fpsNum, uint32_t fpsDenom, int csp);
|
||
|
|
||
|
virtual bool isFail() const = 0;
|
||
|
|
||
|
virtual void release() = 0;
|
||
|
|
||
|
virtual bool writePicture(const x265_picture& pic) = 0;
|
||
|
|
||
|
virtual const char *getName() const = 0;
|
||
|
};
|
||
|
|
||
|
class OutputFile
|
||
|
{
|
||
|
protected:
|
||
|
|
||
|
virtual ~OutputFile() {}
|
||
|
|
||
|
public:
|
||
|
|
||
|
OutputFile() {}
|
||
|
|
||
|
static OutputFile* open(const char* fname, InputFileInfo& inputInfo);
|
||
|
|
||
|
virtual bool isFail() const = 0;
|
||
|
|
||
|
virtual bool needPTS() const = 0;
|
||
|
|
||
|
virtual void release() = 0;
|
||
|
|
||
|
virtual const char* getName() const = 0;
|
||
|
|
||
|
virtual void setParam(x265_param* param) = 0;
|
||
|
|
||
|
virtual int writeHeaders(const x265_nal* nal, uint32_t nalcount) = 0;
|
||
|
|
||
|
virtual int writeFrame(const x265_nal* nal, uint32_t nalcount, x265_picture& pic) = 0;
|
||
|
|
||
|
virtual void closeFile(int64_t largest_pts, int64_t second_largest_pts) = 0;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif // ifndef X265_OUTPUT_H
|