copy whole frame in vosData for dnxhd, this code will be used for other codecs too

Originally committed as revision 15131 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2008-08-31 20:20:12 +00:00
parent 9a584db43c
commit db568c079a
1 changed files with 4 additions and 6 deletions

View File

@ -1613,12 +1613,10 @@ static int mov_write_packet(AVFormatContext *s, AVPacket *pkt)
assert(pkt->size); assert(pkt->size);
size = pkt->size; size = pkt->size;
} else if (enc->codec_id == CODEC_ID_DNXHD && !trk->vosLen) { } else if (enc->codec_id == CODEC_ID_DNXHD && !trk->vosLen) {
/* copy frame header to create needed atoms */ /* copy frame to create needed atoms */
if (size < 640) trk->vosLen = size;
return -1; trk->vosData = av_malloc(size);
trk->vosLen = 640; memcpy(trk->vosData, pkt->data, size);
trk->vosData = av_malloc(trk->vosLen);
memcpy(trk->vosData, pkt->data, 640);
} }
if (!(trk->entry % MOV_INDEX_CLUSTER_SIZE)) { if (!(trk->entry % MOV_INDEX_CLUSTER_SIZE)) {