summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2006-05-13 21:00:52 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2006-05-13 21:00:52 +0000
commit3a72cbd9f0b531d3353f7b4c9f785dffe1a18ae4 (patch)
tree70bad18320e404b3e585b28417b29746113974d6 /libavformat
parentfcef991a85b46f53bd9cd94a1f6a61c6d305b58a (diff)
fix AMR muxing in mov
Originally committed as revision 5376 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/movenc.c40
1 files changed, 24 insertions, 16 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index 842aa13dc7..cb9e3153f3 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -224,6 +224,18 @@ static int mov_write_damr_tag(ByteIOContext *pb)
return 0x11;
}
+static int mov_write_samr_tag(ByteIOContext *pb)
+{
+ put_be32(pb, 0x11); /* size */
+ put_tag(pb, "samr");
+ put_tag(pb, "FFMP");
+ put_byte(pb, 1);
+
+ put_be16(pb, 0x80); /* Mode set (all modes for AMR_NB) */
+ put_be16(pb, 0x5); /* Mode change period (no restriction) */
+ return 0x11;
+}
+
static int mov_write_enda_tag(ByteIOContext *pb)
{
put_be32(pb, 10);
@@ -311,14 +323,12 @@ static int mov_write_wave_tag(ByteIOContext *pb, MOVTrack* track)
put_le32(pb, track->tag);
if (track->enc->codec_id == CODEC_ID_AAC) {
- put_be32(pb, 12); /* size */
- put_tag(pb, "mp4a");
- put_be32(pb, 0);
-
mov_write_esds_tag(pb, track);
} else if (track->enc->codec_id == CODEC_ID_PCM_S24LE ||
track->enc->codec_id == CODEC_ID_PCM_S32LE) {
mov_write_enda_tag(pb);
+ } else if (track->enc->codec_id == CODEC_ID_AMR_NB) {
+ mov_write_samr_tag(pb);
}
put_be32(pb, 8); /* size */
@@ -371,10 +381,10 @@ static int mov_write_audio_tag(ByteIOContext *pb, MOVTrack* track)
put_be16(pb, 0x10); /* Reserved */
if(track->enc->codec_id == CODEC_ID_AAC ||
- track->enc->codec_id == CODEC_ID_MP3) {
+ track->enc->codec_id == CODEC_ID_MP3 ||
+ track->enc->codec_id == CODEC_ID_AMR_NB) {
put_be16(pb, 0xfffe); /* compression ID (vbr)*/
- }
- else {
+ } else {
put_be16(pb, 0); /* compression ID (= 0) */
}
put_be16(pb, 0); /* packet size (= 0) */
@@ -386,18 +396,16 @@ static int mov_write_audio_tag(ByteIOContext *pb, MOVTrack* track)
put_be32(pb, track->enc->frame_size); /* Samples per packet */
put_be32(pb, track->sampleDuration); /* Bytes per frame */
put_be32(pb, 8); /* Bytes per sample */
- put_be32(pb, 2); /* Bytes per sample */
+ put_be32(pb, 2);
}
- if(track->enc->codec_id == CODEC_ID_AAC) {
- if (track->mode == MODE_MOV) mov_write_wave_tag(pb, track);
- else mov_write_esds_tag(pb, track);
- } else if(track->enc->codec_id == CODEC_ID_AMR_NB) {
- mov_write_damr_tag(pb);
- } else if(track->enc->codec_id == CODEC_ID_PCM_S24LE ||
- track->enc->codec_id == CODEC_ID_PCM_S32LE) {
+ if(track->mode == MODE_MOV)
mov_write_wave_tag(pb, track);
- }
+ else if(track->enc->codec_id == CODEC_ID_AAC)
+ mov_write_esds_tag(pb, track);
+ else if(track->enc->codec_id == CODEC_ID_AMR_NB)
+ mov_write_damr_tag(pb);
+
return updateSize (pb, pos);
}