[FFmpeg-cvslog] r17410 - trunk/libavformat/mxfenc.c
bcoudurier
subversion
Wed Feb 18 01:12:06 CET 2009
Author: bcoudurier
Date: Wed Feb 18 01:12:05 2009
New Revision: 17410
Log:
simplify descriptor size computation logic
Modified:
trunk/libavformat/mxfenc.c
Modified: trunk/libavformat/mxfenc.c
==============================================================================
--- trunk/libavformat/mxfenc.c Wed Feb 18 01:11:49 2009 (r17409)
+++ trunk/libavformat/mxfenc.c Wed Feb 18 01:12:05 2009 (r17410)
@@ -751,7 +751,7 @@ static void mxf_write_generic_desc(AVFor
ByteIOContext *pb = s->pb;
put_buffer(pb, key, 16);
- klv_encode_ber_length(pb, size);
+ klv_encode_ber_length(pb, size+20+8+12+20);
mxf_write_local_tag(pb, 16, 0x3C0A);
mxf_write_uuid(pb, SubDescriptor, st->index);
@@ -781,7 +781,7 @@ static void mxf_write_cdci_common(AVForm
int display_height;
int f1, f2;
- mxf_write_generic_desc(s, st, key, size);
+ mxf_write_generic_desc(s, st, key, size+8+8+8+8+8+8+5+16+sc->interlaced*4+12+20);
mxf_write_local_tag(pb, 4, 0x3203);
put_be32(pb, st->codec->width);
@@ -847,16 +847,14 @@ static void mxf_write_cdci_common(AVForm
static void mxf_write_cdci_desc(AVFormatContext *s, AVStream *st)
{
- MXFStreamContext *sc = st->priv_data;
- mxf_write_cdci_common(s, st, mxf_cdci_descriptor_key, 161+sc->interlaced*4);
+ mxf_write_cdci_common(s, st, mxf_cdci_descriptor_key, 0);
}
static void mxf_write_mpegvideo_desc(AVFormatContext *s, AVStream *st)
{
- MXFStreamContext *sc = st->priv_data;
ByteIOContext *pb = s->pb;
- mxf_write_cdci_common(s, st, mxf_mpegvideo_descriptor_key, 169+sc->interlaced*4);
+ mxf_write_cdci_common(s, st, mxf_mpegvideo_descriptor_key, 8);
// bit rate
mxf_write_local_tag(pb, 4, 0x8000);
@@ -867,7 +865,7 @@ static void mxf_write_generic_sound_comm
{
ByteIOContext *pb = s->pb;
- mxf_write_generic_desc(s, st, key, size);
+ mxf_write_generic_desc(s, st, key, size+5+12+8+8);
// audio locked
mxf_write_local_tag(pb, 1, 0x3D02);
@@ -889,7 +887,7 @@ static void mxf_write_wav_common(AVForma
{
ByteIOContext *pb = s->pb;
- mxf_write_generic_sound_common(s, st, key, size);
+ mxf_write_generic_sound_common(s, st, key, size+6+8);
mxf_write_local_tag(pb, 2, 0x3D0A);
put_be16(pb, st->codec->block_align);
@@ -901,17 +899,17 @@ static void mxf_write_wav_common(AVForma
static void mxf_write_wav_desc(AVFormatContext *s, AVStream *st)
{
- mxf_write_wav_common(s, st, mxf_wav_descriptor_key, 107);
+ mxf_write_wav_common(s, st, mxf_wav_descriptor_key, 0);
}
static void mxf_write_aes3_desc(AVFormatContext *s, AVStream *st)
{
- mxf_write_wav_common(s, st, mxf_aes3_descriptor_key, 107);
+ mxf_write_wav_common(s, st, mxf_aes3_descriptor_key, 0);
}
static void mxf_write_generic_sound_desc(AVFormatContext *s, AVStream *st)
{
- mxf_write_generic_sound_common(s, st, mxf_generic_sound_descriptor_key, 93);
+ mxf_write_generic_sound_common(s, st, mxf_generic_sound_descriptor_key, 0);
}
static void mxf_write_package(AVFormatContext *s, enum MXFMetadataSetType type)
More information about the ffmpeg-cvslog
mailing list