FFmpeg
Loading...
Searching...
No Matches
ops.c File Reference
#include "libavutil/attributes.h"
#include "libavutil/avassert.h"
#include "libavutil/avstring.h"
#include "libavutil/bprint.h"
#include "libavutil/bswap.h"
#include "libavutil/mem.h"
#include "libavutil/rational.h"
#include "libavutil/refstruct.h"
#include "format.h"
#include "ops.h"
#include "ops_internal.h"

Go to the source code of this file.

Macros

#define FORWARD(I, J, EXPR)
 
#define RESET(I)
 

Enumerations

enum  { SWS_COMP_IDENTITY , SWS_COMP_DIRTY = ~(SWS_COMP_COPY | SWS_COMP_CONST) }
 

Functions

const char * ff_sws_pixel_type_name (SwsPixelType type)
 
const char * ff_sws_op_type_name (SwsOpType op)
 
SwsCompMask ff_sws_comp_mask_q4 (const AVRational64 q[4])
 
void ff_sws_comp_mask_swizzle (SwsCompMask *mask, const SwsSwizzleOp *swiz)
 
SwsCompMask ff_sws_comp_mask_needed (const SwsOp *op)
 
int ff_sws_rw_op_planes (const SwsOp *op)
 Return the number of planes involved in a read/write operation.
 
static AVRational64 av_min_q64 (AVRational64 a, AVRational64 b)
 
static AVRational64 av_max_q64 (AVRational64 a, AVRational64 b)
 
void ff_sws_apply_op_q (const SwsOp *op, AVRational64 x[4])
 Apply an operation to an AVRational64.
 
static SwsCompFlags merge_comp_flags (SwsCompFlags a, SwsCompFlags b)
 
static void apply_filter_weights (SwsComps *comps, const SwsComps *prev, const SwsFilterWeights *weights)
 
void ff_sws_op_list_update_comps (SwsOpList *ops)
 Infer + propagate known information about components.
 
static void op_uninit (SwsOp *op)
 
SwsOpListff_sws_op_list_alloc (void)
 
void ff_sws_op_list_free (SwsOpList **p_ops)
 
SwsOpListff_sws_op_list_duplicate (const SwsOpList *ops)
 Returns a duplicate of ops, or NULL on OOM.
 
const SwsOpff_sws_op_list_input (const SwsOpList *ops)
 Returns the input operation for a given op list, or NULL if there is none (e.g.
 
const SwsOpff_sws_op_list_output (const SwsOpList *ops)
 Returns the output operation for a given op list, or NULL if there is none.
 
void ff_sws_op_list_remove_at (SwsOpList *ops, int index, int count)
 
int ff_sws_op_list_insert_at (SwsOpList *ops, int index, SwsOp *op)
 
int ff_sws_op_list_append (SwsOpList *ops, SwsOp *op)
 These will take over ownership of op and set it to {0}, even on failure.
 
bool ff_sws_op_list_is_noop (const SwsOpList *ops)
 Returns whether an op list represents a true no-op operation, i.e.
 
int ff_sws_op_list_max_size (const SwsOpList *ops)
 Returns the size of the largest pixel type used in ops.
 
uint32_t ff_sws_linear_mask (const SwsLinearOp *c)
 
static char describe_comp_flags (SwsCompFlags flags)
 
static void print_deps (AVBPrint *bp, const SwsCompMask *deps)
 
static void print_q (AVBPrint *bp, const AVRational64 q)
 
static void print_q4 (AVBPrint *bp, const AVRational64 q4[4], SwsCompMask mask)
 
void ff_sws_op_desc (AVBPrint *bp, const SwsOp *op)
 Describe an operation in human-readable form.
 
static void desc_plane_order (AVBPrint *bp, int nb_planes, const uint8_t *order)
 
void ff_sws_op_list_print (void *log, int lev, int lev_extra, const SwsOpList *ops)
 Print out the contents of an operation list.
 

Variables

const SwsOpBackend backend_c
 Copyright (C) 2025 Niklas Haas.
 
const SwsOpBackend backend_murder
 
const SwsOpBackend backend_aarch64
 
const SwsOpBackend backend_x86
 
const SwsOpBackend *const ff_sws_op_backends []
 
static const char *const rw_mode_names []
 

Macro Definition Documentation

◆ FORWARD

#define FORWARD ( I,
J,
EXPR )
Value:
do { \
SwsCompFlags flags = prev.flags[J]; \
op->comps.flags[I] = merge_comp_flags(op->comps.flags[I], (EXPR)); \
op->comps.dep_in[I] |= prev.dep_in[J]; \
} while (0)
#define flags(name, subs,...)
Definition cbs_h264.c:74
static int op(uint8_t **dst, const uint8_t *dst_end, GetByteContext *gb, int pixel, int count, int *x, int width, int linesize)
Perform decode operation.
Definition anm.c:76
static SwsCompFlags merge_comp_flags(SwsCompFlags a, SwsCompFlags b)
Definition ops.c:288
SwsCompFlags
Definition ops.h:77

Referenced by ff_sws_op_list_update_comps().

◆ RESET

#define RESET ( I)
Value:
do { \
op->comps.flags[I] = SWS_COMP_GARBAGE; \
op->comps.min[I] = op->comps.max[I] = (AVRational64) {0}; \
op->comps.dep_in[I] = SWS_COMP_NONE; \
} while (0)
@ SWS_COMP_GARBAGE
Definition ops.h:78
64-bit Rational number (pair of numerator and denominator).
Definition rational64.h:52
@ SWS_COMP_NONE
Definition uops.h:95

Referenced by ff_sws_op_list_update_comps().

Enumeration Type Documentation

◆ anonymous enum

anonymous enum
Enumerator
SWS_COMP_IDENTITY 
SWS_COMP_DIRTY 

Definition at line 280 of file ops.c.

Function Documentation

◆ ff_sws_pixel_type_name()

const char * ff_sws_pixel_type_name ( SwsPixelType type)

Definition at line 56 of file ops.c.

Referenced by ff_sws_op_desc(), ff_sws_op_list_print(), and ff_sws_uop_name().

◆ ff_sws_op_type_name()

const char * ff_sws_op_type_name ( SwsOpType op)

Definition at line 71 of file ops.c.

Referenced by ff_sws_op_desc().

◆ ff_sws_comp_mask_q4()

SwsCompMask ff_sws_comp_mask_q4 ( const AVRational64 q[4])

Definition at line 100 of file ops.c.

Referenced by convert_to_aarch64_impl(), ff_sws_op_desc(), ff_sws_op_list_print(), and translate_op().

◆ ff_sws_comp_mask_swizzle()

void ff_sws_comp_mask_swizzle ( SwsCompMask * mask,
const SwsSwizzleOp * swiz )

Definition at line 110 of file ops.c.

Referenced by op_commute_clear().

◆ ff_sws_comp_mask_needed()

SwsCompMask ff_sws_comp_mask_needed ( const SwsOp * op)

◆ ff_sws_rw_op_planes()

int ff_sws_rw_op_planes ( const SwsOp * op)

Return the number of planes involved in a read/write operation.

Definition at line 133 of file ops.c.

Referenced by aarch64_compile(), compile(), ff_sws_op_list_is_noop(), ff_sws_op_list_print(), rw_data_planes(), and translate_rw_op().

◆ av_min_q64()

static AVRational64 av_min_q64 ( AVRational64 a,
AVRational64 b )
static

Definition at line 147 of file ops.c.

Referenced by ff_sws_apply_op_q().

◆ av_max_q64()

static AVRational64 av_max_q64 ( AVRational64 a,
AVRational64 b )
static

Definition at line 152 of file ops.c.

Referenced by ff_sws_apply_op_q().

◆ ff_sws_apply_op_q()

void ff_sws_apply_op_q ( const SwsOp * op,
AVRational64 x[4] )

Apply an operation to an AVRational64.

No-op for read/write operations.

Definition at line 157 of file ops.c.

Referenced by ff_sws_op_list_update_comps(), and op_commute_clear().

◆ merge_comp_flags()

static SwsCompFlags merge_comp_flags ( SwsCompFlags a,
SwsCompFlags b )
static

Definition at line 288 of file ops.c.

◆ apply_filter_weights()

static void apply_filter_weights ( SwsComps * comps,
const SwsComps * prev,
const SwsFilterWeights * weights )
static

Definition at line 295 of file ops.c.

Referenced by ff_sws_op_list_update_comps().

◆ ff_sws_op_list_update_comps()

void ff_sws_op_list_update_comps ( SwsOpList * ops)

Infer + propagate known information about components.

Called automatically when needed by the optimizer and compiler.

Don't mark packed or fractional reads as a copy, because the read operation implicitly unpacks the data into separate components. The only case in which op lists involving such reads can be refcopies is in the case of a true noop, which is already covered by the no-op check.

Definition at line 315 of file ops.c.

Referenced by compile_backend(), and ff_sws_op_list_optimize().

◆ op_uninit()

static void op_uninit ( SwsOp * op)
static

Definition at line 625 of file ops.c.

Referenced by ff_sws_op_list_free(), ff_sws_op_list_insert_at(), and ff_sws_op_list_remove_at().

◆ ff_sws_op_list_alloc()

SwsOpList * ff_sws_op_list_alloc ( void )

Definition at line 646 of file ops.c.

◆ ff_sws_op_list_free()

void ff_sws_op_list_free ( SwsOpList ** p_ops)

◆ ff_sws_op_list_duplicate()

SwsOpList * ff_sws_op_list_duplicate ( const SwsOpList * ops)

Returns a duplicate of ops, or NULL on OOM.

Definition at line 673 of file ops.c.

Referenced by compile_backend(), ff_sws_op_list_split_at(), ff_sws_op_list_split_planes(), print_passes(), register_all_uops(), and register_op().

◆ ff_sws_op_list_input()

const SwsOp * ff_sws_op_list_input ( const SwsOpList * ops)

Returns the input operation for a given op list, or NULL if there is none (e.g.

for a pure CLEAR-only operation list).

This will always be an op of type SWS_OP_READ.

Definition at line 713 of file ops.c.

Referenced by aarch64_compile(), compile_single(), ff_sws_op_list_is_noop(), get_input_size(), and op_list_get_plane_copy().

◆ ff_sws_op_list_output()

const SwsOp * ff_sws_op_list_output ( const SwsOpList * ops)

Returns the output operation for a given op list, or NULL if there is none.

This will always be an op of type SWS_OP_WRITE.

Definition at line 722 of file ops.c.

Referenced by aarch64_compile(), compile_single(), ff_sws_compile_pass(), ff_sws_op_list_is_noop(), ff_sws_op_list_split_planes(), and op_list_get_plane_copy().

◆ ff_sws_op_list_remove_at()

void ff_sws_op_list_remove_at ( SwsOpList * ops,
int index,
int count )

Definition at line 731 of file ops.c.

Referenced by ff_sws_op_list_optimize(), and ff_sws_op_list_split_at().

◆ ff_sws_op_list_insert_at()

int ff_sws_op_list_insert_at ( SwsOpList * ops,
int index,
SwsOp * op )

◆ ff_sws_op_list_append()

int ff_sws_op_list_append ( SwsOpList * ops,
SwsOp * op )

These will take over ownership of op and set it to {0}, even on failure.

Definition at line 756 of file ops.c.

Referenced by ff_sws_op_list_split_at().

◆ ff_sws_op_list_is_noop()

bool ff_sws_op_list_is_noop ( const SwsOpList * ops)

Returns whether an op list represents a true no-op operation, i.e.

may be eliminated entirely from an execution graph.

Note that this check is unlikely to ever be hit in practice, since it would imply the existence of planar formats with different plane orders between them, e.g. rgbap <-> gbrap, which doesn't currently exist. However, the check is cheap and lets me sleep at night.

Definition at line 761 of file ops.c.

Referenced by compile_subpass(), ff_sws_compile_pass(), and print_passes().

◆ ff_sws_op_list_max_size()

int ff_sws_op_list_max_size ( const SwsOpList * ops)

Returns the size of the largest pixel type used in ops.

Definition at line 791 of file ops.c.

Referenced by aarch64_compile(), and collect_ops_compile().

◆ ff_sws_linear_mask()

uint32_t ff_sws_linear_mask ( const SwsLinearOp * c)

◆ describe_comp_flags()

static char describe_comp_flags ( SwsCompFlags flags)
static

Definition at line 814 of file ops.c.

Referenced by ff_sws_op_list_print().

◆ print_deps()

static void print_deps ( AVBPrint * bp,
const SwsCompMask * deps )
static

Definition at line 832 of file ops.c.

Referenced by ff_sws_op_list_print().

◆ print_q()

static void print_q ( AVBPrint * bp,
const AVRational64 q )
static

Definition at line 843 of file ops.c.

◆ print_q4()

static void print_q4 ( AVBPrint * bp,
const AVRational64 q4[4],
SwsCompMask mask )
static

Definition at line 856 of file ops.c.

Referenced by ff_sws_op_desc(), and ff_sws_op_list_print().

◆ ff_sws_op_desc()

void ff_sws_op_desc ( AVBPrint * bp,
const SwsOp * op )

Describe an operation in human-readable form.

Definition at line 877 of file ops.c.

Referenced by ff_sws_op_list_print().

◆ desc_plane_order()

static void desc_plane_order ( AVBPrint * bp,
int nb_planes,
const uint8_t * order )
static

Definition at line 973 of file ops.c.

Referenced by ff_sws_op_list_print().

◆ ff_sws_op_list_print()

void ff_sws_op_list_print ( void * log,
int lev,
int lev_extra,
const SwsOpList * ops )

Print out the contents of an operation list.

Definition at line 987 of file ops.c.

Referenced by add_ops_convert_pass(), compile_backend(), compile_subpass(), ff_sws_compile_pass(), and print_ops().

Variable Documentation

◆ backend_c

const SwsOpBackend backend_c
extern

Copyright (C) 2025 Niklas Haas.

This file is part of FFmpeg.

FFmpeg is free software; you can redistribute it and/or 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.

FFmpeg is distributed in the hope that it will be useful, 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 License along with FFmpeg; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

Definition at line 199 of file uops_backend.c.

◆ backend_murder

const SwsOpBackend backend_murder
extern

Definition at line 147 of file ops_memcpy.c.

◆ backend_aarch64

const SwsOpBackend backend_aarch64
extern

Definition at line 268 of file ops.c.

◆ backend_x86

const SwsOpBackend backend_x86
extern

Definition at line 705 of file ops.c.

◆ ff_sws_op_backends

const SwsOpBackend* const ff_sws_op_backends[]
Initial value:
= {
}
#define NULL
Definition coverity.c:32
const SwsOpBackend backend_c
Copyright (C) 2025 Niklas Haas.
const SwsOpBackend backend_murder
Definition ops_memcpy.c:147

Definition at line 42 of file ops.c.

Referenced by ff_sws_ops_compile(), and run_test().

◆ rw_mode_names

const char* const rw_mode_names[]
static
Initial value:
= {
[SWS_RW_PLANAR] = "planar",
[SWS_RW_PACKED] = "packed",
[SWS_RW_PALETTE] = "palette"
}
@ SWS_RW_PALETTE
Definition ops.h:109
@ SWS_RW_PLANAR
Note: 1-component reads are either SWS_RW_PLANAR or SWS_RW_PACKED, depending on the underlying interp...
Definition ops.h:107
@ SWS_RW_PACKED
Definition ops.h:108

Definition at line 871 of file ops.c.

Referenced by ff_sws_op_desc().