69372b5545
that they can modify the media_format passed in. For example they can store information in the user_data section. I don't actually use this anymore, but it may come in handy again. AVFormatWriter: * Adjust the AVCodecContext flags not only for video, but also for audio streams (as the API example does). This mechanism may not yet work, since the AVCodecEncoder actually uses a different AVCodecContext instance. * Use the encodeInfo->flags and specify the key frame flag for the AVPacket. This finally makes videos encoded on Haiku seekable. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39035 a95241bf-73f2-0310-859d-f6bbb57e9c96
69 lines
1.4 KiB
C++
69 lines
1.4 KiB
C++
/*
|
|
* Copyright 2009-2010, 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,
|
|
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
|