mirror of
https://github.com/k4yt3x/video2x.git
synced 2025-08-07 22:57:26 +02:00
11 lines
187 B
C
11 lines
187 B
C
#ifndef AVUTILS_H
|
|
#define AVUTILS_H
|
|
|
|
extern "C" {
|
|
#include <libavformat/avformat.h>
|
|
}
|
|
|
|
int64_t get_video_frame_count(AVFormatContext *ifmt_ctx, int in_vstream_idx);
|
|
|
|
#endif // AVUTILS_H
|