#include "avcodec.h"
Go to the source code of this file.
Functions | |
int | avfilter_copy_frame_props (AVFilterBufferRef *dst, const AVFrame *src) |
Copy the frame properties of src to dst, without copying the actual image data. | |
AVFilterBufferRef * | avfilter_get_video_buffer_ref_from_frame (const AVFrame *frame, int perms) |
Create and return a picref reference from the data and properties contained in frame. | |
int | avfilter_fill_frame_from_video_buffer_ref (AVFrame *frame, const AVFilterBufferRef *picref) |
Fill an AVFrame with the information stored in picref. |
Definition in file avcodec.c.
int avfilter_copy_frame_props | ( | AVFilterBufferRef * | dst, | |
const AVFrame * | src | |||
) |
Copy the frame properties of src to dst, without copying the actual image data.
Definition at line 26 of file avcodec.c.
Referenced by avfilter_get_video_buffer_ref_from_frame(), and transcode_video().
int avfilter_fill_frame_from_video_buffer_ref | ( | AVFrame * | frame, | |
const AVFilterBufferRef * | picref | |||
) |
Fill an AVFrame with the information stored in picref.
frame | an already allocated AVFrame | |
picref | a video buffer reference |
Definition at line 59 of file avcodec.c.
Referenced by transcode_video(), and video_thread().
AVFilterBufferRef* avfilter_get_video_buffer_ref_from_frame | ( | const AVFrame * | frame, | |
int | perms | |||
) |