Originally committed as revision 2171 to svn://svn.ffmpeg.org/ffmpeg/trunk
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)) {
}
}
- 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*));