Searched refs:ff_alloc_packet (Results 1 – 25 of 55) sorted by relevance
123
/third_party/ffmpeg/libavcodec/ |
D | encode.h | 65 int ff_alloc_packet(AVCodecContext *avctx, AVPacket *avpkt, int64_t size);
|
D | xbmenc.c | 48 if ((ret = ff_alloc_packet(avctx, pkt, size)) < 0) in xbm_encode_frame()
|
D | aliaspixenc.c | 58 if ((ret = ff_alloc_packet(avctx, pkt, length)) < 0) in encode_frame()
|
D | qoienc.c | 40 if ((ret = ff_alloc_packet(avctx, pkt, packet_size)) < 0) in qoi_encode_frame()
|
D | lclenc.c | 76 if ((ret = ff_alloc_packet(avctx, pkt, max_size)) < 0) in encode_frame()
|
D | libvo-amrwbenc.c | 122 if ((ret = ff_alloc_packet(avctx, avpkt, MAX_PACKET_SIZE)) < 0) in amr_wb_encode_frame()
|
D | pcxenc.c | 137 if ((ret = ff_alloc_packet(avctx, pkt, max_pkt_size)) < 0) in pcx_encode_frame()
|
D | libilbc.c | 187 if ((ret = ff_alloc_packet(avctx, avpkt, 50)) < 0) in ilbc_encode_frame()
|
D | targaenc.c | 95 if ((ret = ff_alloc_packet(avctx, pkt, picsize + 45)) < 0) in targa_encode_frame()
|
D | sunrastenc.c | 179 if ((ret = ff_alloc_packet(avctx, avpkt, s->size)) < 0) in sunrast_encode_frame()
|
D | flashsvenc.c | 233 if ((res = ff_alloc_packet(avctx, pkt, s->image_width * s->image_height * 3)) < 0) in flashsv_encode_frame()
|
D | ttaenc.c | 97 if ((ret = ff_alloc_packet(avctx, avpkt, pkt_size)) < 0) in tta_encode_frame()
|
D | libtwolame.c | 116 if ((ret = ff_alloc_packet(avctx, avpkt, MPA_MAX_CODED_FRAME_SIZE)) < 0) in twolame_encode_frame()
|
D | sgienc.c | 158 if ((ret = ff_alloc_packet(avctx, pkt, bytes_per_channel * length)) < 0) in encode_frame()
|
D | libspeexenc.c | 299 if ((ret = ff_alloc_packet(avctx, avpkt, speex_bits_nbytes(&s->bits))) < 0) in encode_frame()
|
D | hapenc.c | 200 ret = ff_alloc_packet(avctx, pkt, pktsize); in hap_encode()
|
D | libopencore-amr.c | 249 if ((ret = ff_alloc_packet(avctx, avpkt, 32)) < 0) in amr_nb_encode_frame()
|
D | qtrleenc.c | 373 if ((ret = ff_alloc_packet(avctx, pkt, s->max_buf_size)) < 0) in qtrle_encode_frame()
|
D | msvideo1enc.c | 81 …if ((ret = ff_alloc_packet(avctx, pkt, avctx->width*avctx->height*9 + AV_INPUT_BUFFER_MIN_SIZE)) <… in encode_frame()
|
D | ljpegenc.c | 238 if ((ret = ff_alloc_packet(avctx, pkt, max_pkt_size)) < 0) in ljpeg_encode_frame()
|
D | asvenc.c | 261 if ((ret = ff_alloc_packet(avctx, pkt, a->mb_height * a->mb_width * MAX_MB_SIZE + in encode_frame()
|
D | libfdk-aacenc.c | 395 ret = ff_alloc_packet(avctx, avpkt, FFMAX(8192, 768 * avctx->ch_layout.nb_channels)); in aac_encode_frame()
|
D | wmaenc.c | 400 if ((ret = ff_alloc_packet(avctx, avpkt, 2 * MAX_CODED_SUPERFRAME_SIZE)) < 0) in encode_superframe()
|
D | libopusenc.c | 490 if ((ret = ff_alloc_packet(avctx, avpkt, (1275 * 6 + 7) * opus->stream_count)) < 0) in libopus_encode()
|
D | smcenc.c | 508 ret = ff_alloc_packet(avctx, pkt, 8LL * avctx->height * avctx->width); in smc_encode_frame()
|
123