Home
last modified time | relevance | path

Searched refs:nb_coded_side_data (Results 1 – 5 of 5) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dutils.c1046 for (i = 0; i < avctx->nb_coded_side_data; i++) in ff_add_cpb_side_data()
1054 tmp = av_realloc_array(avctx->coded_side_data, avctx->nb_coded_side_data + 1, sizeof(*tmp)); in ff_add_cpb_side_data()
1061 avctx->nb_coded_side_data++; in ff_add_cpb_side_data()
1063 avctx->coded_side_data[avctx->nb_coded_side_data - 1].type = AV_PKT_DATA_CPB_PROPERTIES; in ff_add_cpb_side_data()
1064 avctx->coded_side_data[avctx->nb_coded_side_data - 1].data = (uint8_t*)props; in ff_add_cpb_side_data()
1065 avctx->coded_side_data[avctx->nb_coded_side_data - 1].size = size; in ff_add_cpb_side_data()
Davcodec.c487 for (i = 0; i < avctx->nb_coded_side_data; i++) in avcodec_close()
490 avctx->nb_coded_side_data = 0; in avcodec_close()
Davcodec.h1856 int nb_coded_side_data; member
/third_party/ffmpeg/fftools/
Dffmpeg.c3196 if (ost->enc_ctx->nb_coded_side_data) { in init_output_stream()
3199 for (i = 0; i < ost->enc_ctx->nb_coded_side_data; i++) { in init_output_stream()
/third_party/ffmpeg/libavformat/
Ddemux.c2402 for (int i = 0; i < avctx->nb_coded_side_data; i++) { in add_coded_side_data()