Lines Matching defs:time
183 int edit_units_per_packet; /* how many edit units to read at a time (PCM, ClipWrapped) */
1753 * We want the smallest values for the keys than what we currently have, unless this is the first such entry this time around.
2944 "found for stream #%d, time base forced to 1/48000\n",
3040 struct tm time = { 0 };
3042 time.tm_year = (timestamp >> 48) - 1900;
3043 time.tm_mon = (timestamp >> 40 & 0xFF) - 1;
3044 time.tm_mday = (timestamp >> 32 & 0xFF);
3045 time.tm_hour = (timestamp >> 24 & 0xFF);
3046 time.tm_min = (timestamp >> 16 & 0xFF);
3047 time.tm_sec = (timestamp >> 8 & 0xFF);
3051 time.tm_mon = av_clip(time.tm_mon, 0, 11);
3052 time.tm_mday = av_clip(time.tm_mday, 1, 31);
3053 time.tm_hour = av_clip(time.tm_hour, 0, 23);
3054 time.tm_min = av_clip(time.tm_min, 0, 59);
3055 time.tm_sec = av_clip(time.tm_sec, 0, 59);
3058 return (int64_t)av_timegm(&time) * 1000000 + msecs * 1000;
3276 } else if (avio_tell(pb) <= next) /* only seek forward, else this can loop for a long time */
3311 /* only seek forward, else this can loop for a long time */
3810 "seeking detected on stream #%d with time base (%d/%d) and "