Lines Matching defs:size
1052 * @return packet data size on success
1063 "Error getting output packet of size %"SIZE_SPECIFIER".\n", cx_frame->sz);
1066 memcpy(pkt->data, cx_frame->buf, pkt->size);
1106 return pkt->size;
1113 * @return Stored frame size
1114 * @return AVERROR(EINVAL) on output size error
1122 int size = 0;
1127 size = storeframe(avctx, cx_frame, pkt_out);
1128 if (size < 0)
1129 return size;
1139 if (!size) {
1146 size = storeframe(avctx, &cx_frame, pkt_out);
1147 if (size < 0)
1148 return size;
1206 return size;
1358 { "denoise-block-size", "Denoise block size ", OFFSET(denoise_block_size), AV_OPT_TYPE_INT, {.i64 = -1}, -1, INT_MAX, VE},