File: control

package info (click to toggle)
mffm-timecode 1.6-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 1,288 kB
  • ctags: 280
  • sloc: cpp: 1,282; makefile: 94
file content (29 lines) | stat: -rw-r--r-- 998 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
29
Source: mffm-timecode
Priority: optional
Section: libs
Maintainer: Debian QA Group <packages@qa.debian.org>
Build-Depends: debhelper (>= 5.0.0)
Standards-Version: 3.8.0

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
 .