Searched refs:fIOContext (Results 1 - 3 of 3) sorted by relevance

/haiku/src/add-ons/media/plugins/ffmpeg/
H A DAVFormatWriter.h58 AVIOContext* fIOContext; member in class:AVFormatWriter
H A DAVFormatWriter.cpp386 fIOContext(NULL),
404 av_free(fIOContext->buffer);
405 av_free(fIOContext);
417 if (fIOContext == NULL) {
424 fIOContext = avio_alloc_context(buffer, kIOBufferSize, 1, this,
426 if (fIOContext == NULL) {
433 fFormatContext->pb = fIOContext;
H A DAVFormatReader.cpp183 AVIOContext* fIOContext; member in class:StreamBase
205 fIOContext(NULL),
223 if (fIOContext != NULL)
224 av_free(fIOContext->buffer);
225 av_free(fIOContext);
259 fIOContext = avio_alloc_context(buffer, bufferSize, 0, this, _Read, 0,
261 if (fIOContext == NULL) {
268 fContext->pb = fIOContext;
275 av_free(fIOContext->buffer);
276 av_free(fIOContext);
[all...]

Completed in 42 milliseconds