FFmpeg
Functions
detection_bbox.c File Reference
#include "detection_bbox.h"

Go to the source code of this file.

Functions

AVDetectionBBoxHeaderav_detection_bbox_alloc (uint32_t nb_bboxes, size_t *out_size)
 Allocates memory for AVDetectionBBoxHeader, plus an array of. More...
 
AVDetectionBBoxHeaderav_detection_bbox_create_side_data (AVFrame *frame, uint32_t nb_bboxes)
 Allocates memory for AVDetectionBBoxHeader, plus an array of. More...
 

Function Documentation

◆ av_detection_bbox_alloc()

AVDetectionBBoxHeader* av_detection_bbox_alloc ( uint32_t  nb_bboxes,
size_t *  out_size 
)

Allocates memory for AVDetectionBBoxHeader, plus an array of.

nb_bboxes

AVDetectionBBox, and initializes the variables. Can be freed with a normal av_free() call.

Parameters
out_sizeif non-NULL, the size in bytes of the resulting data array is written here.

Definition at line 21 of file detection_bbox.c.

Referenced by av_detection_bbox_create_side_data().

◆ av_detection_bbox_create_side_data()

AVDetectionBBoxHeader* av_detection_bbox_create_side_data ( AVFrame frame,
uint32_t  nb_bboxes 
)

Allocates memory for AVDetectionBBoxHeader, plus an array of.

nb_bboxes

AVDetectionBBox, in the given AVFrame

as AVFrameSideData of type AV_FRAME_DATA_DETECTION_BBOXES and initializes the variables.

Definition at line 51 of file detection_bbox.c.

Referenced by dnn_detect_post_proc_ov(), and dnn_detect_post_proc_tf().

frame
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
Definition: filter_design.txt:264