Ardour  9.0-pre0-582-g084a23a80d
encoder.h
Go to the documentation of this file.
1 /*
2  libltc - en+decode linear timecode
3 
4  Copyright (C) 2006-2012 Robin Gareus <robin@gareus.org>
5 
6  This program is free software; you can redistribute it and/or modify
7  it under the terms of the GNU Lesser General Public License as
8  published by the Free Software Foundation, either version 3 of the
9  License, or (at your option) any later version.
10 
11  This program is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU Lesser General Public License for more details.
15 
16  You should have received a copy of the GNU Lesser General Public
17  License along with this library.
18  If not, see <http://www.gnu.org/licenses/>.
19 */
20 
21 #include "ltc/ltc.h"
22 #ifndef SAMPLE_CENTER // also defined in decoder.h
23 #define SAMPLE_CENTER 128 // unsigned 8 bit.
24 #endif
25 
26 struct LTCEncoder {
27  double fps;
28  double sample_rate;
29  double filter_const;
30  int flags;
33 
34  size_t offset;
35  size_t bufsize;
37 
38  char state;
39 
43 
45 };
46 
47 int encode_byte(LTCEncoder *e, int byte, double speed);
int encode_byte(LTCEncoder *e, int byte, double speed)
libltc - en+decode linear timecode
unsigned char ltcsnd_sample_t
Definition: ltc.h:82
LTC_TV_STANDARD
Definition: ltc.h:257
size_t offset
Definition: encoder.h:34
enum LTC_TV_STANDARD standard
Definition: encoder.h:31
double fps
Definition: encoder.h:27
double sample_remainder
Definition: encoder.h:42
ltcsnd_sample_t enc_hi
Definition: encoder.h:32
char state
Definition: encoder.h:38
LTCFrame f
Definition: encoder.h:44
double samples_per_clock_2
Definition: encoder.h:41
ltcsnd_sample_t enc_lo
Definition: encoder.h:32
double sample_rate
Definition: encoder.h:28
size_t bufsize
Definition: encoder.h:35
double samples_per_clock
Definition: encoder.h:40
ltcsnd_sample_t * buf
Definition: encoder.h:36
double filter_const
Definition: encoder.h:29
int flags
Definition: encoder.h:30
Definition: ltc.h:218