Implemented static Write and Seek hooks to be passed to libavformat...

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32018 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus
2009-07-31 13:49:11 +00:00
parent 55c3b5f1d5
commit 2e9d65abf5
2 changed files with 61 additions and 0 deletions
@@ -203,3 +203,52 @@ AVFormatWriter::WriteChunk(void* cookie, const void* chunkBuffer,
}
// #pragma mark -
/*static*/ int
AVFormatWriter::_Write(void* cookie, const uint8* buffer, int bufferSize)
{
TRACE_IO("AVFormatWriter::_Write(%p, %p, %d)\n",
cookie, buffer, bufferSize);
AVFormatWriter* writer = reinterpret_cast<AVFormatWriter*>(cookie);
ssize_t written = writer->fTarget->Write(buffer, bufferSize);
TRACE_IO(" written: %ld\n", written);
return (int)written;
}
/*static*/ off_t
AVFormatWriter::_Seek(void* cookie, off_t offset, int whence)
{
TRACE_IO("AVFormatWriter::_Seek(%p, %lld, %d)\n",
cookie, offset, whence);
AVFormatWriter* writer = reinterpret_cast<AVFormatWriter*>(cookie);
BPositionIO* positionIO = dynamic_cast<BPositionIO*>(writer->fTarget);
if (positionIO == NULL)
return -1;
// Support for special file size retrieval API without seeking
// anywhere:
if (whence == AVSEEK_SIZE) {
off_t size;
if (positionIO->GetSize(&size) == B_OK)
return size;
return -1;
}
off_t position = positionIO->Seek(offset, whence);
TRACE_IO(" position: %lld\n", position);
if (position < 0)
return -1;
return position;
}
@@ -10,6 +10,10 @@
#include "WriterPlugin.h"
extern "C" {
#include "avformat.h"
}
class AVFormatWriter : public Writer {
public:
@@ -35,9 +39,17 @@ public:
const void* chunkBuffer, size_t chunkSize,
media_encode_info* encodeInfo);
private:
static int _Write(void* cookie, const uint8* buffer,
int bufferSize);
static off_t _Seek(void* cookie, off_t offset, int whence);
private:
class StreamCookie;
AVFormatContext* fContext;
StreamCookie** fStreams;
BLocker fStreamLock;
};