From 662710ed3515252312e27273a97029e5d9af8420 Mon Sep 17 00:00:00 2001 From: Steve L'Homme Date: Sat, 25 Mar 2006 13:37:34 +0000 Subject: Rename time variable to the more descriptive block_time. patch by Steve Lhomme steve.....lhomme..@..free.....fr Originally committed as revision 5216 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/matroska.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libavformat/matroska.c b/libavformat/matroska.c index 4d6306eca3..afe161b845 100644 --- a/libavformat/matroska.c +++ b/libavformat/matroska.c @@ -2295,7 +2295,7 @@ matroska_parse_blockgroup (MatroskaDemuxContext *matroska, case MATROSKA_ID_BLOCK: { uint8_t *data, *origdata; int size; - uint64_t time; + uint64_t block_time; uint32_t *lace_size = NULL; int n, track, flags, laces = 0; uint64_t num; @@ -2328,8 +2328,8 @@ matroska_parse_blockgroup (MatroskaDemuxContext *matroska, break; } - /* time (relative to cluster time) */ - time = ((data[0] << 8) | data[1]) * matroska->time_scale; + /* block_time (relative to cluster time) */ + block_time = ((data[0] << 8) | data[1]) * matroska->time_scale; data += 2; size -= 2; flags = *data; @@ -2426,10 +2426,10 @@ matroska_parse_blockgroup (MatroskaDemuxContext *matroska, break; } if (cluster_time != (uint64_t)-1) { - if (time < 0 && (-time) > cluster_time) + if (block_time < 0 && (-block_time) > cluster_time) timecode = cluster_time; else - timecode = cluster_time + time; + timecode = cluster_time + block_time; } /* FIXME: duration */ -- cgit v1.2.3