Commit 5616f85d authored by Baptiste Coudurier's avatar Baptiste Coudurier

clean and simplify mov_write_packet

Originally committed as revision 5289 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b548f2b9
...@@ -1641,55 +1641,47 @@ static int mov_write_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -1641,55 +1641,47 @@ static int mov_write_packet(AVFormatContext *s, AVPacket *pkt)
if (url_is_streamed(&s->pb)) return 0; /* Can't handle that */ if (url_is_streamed(&s->pb)) return 0; /* Can't handle that */
if (!size) return 0; /* Discard 0 sized packets */ if (!size) return 0; /* Discard 0 sized packets */
if (enc->codec_type == CODEC_TYPE_VIDEO ) { if (enc->codec_type == CODEC_TYPE_AUDIO) {
samplesInChunk = 1; switch (enc->codec_id) {
} case CODEC_ID_AMR_NB:
else if (enc->codec_type == CODEC_TYPE_AUDIO ) { { /* We must find out how many AMR blocks there are in one packet */
if( enc->codec_id == CODEC_ID_AMR_NB) { static uint16_t packed_size[16] =
/* We must find out how many AMR blocks there are in one packet */ {13, 14, 16, 18, 20, 21, 27, 32, 6, 0, 0, 0, 0, 0, 0, 0};
static uint16_t packed_size[16] = int len = 0;
{13, 14, 16, 18, 20, 21, 27, 32, 6, 0, 0, 0, 0, 0, 0, 0};
int len = 0; while (len < size && samplesInChunk < 100) {
len += packed_size[(pkt->data[len] >> 3) & 0x0F];
while (len < size && samplesInChunk < 100) { samplesInChunk++;
len += packed_size[(pkt->data[len] >> 3) & 0x0F]; }
samplesInChunk++;
} }
} break;
else if(enc->codec_id == CODEC_ID_PCM_ALAW) { case CODEC_ID_PCM_ALAW:
samplesInChunk = size/enc->channels; samplesInChunk = size/enc->channels;
} break;
else if(enc->codec_id == CODEC_ID_PCM_S16BE || enc->codec_id == CODEC_ID_PCM_S16LE) { case CODEC_ID_PCM_S16BE:
case CODEC_ID_PCM_S16LE:
samplesInChunk = size/(2*enc->channels); samplesInChunk = size/(2*enc->channels);
} break;
else { default:
samplesInChunk = 1; samplesInChunk = 1;
} }
} else {
samplesInChunk = 1;
} }
if ((enc->codec_id == CODEC_ID_MPEG4 || enc->codec_id == CODEC_ID_AAC) /* copy extradata if it exists */
&& trk->vosLen == 0) { if (trk->vosLen == 0 && enc->extradata_size > 0) {
// assert(enc->extradata_size);
trk->vosLen = enc->extradata_size; trk->vosLen = enc->extradata_size;
trk->vosData = av_malloc(trk->vosLen); trk->vosData = av_malloc(trk->vosLen);
memcpy(trk->vosData, enc->extradata, trk->vosLen); memcpy(trk->vosData, enc->extradata, trk->vosLen);
} }
if (enc->codec_id == CODEC_ID_H264) { if (enc->codec_id == CODEC_ID_H264 && trk->vosLen > 0 && *(uint8_t *)trk->vosData != 1) {
if (trk->vosLen == 0) { /* from x264 or from bytestream h264 */
/* copy extradata */ /* nal reformating needed */
trk->vosLen = enc->extradata_size; avc_parse_nal_units(&pkt->data, &pkt->size);
trk->vosData = av_malloc(trk->vosLen); assert(pkt->size);
memcpy(trk->vosData, enc->extradata, trk->vosLen); size = pkt->size;
}
if (*(uint8_t *)trk->vosData != 1) {
/* from x264 or from bytestream h264 */
/* nal reformating needed */
avc_parse_nal_units(&pkt->data, &pkt->size);
assert(pkt->size);
size = pkt->size;
}
} }
cl = trk->entry / MOV_INDEX_CLUSTER_SIZE; cl = trk->entry / MOV_INDEX_CLUSTER_SIZE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment