Skip to content

Commit

Permalink
Clean up extraneous semicolons.
Browse files Browse the repository at this point in the history
  • Loading branch information
stichnot committed May 25, 2012
1 parent 59f4a77 commit 00a4727
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mythtv/libs/libmythtv/decoderbase.h
Expand Up @@ -144,7 +144,7 @@ class DecoderBase
virtual bool IsCodecMPEG(void) const { return false; }
virtual void WriteStoredData(RingBuffer *rb, bool storevid,
long timecodeOffset) = 0;
virtual void ClearStoredData(void) { return; };
virtual void ClearStoredData(void) { return; }
virtual void SetRawAudioState(bool state) { getrawframes = state; }
virtual bool GetRawAudioState(void) const { return getrawframes; }
virtual void SetRawVideoState(bool state) { getrawvideo = state; }
Expand All @@ -157,8 +157,8 @@ class DecoderBase
uint GetRawBitrate(void) const { return bitrate; }

virtual void UpdateFramesPlayed(void);
long long GetFramesRead(void) const { return framesRead; };
long long GetFramesPlayed(void) const { return framesPlayed; };
long long GetFramesRead(void) const { return framesRead; }
long long GetFramesPlayed(void) const { return framesPlayed; }

virtual QString GetCodecDecoderName(void) const = 0;
virtual QString GetRawEncodingType(void) { return QString(); }
Expand All @@ -177,7 +177,7 @@ class DecoderBase
virtual void SeekReset(long long newkey, uint skipFrames,
bool doFlush, bool discardFrames);

void SetTranscoding(bool value) { transcoding = value; };
void SetTranscoding(bool value) { transcoding = value; }

bool IsErrored() const { return errored; }

Expand Down

0 comments on commit 00a4727

Please sign in to comment.