Browse Source

Fixing a value returning issue

Originally committed as revision 17469 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Roman Shaposhnik 16 years ago
parent
commit
ce83d2bd37
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      libavcodec/dv.c

+ 3
- 2
libavcodec/dv.c View File

@@ -816,8 +816,9 @@ static av_always_inline int dv_guess_dct_mode(DVVideoContext *s, uint8_t *data,
s->ildct_cmp(NULL, data + linesize, NULL, linesize<<1, 4);
return (ps > is);
}
} else
return 0;
}

return 0;
}

static av_always_inline int dv_init_enc_block(EncBlockInfo* bi, uint8_t *data, int linesize, DVVideoContext *s, int bias)


Loading…
Cancel
Save