Skip to content

Commit

Permalink
AddFrames() is defined as returning a bool but in fact returned nothi…
Browse files Browse the repository at this point in the history
…ng, this commit corrects that.
  • Loading branch information
stuartm authored and jyavenard committed Feb 28, 2011
1 parent c3f2490 commit aa8c907
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/programs/mythtranscode/transcode.cpp
Expand Up @@ -80,7 +80,7 @@ class AudioReencodeBuffer : public AudioOutput
// timecode is in milliseconds.
virtual bool AddFrames(void *buffer, int frames, int64_t timecode)
{
AddData(buffer, frames * bytes_per_frame, timecode);
return AddData(buffer, frames * bytes_per_frame, timecode);
}

// timecode is in milliseconds.
Expand Down

0 comments on commit aa8c907

Please sign in to comment.