Lines Matching refs:pts
45 * @return pts
171 uint64_t pts = AV_NOPTS_VALUE;
174 pts = os->codec->gptopts(s, i, gp, dts);
176 pts = gp;
178 *dts = pts;
180 if (pts > INT64_MAX && pts != AV_NOPTS_VALUE) {
181 // The return type is unsigned, we thus cannot return negative pts
182 av_log(s, AV_LOG_ERROR, "invalid pts %"PRId64"\n", pts);
183 pts = AV_NOPTS_VALUE;
186 return pts;