swscale: Remove unused variable from ff_bfin_get_unscaled_swscale().

This commit is contained in:
Diego Biurrun 2011-06-15 13:45:24 +02:00
parent 6371ce4b0f
commit 087d93f568
1 changed files with 0 additions and 2 deletions

View File

@ -78,8 +78,6 @@ static int yuyvtoyv12_unscaled(SwsContext *c, uint8_t* src[], int srcStride[], i
void ff_bfin_get_unscaled_swscale(SwsContext *c)
{
SwsFunc swScale = c->swScale;
if (c->dstFormat == PIX_FMT_YUV420P && c->srcFormat == PIX_FMT_UYVY422) {
av_log (NULL, AV_LOG_VERBOSE, "selecting Blackfin optimized uyvytoyv12_unscaled\n");
c->swScale = uyvytoyv12_unscaled;