2011-02-08 02:15:44 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2008 Alexander Strange <astrange@ithinksw.com>
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2011-02-08 02:15:44 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2011-02-08 02:15:44 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2011-02-08 02:15:44 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2011-03-18 17:35:10 +00:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2011-02-08 02:15:44 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Multithreading support functions
|
|
|
|
* @author Alexander Strange <astrange@ithinksw.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AVCODEC_THREAD_H
|
|
|
|
#define AVCODEC_THREAD_H
|
|
|
|
|
2012-11-21 20:34:46 +00:00
|
|
|
#include "libavutil/buffer.h"
|
|
|
|
|
2011-02-08 02:15:44 +00:00
|
|
|
#include "config.h"
|
|
|
|
#include "avcodec.h"
|
|
|
|
|
2012-11-21 20:34:46 +00:00
|
|
|
typedef struct ThreadFrame {
|
|
|
|
AVFrame *f;
|
|
|
|
AVCodecContext *owner;
|
|
|
|
// progress->data is an array of 2 ints holding progress for top/bottom
|
|
|
|
// fields
|
|
|
|
AVBufferRef *progress;
|
|
|
|
} ThreadFrame;
|
|
|
|
|
2011-02-08 02:15:44 +00:00
|
|
|
/**
|
2011-12-07 12:03:53 +00:00
|
|
|
* Wait for decoding threads to finish and reset internal state.
|
|
|
|
* Called by avcodec_flush_buffers().
|
2011-02-08 02:15:44 +00:00
|
|
|
*
|
|
|
|
* @param avctx The context.
|
|
|
|
*/
|
|
|
|
void ff_thread_flush(AVCodecContext *avctx);
|
|
|
|
|
|
|
|
/**
|
2011-12-07 12:03:53 +00:00
|
|
|
* Submit a new frame to a decoding thread.
|
2011-02-08 02:15:44 +00:00
|
|
|
* Returns the next available frame in picture. *got_picture_ptr
|
|
|
|
* will be 0 if none is available.
|
2011-11-24 00:50:05 +00:00
|
|
|
* The return value on success is the size of the consumed packet for
|
2012-12-19 17:48:21 +00:00
|
|
|
* compatibility with avcodec_decode_video2(). This means the decoder
|
2011-11-24 00:50:05 +00:00
|
|
|
* has to consume the full packet.
|
2011-02-08 02:15:44 +00:00
|
|
|
*
|
|
|
|
* Parameters are the same as avcodec_decode_video2().
|
|
|
|
*/
|
|
|
|
int ff_thread_decode_frame(AVCodecContext *avctx, AVFrame *picture,
|
|
|
|
int *got_picture_ptr, AVPacket *avpkt);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If the codec defines update_thread_context(), call this
|
|
|
|
* when they are ready for the next thread to start decoding
|
|
|
|
* the next frame. After calling it, do not change any variables
|
|
|
|
* read by the update_thread_context() method, or call ff_thread_get_buffer().
|
|
|
|
*
|
|
|
|
* @param avctx The context.
|
|
|
|
*/
|
|
|
|
void ff_thread_finish_setup(AVCodecContext *avctx);
|
|
|
|
|
|
|
|
/**
|
2011-12-07 12:03:53 +00:00
|
|
|
* Notify later decoding threads when part of their reference picture is ready.
|
2011-02-08 02:15:44 +00:00
|
|
|
* Call this when some part of the picture is finished decoding.
|
|
|
|
* Later calls with lower values of progress have no effect.
|
|
|
|
*
|
|
|
|
* @param f The picture being decoded.
|
|
|
|
* @param progress Value, in arbitrary units, of how much of the picture has decoded.
|
|
|
|
* @param field The field being decoded, for field-picture codecs.
|
|
|
|
* 0 for top field or frame pictures, 1 for bottom field.
|
|
|
|
*/
|
2012-11-21 20:34:46 +00:00
|
|
|
void ff_thread_report_progress(ThreadFrame *f, int progress, int field);
|
2011-02-08 02:15:44 +00:00
|
|
|
|
|
|
|
/**
|
2011-12-07 12:03:53 +00:00
|
|
|
* Wait for earlier decoding threads to finish reference pictures.
|
2011-02-08 02:15:44 +00:00
|
|
|
* Call this before accessing some part of a picture, with a given
|
|
|
|
* value for progress, and it will return after the responsible decoding
|
|
|
|
* thread calls ff_thread_report_progress() with the same or
|
|
|
|
* higher value for progress.
|
|
|
|
*
|
|
|
|
* @param f The picture being referenced.
|
|
|
|
* @param progress Value, in arbitrary units, to wait for.
|
|
|
|
* @param field The field being referenced, for field-picture codecs.
|
|
|
|
* 0 for top field or frame pictures, 1 for bottom field.
|
|
|
|
*/
|
2012-11-21 20:34:46 +00:00
|
|
|
void ff_thread_await_progress(ThreadFrame *f, int progress, int field);
|
2011-02-08 02:15:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Wrapper around get_buffer() for frame-multithreaded codecs.
|
2012-11-10 12:22:56 +00:00
|
|
|
* Call this function instead of ff_get_buffer(f).
|
2011-02-08 02:15:44 +00:00
|
|
|
* Cannot be called after the codec has called ff_thread_finish_setup().
|
|
|
|
*
|
|
|
|
* @param avctx The current context.
|
|
|
|
* @param f The frame to write into.
|
|
|
|
*/
|
2012-11-21 20:34:46 +00:00
|
|
|
int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags);
|
2011-02-08 02:15:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Wrapper around release_buffer() frame-for multithreaded codecs.
|
|
|
|
* Call this function instead of avctx->release_buffer(f).
|
|
|
|
* The AVFrame will be copied and the actual release_buffer() call
|
|
|
|
* will be performed later. The contents of data pointed to by the
|
|
|
|
* AVFrame should not be changed until ff_thread_get_buffer() is called
|
|
|
|
* on it.
|
|
|
|
*
|
|
|
|
* @param avctx The current context.
|
|
|
|
* @param f The picture being released.
|
|
|
|
*/
|
2012-11-21 20:34:46 +00:00
|
|
|
void ff_thread_release_buffer(AVCodecContext *avctx, ThreadFrame *f);
|
|
|
|
|
|
|
|
int ff_thread_ref_frame(ThreadFrame *dst, ThreadFrame *src);
|
2011-02-08 02:15:44 +00:00
|
|
|
|
2011-03-29 21:18:21 +00:00
|
|
|
int ff_thread_init(AVCodecContext *s);
|
2011-02-08 02:15:45 +00:00
|
|
|
void ff_thread_free(AVCodecContext *s);
|
|
|
|
|
2011-02-08 02:15:44 +00:00
|
|
|
#endif /* AVCODEC_THREAD_H */
|