Home
last modified time | relevance | path

Searched refs:tc25bit (Results 1 - 2 of 2) sorted by relevance

/third_party/ffmpeg/libavutil/
H A Dtimecode.c167 char *av_timecode_make_mpeg_tc_string(char *buf, uint32_t tc25bit) in av_timecode_make_mpeg_tc_string() argument
171 tc25bit>>19 & 0x1f, // 5-bit hours in av_timecode_make_mpeg_tc_string()
172 tc25bit>>13 & 0x3f, // 6-bit minutes in av_timecode_make_mpeg_tc_string()
173 tc25bit>>6 & 0x3f, // 6-bit seconds in av_timecode_make_mpeg_tc_string()
174 tc25bit & 1<<24 ? ';' : ':', // 1-bit drop flag in av_timecode_make_mpeg_tc_string()
175 tc25bit & 0x3f); // 6-bit frames in av_timecode_make_mpeg_tc_string()
H A Dtimecode.h144 * @param tc25bit the 25-bits timecode
147 char *av_timecode_make_mpeg_tc_string(char *buf, uint32_t tc25bit);

Completed in 2 milliseconds