Home
last modified time | relevance | path

Searched refs:av_buffer_replace (Results 1 – 9 of 9) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dmpegpicture.c321 ret = av_buffer_replace(&dst->mb_var_buf, src->mb_var_buf); in ff_update_picture_tables()
322 ret |= av_buffer_replace(&dst->mc_mb_var_buf, src->mc_mb_var_buf); in ff_update_picture_tables()
323 ret |= av_buffer_replace(&dst->mb_mean_buf, src->mb_mean_buf); in ff_update_picture_tables()
324 ret |= av_buffer_replace(&dst->mbskip_table_buf, src->mbskip_table_buf); in ff_update_picture_tables()
325 ret |= av_buffer_replace(&dst->qscale_table_buf, src->qscale_table_buf); in ff_update_picture_tables()
326 ret |= av_buffer_replace(&dst->mb_type_buf, src->mb_type_buf); in ff_update_picture_tables()
328 ret |= av_buffer_replace(&dst->motion_val_buf[i], src->motion_val_buf[i]); in ff_update_picture_tables()
329 ret |= av_buffer_replace(&dst->ref_index_buf[i], src->ref_index_buf[i]); in ff_update_picture_tables()
Dh264_slice.c327 ret = av_buffer_replace(&h->ps.sps_list[i], h1->ps.sps_list[i]); in ff_h264_update_thread_context()
332 ret = av_buffer_replace(&h->ps.pps_list[i], h1->ps.pps_list[i]); in ff_h264_update_thread_context()
337 ret = av_buffer_replace(&h->ps.pps_ref, h1->ps.pps_ref); in ff_h264_update_thread_context()
427 ret = av_buffer_replace(&h->sei.a53_caption.buf_ref, h1->sei.a53_caption.buf_ref); in ff_h264_update_thread_context()
Dhevcdec.c3526 ret = av_buffer_replace(&s->ps.vps_list[i], s0->ps.vps_list[i]); in hevc_update_thread_context()
3532 ret = av_buffer_replace(&s->ps.sps_list[i], s0->ps.sps_list[i]); in hevc_update_thread_context()
3538 ret = av_buffer_replace(&s->ps.pps_list[i], s0->ps.pps_list[i]); in hevc_update_thread_context()
3565 ret = av_buffer_replace(&s->sei.a53_caption.buf_ref, s0->sei.a53_caption.buf_ref); in hevc_update_thread_context()
3588 ret = av_buffer_replace(&s->sei.dynamic_hdr_plus.info, s0->sei.dynamic_hdr_plus.info); in hevc_update_thread_context()
Dpthread_frame.c328 err = av_buffer_replace(&dst->internal->pool, src->internal->pool); in update_context_from_thread()
Dwavpack.c1029 ret = av_buffer_replace(&fdst->dsd_ref, fsrc->dsd_ref); in update_thread_context()
/third_party/ffmpeg/libavutil/
Dbuffer.h237 int av_buffer_replace(AVBufferRef **dst, AVBufferRef *src);
Dframe.c429 av_buffer_replace(&dst->qp_table_buf, src->qp_table_buf); in frame_copy_props()
438 ret = av_buffer_replace(&dst->opaque_ref, src->opaque_ref); in frame_copy_props()
439 ret |= av_buffer_replace(&dst->private_ref, src->private_ref); in frame_copy_props()
Dbuffer.c219 int av_buffer_replace(AVBufferRef **pdst, AVBufferRef *src) in av_buffer_replace() function
/third_party/ffmpeg/doc/
DAPIchanges112 Add a av_buffer_replace() convenience function.