View | Details | Raw Unified | Return to bug 32014
Collapse All | Expand All

(-)tvtime-1.0.10.orig/src/commands.c (-1 / +3 lines)
Lines 1066-1072 Link Here
1066
    memset( cmd->newpos, 0, sizeof( cmd->newpos ) );
1066
    memset( cmd->newpos, 0, sizeof( cmd->newpos ) );
1067
1067
1068
    /* Number of frames to wait for next channel digit. */
1068
    /* Number of frames to wait for next channel digit. */
1069
    cmd->delay = 100000 / fieldtime;
1069
    //cmd->delay = 100000 / fieldtime;
1070
    // Use value defined in tvtimeosd.h
1071
    cmd->delay = CHANNEL_DELAY;
1070
1072
1071
    cmd->change_channel = 0;
1073
    cmd->change_channel = 0;
1072
    cmd->renumbering = 0;
1074
    cmd->renumbering = 0;
(-)tvtime-1.0.10.orig/src/input.c (-3 / +4 lines)
Lines 27-35 Link Here
27
#include "utils.h"
27
#include "utils.h"
28
#include "input.h"
28
#include "input.h"
29
29
30
/* Number of frames to wait for next channel digit. */
30
// Moved to tvtimeosd.h
31
#define CHANNEL_DELAY 100
31
///* Number of frames to wait for next channel digit. */
32
32
//#define CHANNEL_DELAY 100
33
//
33
struct input_s {
34
struct input_s {
34
    config_t *cfg;
35
    config_t *cfg;
35
    commands_t *com;
36
    commands_t *com;
(-)tvtime-1.0.10.orig/src/tvtimeosd.h (+5 lines)
Lines 49-54 Link Here
49
 * +----                            ------+
49
 * +----                            ------+
50
 */
50
 */
51
51
52
53
/* Number of frames to wait for next channel digit. */
54
#define CHANNEL_DELAY 100
55
56
52
typedef struct tvtime_osd_s tvtime_osd_t;
57
typedef struct tvtime_osd_s tvtime_osd_t;
53
58
54
tvtime_osd_t *tvtime_osd_new( int width, int height, double pixel_aspect,
59
tvtime_osd_t *tvtime_osd_new( int width, int height, double pixel_aspect,

Return to bug 32014