Fix non-C89 declarations in for loops
Some compilers still do not support this syntax. Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
4
avconv.c
4
avconv.c
@@ -421,7 +421,7 @@ static int alloc_buffer(InputStream *ist, FrameBuffer **pbuf)
|
||||
{
|
||||
AVCodecContext *s = ist->st->codec;
|
||||
FrameBuffer *buf = av_mallocz(sizeof(*buf));
|
||||
int ret;
|
||||
int i, ret;
|
||||
const int pixel_size = av_pix_fmt_descriptors[s->pix_fmt].comp[0].step_minus1+1;
|
||||
int h_chroma_shift, v_chroma_shift;
|
||||
int edge = 32; // XXX should be avcodec_get_edge_width(), but that fails on svq1
|
||||
@@ -449,7 +449,7 @@ static int alloc_buffer(InputStream *ist, FrameBuffer **pbuf)
|
||||
memset(buf->base[0], 128, ret);
|
||||
|
||||
avcodec_get_chroma_sub_sample(s->pix_fmt, &h_chroma_shift, &v_chroma_shift);
|
||||
for (int i = 0; i < FF_ARRAY_ELEMS(buf->data); i++) {
|
||||
for (i = 0; i < FF_ARRAY_ELEMS(buf->data); i++) {
|
||||
const int h_shift = i==0 ? 0 : h_chroma_shift;
|
||||
const int v_shift = i==0 ? 0 : v_chroma_shift;
|
||||
if (s->flags & CODEC_FLAG_EMU_EDGE)
|
||||
|
Reference in New Issue
Block a user