1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00
Originally committed as revision 15060 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2008-08-30 22:38:59 +00:00
parent 283a02c51a
commit b43952539b

View File

@ -347,11 +347,8 @@ static void mxf_write_identification(AVFormatContext *s)
product_name_len = strlen("OP1a Muxer") * 2;
length = 80 + company_name_len + product_name_len;
if (!(s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT)) {
version = LIBAVFORMAT_IDENT;
} else {
version = "0.0.0";
}
version = s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT ?
"0.0.0" : LIBAVFORMAT_IDENT;
length += 4 + strlen(version)*2;
klv_encode_ber_length(pb, length);