Skip to content

Commit

Permalink
Fix issue that could occur when playing mono content upmixed to stereo.
Browse files Browse the repository at this point in the history
Stupid typo

[cherry-picked from 8adf652]
  • Loading branch information
jyavenard committed Feb 11, 2012
1 parent 892628e commit b4b0fb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmyth/audiooutputbase.cpp
Expand Up @@ -990,7 +990,7 @@ int AudioOutputBase::CopyWithUpmix(char *buffer, int frames, uint &org_waud)
{
AudioOutputUtil::MonoToStereo(WPOS, buffer, bdFrames);
frames -= bdFrames;
off = bdFrames * bpf;
off = bdFrames * source_bytes_per_frame;
org_waud = 0;
}
if (frames > 0)
Expand Down

0 comments on commit b4b0fb3

Please sign in to comment.