Skip to content

Commit

Permalink
Correct "virtual ovveride"
Browse files Browse the repository at this point in the history
  • Loading branch information
jcdr428 committed Jun 18, 2023
1 parent 206fffc commit 8694566
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsMuxer/mpegAudioStreamReader.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class MpegAudioStreamReader : public SimplePacketizerReader, MP3Codec

protected:
int getHeaderLen() override { return MPEG_AUDIO_HEADER_SIZE; };
virtual uint8_t* findFrame(uint8_t* buff, uint8_t* end) override;
uint8_t* findFrame(uint8_t* buff, uint8_t* end) override;
int decodeFrame(uint8_t* buff, uint8_t* end, int& skipBytes, int& skipBeforeBytes) override;
double getFrameDuration() override;
const CodecInfo& getCodecInfo() override { return mpegAudioCodecInfo; }
Expand Down

0 comments on commit 8694566

Please sign in to comment.