Searched refs:AV_INPUT_BUFFER_MIN_SIZE (Results 1 - 17 of 17) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | msvideo1enc.c | 81 if ((ret = ff_alloc_packet(avctx, pkt, avctx->width*avctx->height*9 + AV_INPUT_BUFFER_MIN_SIZE)) < 0) in encode_frame()
|
H A D | pngenc.c | 615 AV_INPUT_BUFFER_MIN_SIZE + // headers in encode_png() 946 AV_INPUT_BUFFER_MIN_SIZE + // headers in encode_apng() 960 s->bytestream = s->extra_data = av_malloc(AV_INPUT_BUFFER_MIN_SIZE); in encode_apng()
|
H A D | jpeglsenc.c | 437 size = AV_INPUT_BUFFER_MIN_SIZE; in encode_jpegls_init()
|
H A D | avcodec.h | 191 #define AV_INPUT_BUFFER_MIN_SIZE 16384 macro
|
H A D | asvenc.c | 262 AV_INPUT_BUFFER_MIN_SIZE)) < 0) in encode_frame()
|
H A D | ljpegenc.c | 223 size_t max_pkt_size = AV_INPUT_BUFFER_MIN_SIZE; in ljpeg_encode_frame()
|
H A D | proresenc_anatoliy.c | 729 int frame_size = FFALIGN(avctx->width, 16) * FFALIGN(avctx->height, 16)*16 + 500 + AV_INPUT_BUFFER_MIN_SIZE; //FIXME choose tighter limit in prores_encode_frame() 732 if ((ret = ff_alloc_packet(avctx, pkt, frame_size + AV_INPUT_BUFFER_MIN_SIZE)) < 0) in prores_encode_frame()
|
H A D | gif.c | 484 if ((ret = ff_alloc_packet(avctx, pkt, avctx->width*avctx->height*7/5 + AV_INPUT_BUFFER_MIN_SIZE)) < 0) in gif_encode_frame()
|
H A D | tiffenc.c | 337 avctx->height * 4 + AV_INPUT_BUFFER_MIN_SIZE; in encode_frame()
|
H A D | libxvid.c | 742 if ((ret = ff_alloc_packet(avctx, pkt, mb_width*(int64_t)mb_height*MAX_MB_BYTES + AV_INPUT_BUFFER_MIN_SIZE)) < 0) in xvid_encode_frame()
|
H A D | svq1enc.c | 589 MAX_MB_BYTES * 3 + AV_INPUT_BUFFER_MIN_SIZE); in svq1_encode_frame()
|
H A D | ffv1enc.c | 1105 int64_t maxsize = AV_INPUT_BUFFER_MIN_SIZE in encode_frame() 1155 maxsize = AV_INPUT_BUFFER_MIN_SIZE + avctx->width*avctx->height*3LL*4; in encode_frame()
|
H A D | flashsv2enc.c | 860 if ((res = ff_alloc_packet(avctx, pkt, s->frame_size + AV_INPUT_BUFFER_MIN_SIZE)) < 0) in flashsv2_encode_frame()
|
H A D | huffyuvenc.c | 734 if ((ret = ff_alloc_packet(avctx, pkt, width * height * 3 * 4 + AV_INPUT_BUFFER_MIN_SIZE)) < 0) in encode_frame()
|
H A D | proresenc_kostya.c | 1002 if ((ret = ff_alloc_packet(avctx, pkt, pkt_size + AV_INPUT_BUFFER_MIN_SIZE)) < 0) in encode_frame()
|
H A D | j2kenc.c | 1535 if ((ret = ff_alloc_packet(avctx, pkt, avctx->width*avctx->height*9 + AV_INPUT_BUFFER_MIN_SIZE)) < 0) in encode_frame()
|
H A D | snowenc.c | 1580 if ((ret = ff_alloc_packet(avctx, pkt, s->b_width*s->b_height*MB_SIZE*MB_SIZE*3 + AV_INPUT_BUFFER_MIN_SIZE)) < 0) in encode_frame()
|
Completed in 32 milliseconds