Lines Matching refs:GET_V
166 #define GET_V(dst, check) \
217 GET_V(stream_count, tmp > 0 && tmp <= NUT_MAX_STREAMS);
225 GET_V(nut->time_base_count, tmp > 0 && tmp < INT_MAX / sizeof(AVRational) && tmp < length/2);
231 GET_V(nut->time_base[i].num, tmp > 0 && tmp < (1ULL << 31));
232 GET_V(nut->time_base[i].den, tmp > 0 && tmp < (1ULL << 31));
322 GET_V(nut->header_count, tmp < 128U);
326 GET_V(nut->header_len[i], tmp > 0 && tmp < 256);
391 GET_V(stream_id, tmp < s->nb_streams && !nut->stream[tmp].time_base);
438 GET_V(stc->time_base_id, tmp < nut->time_base_count);
439 GET_V(stc->msb_pts_shift, tmp < 16);
441 GET_V(stc->decode_delay, tmp < 1000); // sanity limit, raise this if Moore's law is true
445 GET_V(st->codecpar->extradata_size, tmp < (1 << 30));
454 GET_V(st->codecpar->width, tmp > 0);
455 GET_V(st->codecpar->height, tmp > 0);
466 GET_V(st->codecpar->sample_rate, tmp > 0);
468 GET_V(st->codecpar->ch_layout.nb_channels, tmp > 0);
522 GET_V(stream_id_plus1, tmp <= s->nb_streams);
716 GET_V(syncpoint_count, tmp < INT_MAX / 8 && tmp > 0);
1035 GET_V(*stream_id, tmp < s->nb_streams);