File: control~

package info (click to toggle)
mffm-timecode 1.4-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 928 kB
  • ctags: 265
  • sloc: cpp: 1,145; makefile: 94
file content (28 lines) | stat: -rw-r--r-- 979 bytes parent folder | download
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
Source: mffm-timecode
Priority: optional
Maintainer: Matt Flax <flatmax@pgb.unsw.edu.au>
Build-Depends: debhelper (>= 4.0.0)
Standards-Version: 3.6.1

Package: mffm-timecode-dev
Section: libdevel
Architecture: all
Depends: g++
Replaces: timecode-dev
Description: C++ hierarchy which controls and describes time code
 Time code description is in two modes, integer or digit mode. Integer mode
 allows easy mathematical manipulation (using C++ operators). Digit mode allows
 the user to manipulate the time code digit by digit.
 More specifically, time code is made of a data window (array) for media data
 content. If the multimedia content is audio (1D stream) then a type II filter
 is implemented for this stream.
 It also has time based indexes. Namely :
  b : Beginning - the absolute first time
  s : Start - the start time
  c : Current - the current time
  e : End - the last time
  f : Finish - the absolute last time
 For all instances : 
  i] b<=s<=e<f
  ii] s<=c<e
 .