2009-07-30 21:56:01 +04:00
|
|
|
/*
|
2010-10-21 01:36:23 +04:00
|
|
|
* Copyright 2009-2010, Stephan Aßmus <superstippi@gmx.de>.
|
|
|
|
* All rights reserved. Distributed under the terms of the MIT License.
|
2009-07-30 21:56:01 +04:00
|
|
|
*/
|
|
|
|
#ifndef _MEDIA_WRITER_H
|
|
|
|
#define _MEDIA_WRITER_H
|
|
|
|
|
|
|
|
|
|
|
|
#include "EncoderPlugin.h"
|
|
|
|
#include "TList.h"
|
|
|
|
#include "WriterPlugin.h"
|
|
|
|
|
|
|
|
|
|
|
|
namespace BPrivate {
|
|
|
|
namespace media {
|
|
|
|
|
|
|
|
|
|
|
|
class MediaWriter {
|
|
|
|
public:
|
|
|
|
MediaWriter(BDataIO* target,
|
|
|
|
const media_file_format& fileFormat);
|
|
|
|
~MediaWriter();
|
|
|
|
|
|
|
|
status_t InitCheck();
|
|
|
|
|
|
|
|
void GetFileFormatInfo(media_file_format* mfi) const;
|
|
|
|
|
2009-07-31 14:46:58 +04:00
|
|
|
status_t CreateEncoder(Encoder** _encoder,
|
|
|
|
const media_codec_info* codecInfo,
|
2010-10-21 01:36:23 +04:00
|
|
|
media_format* format, uint32 flags = 0);
|
2009-07-31 14:46:58 +04:00
|
|
|
|
|
|
|
status_t SetCopyright(int32 streamIndex,
|
|
|
|
const char* copyright);
|
2009-07-30 21:56:01 +04:00
|
|
|
status_t SetCopyright(const char* copyright);
|
|
|
|
status_t CommitHeader();
|
|
|
|
status_t Flush();
|
|
|
|
status_t Close();
|
|
|
|
|
2009-07-31 14:46:58 +04:00
|
|
|
status_t AddTrackInfo(int32 streamIndex, uint32 code,
|
2009-07-30 21:56:01 +04:00
|
|
|
const void* data, size_t size,
|
|
|
|
uint32 flags = 0);
|
|
|
|
|
2009-07-31 14:46:58 +04:00
|
|
|
status_t WriteChunk(int32 streamIndex,
|
2009-07-30 21:56:01 +04:00
|
|
|
const void* chunkBuffer, size_t chunkSize,
|
2009-07-31 14:46:58 +04:00
|
|
|
media_encode_info* encodeInfo);
|
2009-07-30 21:56:01 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
struct StreamInfo {
|
|
|
|
void* cookie;
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
BDataIO* fTarget;
|
|
|
|
Writer* fWriter;
|
|
|
|
|
|
|
|
List<StreamInfo> fStreamInfos;
|
|
|
|
|
|
|
|
media_file_format fFileFormat;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}; // namespace media
|
|
|
|
}; // namespace BPrivate
|
|
|
|
|
|
|
|
using namespace BPrivate::media;
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _MEDIA_WRITER_H
|