Skip to content

Commit

Permalink
Fix copy/paste error in FilterManager. Coverity 746767
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartm committed Jun 4, 2013
1 parent 47ef900 commit 4878780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/filtermanager.cpp
Expand Up @@ -441,7 +441,7 @@ FilterChain *FilterManager::LoadFilters(QString Filters,
if (inpixfmt == FMT_NONE)
inpixfmt = FmtList.front()->in;
if (outpixfmt == FMT_NONE)
inpixfmt = FmtList.back()->out;
outpixfmt = FmtList.back()->out;
width = postfilt_width;
height = postfilt_height;
}
Expand Down

0 comments on commit 4878780

Please sign in to comment.