summaryrefslogtreecommitdiffstats
path: root/libk3b/videodvd/k3bvideodvdtime.cpp
blob: acc6aec9b08b7bfaf657d531a0e8a88aca969137 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/* 
 *
 * $Id: sourceheader 511311 2006-02-19 14:51:05Z trueg $
 * Copyright (C) 2006 Sebastian Trueg <trueg@k3b.org>
 *
 * This file is part of the K3b project.
 * Copyright (C) 1998-2007 Sebastian Trueg <trueg@k3b.org>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 * See the file "COPYING" for the exact licensing terms.
 */

#include "k3bvideodvdtime.h"

K3bVideoDVD::Time::Time()
  : m_hour(0),
    m_minute(0),
    m_second(0),
    m_frame(0)
{
}


K3bVideoDVD::Time::Time( unsigned short hour,
			 unsigned short min,
			 unsigned short sec,
			 unsigned short frame )
  : m_hour(hour),
    m_minute(min),
    m_second(sec),
    m_frame(frame)
{
}


double K3bVideoDVD::Time::totalSeconds() const
{
  double s = (double)second();
  s += 60.0 * (double)minute();
  s += 3600.0 * (double)hour();

  return s + (double)( frame() / frameRate() );
}


unsigned int K3bVideoDVD::Time::totalFrames() const
{
  double f = (double)second();
  f += 60.0 * (double)minute();
  f += 3600.0 * (double)hour();

  return (int)( f * frameRate() ) + frame();
}


double K3bVideoDVD::Time::frameRate() const
{
  //
  // This is how it is done in libdvdread
  // I don't really understand it, though... :(
  //
  switch( (frame() & 0xc0) >> 6 ) {
  case 1:
    // PAL?
    return 25.0;
  case 3:
    // NTSC?
    return 29.97;
  default:
    // should only happen for time == 0?
    return 0.0;
  }
}


QString K3bVideoDVD::Time::toString( bool includeFrames ) const
{
  // FIXME: use a d-pointer
  const_cast<K3bVideoDVD::Time*>(this)->makeValid();

  if( includeFrames )
    return QString().sprintf( "%02d:%02d:%02d.%02d", 
			      m_hour,
			      m_minute,
			      m_second,
			      m_frame & 0x3f );
  else
    return QString().sprintf( "%02d:%02d:%02d", 
			      m_hour,
			      m_minute,
			      m_second + ( m_frame > 0 ? 1 : 0 ) );
}


void K3bVideoDVD::Time::makeValid()
{
  // FIXME: how to handle the frames?

  m_minute += m_second/60;
  m_second = m_second % 60;
  m_hour += m_minute/60;
  m_minute = m_minute % 60;
}