Home
last modified time | relevance | path

Searched refs:coded_side_data (Results 1 – 7 of 7) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dutils.c1067 if (avctx->coded_side_data[i].type == AV_PKT_DATA_CPB_PROPERTIES) in ff_add_cpb_side_data()
1068 return (AVCPBProperties *)avctx->coded_side_data[i].data; in ff_add_cpb_side_data()
1074 tmp = av_realloc_array(avctx->coded_side_data, avctx->nb_coded_side_data + 1, sizeof(*tmp)); in ff_add_cpb_side_data()
1080 avctx->coded_side_data = tmp; in ff_add_cpb_side_data()
1083 avctx->coded_side_data[avctx->nb_coded_side_data - 1].type = AV_PKT_DATA_CPB_PROPERTIES; in ff_add_cpb_side_data()
1084 avctx->coded_side_data[avctx->nb_coded_side_data - 1].data = (uint8_t*)props; in ff_add_cpb_side_data()
1085 avctx->coded_side_data[avctx->nb_coded_side_data - 1].size = size; in ff_add_cpb_side_data()
Doptions.c225 av_freep(&avctx->coded_side_data[i].data); in copy_context_reset()
226 av_freep(&avctx->coded_side_data); in copy_context_reset()
269 dest->coded_side_data = NULL; in avcodec_copy_context()
Davcodec.c622 av_freep(&avctx->coded_side_data[i].data); in avcodec_close()
623 av_freep(&avctx->coded_side_data); in avcodec_close()
Davcodec.h2193 AVPacketSideData *coded_side_data; member
/third_party/ffmpeg/fftools/
Dffmpeg.c3619 const AVPacketSideData *sd_src = &ost->enc_ctx->coded_side_data[i]; in init_output_stream()
/third_party/ffmpeg/doc/
DAPIchanges906 xxxxxxx - Add AVCodecContext.coded_side_data.
/third_party/ffmpeg/libavformat/
Dutils.c3628 const AVPacketSideData *sd_src = &avctx->coded_side_data[i];