Lines Matching refs:hh
56 int hh, mm, ss, ff; in av_timecode_get_smpte_from_framenum() local
64 hh = framenum / (fps*3600) % 24; in av_timecode_get_smpte_from_framenum()
65 return av_timecode_get_smpte(tc->rate, drop, hh, mm, ss, ff); in av_timecode_get_smpte_from_framenum()
68 uint32_t av_timecode_get_smpte(AVRational rate, int drop, int hh, int mm, int ss, int ff) in av_timecode_get_smpte() argument
84 hh = hh % 24; in av_timecode_get_smpte()
96 tc |= (hh / 10) << 4; in av_timecode_get_smpte()
97 tc |= (hh % 10); in av_timecode_get_smpte()
106 int hh, mm, ss, ff, neg = 0; in av_timecode_make_string() local
118 hh = framenum / (fps*3600LL); in av_timecode_make_string()
120 hh = hh % 24; in av_timecode_make_string()
123 hh, mm, ss, drop ? ';' : ':', ff); in av_timecode_make_string()
138 unsigned hh = bcd2uint(tcsmpte & 0x3f); // 6-bit hours in av_timecode_make_smpte_tc_string2() local
155 hh, mm, ss, drop ? ';' : ':', ff); in av_timecode_make_smpte_tc_string2()
229 int av_timecode_init_from_components(AVTimecode *tc, AVRational rate, int flags, int hh, int mm, in… in av_timecode_init_from_components() argument
242 tc->start = (hh*3600 + mm*60 + ss) * tc->fps + ff; in av_timecode_init_from_components()
244 int tmins = 60*hh + mm; in av_timecode_init_from_components()
253 int hh, mm, ss, ff, flags; in av_timecode_init_from_string() local
255 if (sscanf(str, "%d:%d:%d%c%d", &hh, &mm, &ss, &c, &ff) != 5) { in av_timecode_init_from_string()
262 return av_timecode_init_from_components(tc, rate, flags, hh, mm, ss, ff, log_ctx); in av_timecode_init_from_string()