From e9338da87d7cea7e2f7be27e1b9ac8997ead4ed9 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Fri, 23 Jan 2009 20:03:57 +0000 Subject: fix endianness of time code, and calculate it in fields, according to specs Originally committed as revision 16730 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/gxfenc.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'libavformat/gxfenc.c') diff --git a/libavformat/gxfenc.c b/libavformat/gxfenc.c index 77a2927..dd2d76e 100644 --- a/libavformat/gxfenc.c +++ b/libavformat/gxfenc.c @@ -361,13 +361,11 @@ static int gxf_write_flt_packet(ByteIOContext *pb, GXFContext *ctx) static int gxf_write_umf_material_description(ByteIOContext *pb, GXFContext *ctx) { // XXX drop frame - int fps = ctx->sample_rate / 2; - int frames = ctx->nb_frames / 2; uint32_t timecode = - frames % fps << 24 | // frames - frames / fps % 60 << 16 | // seconds - frames / fps * 60 % 60 << 8 | // minutes - frames / fps * 3600 % 24 << 3; // hours + ctx->nb_frames / ctx->sample_rate * 3600 % 24 << 27 | // hours + ctx->nb_frames / ctx->sample_rate * 60 % 60 << 16 | // minutes + ctx->nb_frames / ctx->sample_rate % 60 << 8 | // seconds + ctx->nb_frames % ctx->sample_rate; // fields put_le32(pb, ctx->flags); put_le32(pb, ctx->nb_frames); /* length of the longest track */ -- cgit v1.1