Searched refs:max_strips (Results 1 - 1 of 1) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dcinepakenc.c154 int max_strips; //the current limit member in struct:__anon3110
173 { "max_strips", "Limit strips/frame, vintage compatible is 1..3, otherwise the more the better", OFFSET(max_max_strips), AV_OPT_TYPE_INT, { .i64 = 3 }, MIN_STRIPS, MAX_STRIPS, VE },
174 { "min_strips", "Enforce min strips/frame, more is worse and faster, must be <= max_strips", OFFSET(min_min_strips), AV_OPT_TYPE_INT, { .i64 = MIN_STRIPS }, MIN_STRIPS, MAX_STRIPS, VE },
285 s->max_strips = s->max_max_strips;
1177 for(num_strips = s->min_strips; num_strips <= s->max_strips && num_strips <= s->h / MB_SIZE; num_strips++) {
1248 if(best_nstrips == s->max_strips) { // let us try to step up
1249 s->max_strips = best_nstrips + 1;
1250 if(s->max_strips >= s->max_max_strips)
1251 s->max_strips = s->max_max_strips;
1253 s->max_strips
[all...]

Completed in 103 milliseconds