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
  • Loading branch information
jyavenard committed Feb 11, 2012
1 parent 375e78c commit 8adf652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmyth/audio/audiooutputbase.cpp
Expand Up @@ -1201,7 +1201,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 8adf652

Please sign in to comment.