lavf: add an API to get output timestamps.

This commit is contained in:
Nicolas George
2011-06-30 19:45:22 +02:00
parent d1b029dec9
commit b442ca69d9
2 changed files with 30 additions and 0 deletions

View File

@@ -3285,6 +3285,15 @@ fail:
return ret;
}
int av_get_output_timestamp(struct AVFormatContext *s, int stream,
int64_t *dts, int64_t *wall)
{
if (!s->oformat || !s->oformat->get_output_timestamp)
return AVERROR(ENOSYS);
s->oformat->get_output_timestamp(s, stream, dts, wall);
return 0;
}
void ff_program_add_stream_index(AVFormatContext *ac, int progid, unsigned int idx)
{
int i, j;