blob: 66c2e9f6614fc1bcdd3ef32c736f9baad76f422d (
plain)
1
2
3
4
5
6
7
8
|
#include "libavformat/avformat.h"
#include "libavformat/internal.h"
int64_t av_stream_get_first_dts(const AVStream *st);
int64_t av_stream_get_first_dts(const AVStream *st)
{
return cffstream(st)->first_dts;
}
|