FFmpeg
|
Slice multithreading support functions. More...
#include "config.h"
#include "avcodec.h"
#include "internal.h"
#include "pthread_internal.h"
#include "thread.h"
#include "libavutil/avassert.h"
#include "libavutil/common.h"
#include "libavutil/cpu.h"
#include "libavutil/mem.h"
#include "libavutil/thread.h"
Go to the source code of this file.
Data Structures | |
struct | SliceThreadContext |
Typedefs | |
typedef int( | action_func )(AVCodecContext *c, void *arg) |
typedef int( | action_func2 )(AVCodecContext *c, void *arg, int jobnr, int threadnr) |
Functions | |
static void *attribute_align_arg | worker (void *v) |
void | ff_slice_thread_free (AVCodecContext *avctx) |
static av_always_inline void | thread_park_workers (SliceThreadContext *c, int thread_count) |
static int | thread_execute (AVCodecContext *avctx, action_func *func, void *arg, int *ret, int job_count, int job_size) |
static int | thread_execute2 (AVCodecContext *avctx, action_func2 *func2, void *arg, int *ret, int job_count) |
int | ff_slice_thread_init (AVCodecContext *avctx) |
void | ff_thread_report_progress2 (AVCodecContext *avctx, int field, int thread, int n) |
void | ff_thread_await_progress2 (AVCodecContext *avctx, int field, int thread, int shift) |
int | ff_alloc_entries (AVCodecContext *avctx, int count) |
void | ff_reset_entries (AVCodecContext *avctx) |
Slice multithreading support functions.
Definition in file pthread_slice.c.
typedef int( action_func)(AVCodecContext *c, void *arg) |
Definition at line 38 of file pthread_slice.c.
Definition at line 39 of file pthread_slice.c.
Definition at line 64 of file pthread_slice.c.
Referenced by ff_slice_thread_init().
void ff_slice_thread_free | ( | AVCodecContext * | avctx | ) |
Definition at line 103 of file pthread_slice.c.
Referenced by ff_thread_free().
|
static |
Definition at line 135 of file pthread_slice.c.
Referenced by ff_slice_thread_init(), and thread_execute().
|
static |
Definition at line 142 of file pthread_slice.c.
Referenced by ff_slice_thread_init(), and thread_execute2().
|
static |
Definition at line 168 of file pthread_slice.c.
Referenced by ff_slice_thread_init().
int ff_slice_thread_init | ( | AVCodecContext * | avctx | ) |
Definition at line 175 of file pthread_slice.c.
Referenced by ff_thread_init().
void ff_thread_report_progress2 | ( | AVCodecContext * | avctx, |
int | field, | ||
int | thread, | ||
int | n | ||
) |
Definition at line 242 of file pthread_slice.c.
Referenced by hls_decode_entry_wpp().
void ff_thread_await_progress2 | ( | AVCodecContext * | avctx, |
int | field, | ||
int | thread, | ||
int | shift | ||
) |
Definition at line 253 of file pthread_slice.c.
Referenced by hls_decode_entry_wpp().
int ff_alloc_entries | ( | AVCodecContext * | avctx, |
int | count | ||
) |
Definition at line 269 of file pthread_slice.c.
Referenced by hls_slice_data_wpp().
void ff_reset_entries | ( | AVCodecContext * | avctx | ) |
Definition at line 306 of file pthread_slice.c.
Referenced by hls_slice_data_wpp().