Unverified Commit d4146ef1 authored by Prabhat Roy's avatar Prabhat Roy Committed by GitHub
Browse files

Remove unused member variable and argument (#5499)

parent c50d4884
...@@ -15,11 +15,10 @@ class Demuxer { ...@@ -15,11 +15,10 @@ class Demuxer {
bool bMp4H264, bMp4HEVC, bMp4MPEG4; bool bMp4H264, bMp4HEVC, bMp4MPEG4;
unsigned int frameCount = 0; unsigned int frameCount = 0;
int iVideoStream; int iVideoStream;
int64_t userTimeScale = 0;
double timeBase = 0.0; double timeBase = 0.0;
public: public:
Demuxer(const char* filePath, int64_t timeScale = 1000 /*Hz*/) { Demuxer(const char* filePath) {
avformat_network_init(); avformat_network_init();
TORCH_CHECK( TORCH_CHECK(
0 <= avformat_open_input(&fmtCtx, filePath, NULL, NULL), 0 <= avformat_open_input(&fmtCtx, filePath, NULL, NULL),
...@@ -52,7 +51,6 @@ class Demuxer { ...@@ -52,7 +51,6 @@ class Demuxer {
eVideoCodec = fmtCtx->streams[iVideoStream]->codecpar->codec_id; eVideoCodec = fmtCtx->streams[iVideoStream]->codecpar->codec_id;
AVRational rTimeBase = fmtCtx->streams[iVideoStream]->time_base; AVRational rTimeBase = fmtCtx->streams[iVideoStream]->time_base;
timeBase = av_q2d(rTimeBase); timeBase = av_q2d(rTimeBase);
userTimeScale = timeScale;
bMp4H264 = eVideoCodec == AV_CODEC_ID_H264 && bMp4H264 = eVideoCodec == AV_CODEC_ID_H264 &&
(!strcmp(fmtCtx->iformat->long_name, "QuickTime / MOV") || (!strcmp(fmtCtx->iformat->long_name, "QuickTime / MOV") ||
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment