Searched refs:num_strips (Results 1 – 2 of 2) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | cinepak.c | 320 int num_strips; in cinepak_predecode_check() local 323 num_strips = AV_RB16 (&s->data[8]); in cinepak_predecode_check() 356 if (s->size < 10 + s->sega_film_skip_bytes + num_strips * 12) in cinepak_predecode_check() 359 if (num_strips) { in cinepak_predecode_check() 372 int i, result, strip_size, frame_flags, num_strips; in cinepak_decode() local 376 num_strips = AV_RB16 (&s->data[8]); in cinepak_decode() 380 num_strips = FFMIN(num_strips, MAX_STRIPS); in cinepak_decode() 384 for (i=0; i < num_strips; i++) { in cinepak_decode() 457 int num_strips; in cinepak_decode_frame() local 465 num_strips = AV_RB16 (&s->data[8]); in cinepak_decode_frame() [all …]
|
D | cinepakenc.c | 975 int num_strips, int data_size, int isakeyframe) in write_cvid_header() argument 981 AV_WB16(&buf[8], num_strips); in write_cvid_header() 989 int num_strips, strip, i, y, nexty, size, temp_size, best_size; in rd_frame() local 1051 …for (num_strips = s->min_strips; num_strips <= s->max_strips && num_strips <= s->h / MB_SIZE; num_… in rd_frame() 1058 nexty = strip * s->h / num_strips; // <= s->h in rd_frame() 1065 … av_log(s->avctx, AV_LOG_INFO, "skipping zero height strip %i of %i\n", strip, num_strips); in rd_frame() 1097 best_size = size + write_cvid_header(s, s->frame_buf, num_strips, size, isakeyframe); in rd_frame() 1101 best_nstrips = num_strips; in rd_frame() 1105 if (num_strips - best_nstrips > 4) in rd_frame()
|