Lines Matching defs:tmp

168         tmp = ffio_read_varlen(bc);                                           \
170 av_log(s, AV_LOG_ERROR, "Error " #dst " is (%"PRId64")\n", tmp); \
174 dst = tmp; \
197 uint64_t tmp, end, length;
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);
385 uint64_t tmp, end;
391 GET_V(stream_id, tmp < s->nb_streams && !nut->stream[tmp].time_base);
398 tmp = get_fourcc(bc);
399 st->codecpar->codec_tag = tmp;
409 tmp);
419 tmp);
423 st->codecpar->codec_id = ff_codec_get_id(ff_nut_subtitle_tags, tmp);
427 st->codecpar->codec_id = ff_codec_get_id(ff_nut_data_tags, tmp);
436 (unsigned int) tmp, stream_id);
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);
507 uint64_t tmp, chapter_start, chapter_len;
522 GET_V(stream_id_plus1, tmp <= s->nb_streams);
631 uint64_t tmp;
639 tmp = ffio_read_varlen(bc);
644 ff_nut_reset_ts(nut, nut->time_base[tmp % nut->time_base_count],
645 tmp / nut->time_base_count);
648 tmp = ffio_read_varlen(bc);
650 av_rescale_q(tmp / nut->time_base_count,
651 nut->time_base[tmp % nut->time_base_count],
660 *ts = tmp / nut->time_base_count *
661 av_q2d(nut->time_base[tmp % nut->time_base_count]) * AV_TIME_BASE;
686 uint64_t tmp, end;
716 GET_V(syncpoint_count, tmp < INT_MAX / 8 && tmp > 0);
1012 uint64_t tmp;
1035 GET_V(*stream_id, tmp < s->nb_streams);
1165 uint64_t tmp = nut->next_startcode;
1168 if (tmp) {
1175 tmp = frame_code;
1177 tmp = (tmp << 8) + avio_r8(bc);
1180 switch (tmp) {
1184 skip = get_packetheader(nut, bc, 0, tmp);
1204 tmp = find_any_startcode(bc, FFMAX(nut->last_syncpoint_pos, nut->last_resync_pos) + 1);
1206 if (tmp == 0)
1209 nut->next_startcode = tmp;