提交 1a31840c 编写于 作者: M Mike Melanson

naughty, forbidden variable declarations

Originally committed as revision 2171 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 2d5e962b
......@@ -697,6 +697,7 @@ static int mov_write_packet(AVFormatContext *s, int stream_index,
MOVContext *mov = s->priv_data;
ByteIOContext *pb = &s->pb;
AVCodecContext *enc;
int cl, id;
enc = &s->streams[stream_index]->codec;
if (!url_is_streamed(&s->pb)) {
......@@ -740,8 +741,8 @@ static int mov_write_packet(AVFormatContext *s, int stream_index,
}
}
int cl = trk->entry / MOV_INDEX_CLUSTER_SIZE;
int id = trk->entry % MOV_INDEX_CLUSTER_SIZE;
cl = trk->entry / MOV_INDEX_CLUSTER_SIZE;
id = trk->entry % MOV_INDEX_CLUSTER_SIZE;
if (trk->ents_allocated <= trk->entry) {
trk->cluster = av_realloc(trk->cluster, (cl+1)*sizeof(void*));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册