Lines Matching refs:src
741 * Copy frame properties from src to dst and create a new reference for each
742 * AVBufferRef from src.
744 * If src is not reference counted, new buffers are allocated and the data is
753 int av_frame_ref(AVFrame *dst, const AVFrame *src);
756 * Create a new frame that references the same data as src.
762 AVFrame *av_frame_clone(const AVFrame *src);
770 * Move everything contained in src to dst and reset src.
776 void av_frame_move_ref(AVFrame *dst, AVFrame *src);
831 * Copy the frame data from src to dst.
834 * allocated with the same parameters as src.
841 int av_frame_copy(AVFrame *dst, const AVFrame *src);
844 * Copy only "metadata" fields from src to dst.
851 int av_frame_copy_props(AVFrame *dst, const AVFrame *src);