4384acf6c1
media_file_format as input, so that the Writer knows what kind of file is needed. * Also, since information about the stream format is going to be needed at the Writer level as well, the AllocateCookie() method gets the stream media_format. * Fleshed out some aspects of AVFormatWriter, many TODOs are left. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32025 a95241bf-73f2-0310-859d-f6bbb57e9c96
70 lines
1.4 KiB
C++
70 lines
1.4 KiB
C++
/*
|
|
* Copyright 2009, Stephan Aßmus <superstippi@gmx.de>. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#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;
|
|
|
|
status_t CreateEncoder(Encoder** _encoder,
|
|
const media_codec_info* codecInfo,
|
|
const media_format* format,
|
|
uint32 flags = 0);
|
|
|
|
status_t SetCopyright(int32 streamIndex,
|
|
const char* copyright);
|
|
status_t SetCopyright(const char* copyright);
|
|
status_t CommitHeader();
|
|
status_t Flush();
|
|
status_t Close();
|
|
|
|
status_t AddTrackInfo(int32 streamIndex, uint32 code,
|
|
const void* data, size_t size,
|
|
uint32 flags = 0);
|
|
|
|
status_t WriteChunk(int32 streamIndex,
|
|
const void* chunkBuffer, size_t chunkSize,
|
|
media_encode_info* encodeInfo);
|
|
|
|
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
|