#include "version.h"
#include <stdio.h>
#include "timecode.h"
#include "libavutil/log.h"
Go to the source code of this file.
Functions | |
int | avpriv_framenum_to_drop_timecode (int frame_num) |
Adjust frame number for NTSC drop frame time code. | |
uint32_t | avpriv_framenum_to_smpte_timecode (unsigned frame, int fps, int drop) |
Convert frame id (timecode) to SMPTE 12M binary representation. | |
int | avpriv_check_timecode_rate (void *avcl, AVRational rate, int drop) |
Check if timecode rate is valid and consistent with the drop flag. | |
char * | avpriv_timecode_to_string (char *buf, const struct ff_timecode *tc, unsigned frame) |
Load timecode string in buf. | |
int | avpriv_init_smpte_timecode (void *avcl, struct ff_timecode *tc) |
Parse SMTPE 12M time representation (hh:mm:ss[:;. | |
int | ff_framenum_to_drop_timecode (int frame_num) |
uint32_t | ff_framenum_to_smtpe_timecode (unsigned frame, int fps, int drop) |
int | ff_init_smtpe_timecode (void *avcl, struct ff_timecode *tc) |
Definition in file timecode.c.
int avpriv_check_timecode_rate | ( | void * | avcl, | |
AVRational | rate, | |||
int | drop | |||
) |
Check if timecode rate is valid and consistent with the drop flag.
Definition at line 63 of file timecode.c.
Referenced by avpriv_init_smpte_timecode().
Adjust frame number for NTSC drop frame time code.
frame_num | Actual frame number to adjust |
Definition at line 36 of file timecode.c.
Referenced by avpriv_timecode_to_string(), and ff_framenum_to_drop_timecode().
Convert frame id (timecode) to SMPTE 12M binary representation.
Definition at line 45 of file timecode.c.
Referenced by ff_framenum_to_smtpe_timecode().
int avpriv_init_smpte_timecode | ( | void * | avcl, | |
struct ff_timecode * | tc | |||
) |
Parse SMTPE 12M time representation (hh:mm:ss[:;.
]ff). str and rate fields from tc struct must be set.
avcl | A pointer to an arbitrary struct of which the first field is a pointer to an AVClass struct (used for av_log). | |
tc | Timecode struct pointer |
Definition at line 109 of file timecode.c.
Referenced by ff_init_smtpe_timecode().
char* avpriv_timecode_to_string | ( | char * | buf, | |
const struct ff_timecode * | tc, | |||
unsigned | frame | |||
) |
Load timecode string in buf.
buf | Destination buffer | |
tc | Timecode struct pointer | |
frame | Frame id (timecode frame is computed with tc->start+frame) |
buf must have enough space to store the timecode representation: 16 bytes is the minimum required size.
Definition at line 87 of file timecode.c.
Definition at line 136 of file timecode.c.
Definition at line 141 of file timecode.c.
int ff_init_smtpe_timecode | ( | void * | avcl, | |
struct ff_timecode * | tc | |||
) |
Definition at line 146 of file timecode.c.