annotate libmpdemux/tvi_v4l.c @ 8627:14ab71b47a58

user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
author henry
date Sat, 28 Dec 2002 22:57:39 +0000
parents 4e32317f08be
children cf1d4f48aecf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1 /*
3284
702e399a4b3e update (audio support is coming:)
alex
parents: 3243
diff changeset
2 Video 4 Linux input
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
3
09d5c9834580 tv update
alex
parents: 2790
diff changeset
4 (C) Alex Beregszaszi <alex@naxine.org>
09d5c9834580 tv update
alex
parents: 2790
diff changeset
5
09d5c9834580 tv update
alex
parents: 2790
diff changeset
6 Some ideas are based on xawtv/libng's grab-v4l.c written by
09d5c9834580 tv update
alex
parents: 2790
diff changeset
7 Gerd Knorr <kraxel@bytesex.org>
09d5c9834580 tv update
alex
parents: 2790
diff changeset
8
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
9 Multithreading, a/v sync and native ALSA support by
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
10 Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
11
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
12 CODE IS UNDER DEVELOPMENT, NO FEATURE REQUESTS PLEASE!
09d5c9834580 tv update
alex
parents: 2790
diff changeset
13 */
09d5c9834580 tv update
alex
parents: 2790
diff changeset
14
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
15 #include "config.h"
98769cea155c added tv subsystem
alex
parents:
diff changeset
16
3243
3bd16d4a94e2 updated for support detection by configure
alex
parents: 3220
diff changeset
17 #if defined(USE_TV) && defined(HAVE_TV_V4L)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
18
98769cea155c added tv subsystem
alex
parents:
diff changeset
19 #include <stdio.h>
98769cea155c added tv subsystem
alex
parents:
diff changeset
20 #include <errno.h>
98769cea155c added tv subsystem
alex
parents:
diff changeset
21 #include <fcntl.h>
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
22 #include <signal.h>
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
23 #include <sys/ioctl.h>
98769cea155c added tv subsystem
alex
parents:
diff changeset
24 #include <sys/types.h>
6553
d000112bd06e Paul Ortyl's patch - tv4l timestamps (not so precise :()
alex
parents: 6529
diff changeset
25 #include <sys/time.h>
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
26 #include <linux/videodev.h>
98769cea155c added tv subsystem
alex
parents:
diff changeset
27 #include <unistd.h>
98769cea155c added tv subsystem
alex
parents:
diff changeset
28 #include <sys/mman.h>
2931
bce9c945b29c tv interface update
alex
parents: 2841
diff changeset
29 #include <stdlib.h>
bce9c945b29c tv interface update
alex
parents: 2841
diff changeset
30 #include <string.h>
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
31 #include <pthread.h>
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
32 #ifdef HAVE_SYS_SYSINFO_H
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
33 #include <sys/sysinfo.h>
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
34 #endif
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
35
2830
596a6ba3520f never include files from public headers...
arpi
parents: 2819
diff changeset
36 #include "mp_msg.h"
596a6ba3520f never include files from public headers...
arpi
parents: 2819
diff changeset
37 #include "../libao2/afmt.h"
596a6ba3520f never include files from public headers...
arpi
parents: 2819
diff changeset
38 #include "../libvo/img_format.h"
596a6ba3520f never include files from public headers...
arpi
parents: 2819
diff changeset
39 #include "../libvo/fastmemcpy.h"
596a6ba3520f never include files from public headers...
arpi
parents: 2819
diff changeset
40
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
41 #include "tv.h"
98769cea155c added tv subsystem
alex
parents:
diff changeset
42
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
43 #include "audio_in.h"
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
44
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
45 static tvi_info_t info = {
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
46 "Video 4 Linux input",
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
47 "v4l",
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
48 "Alex Beregszaszi <alex@naxine.org>",
09d5c9834580 tv update
alex
parents: 2790
diff changeset
49 "under development"
09d5c9834580 tv update
alex
parents: 2790
diff changeset
50 };
09d5c9834580 tv update
alex
parents: 2790
diff changeset
51
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
52 #define PAL_WIDTH 768
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
53 #define PAL_HEIGHT 576
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
54 #define PAL_FPS 25
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
55
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
56 #define NTSC_WIDTH 640
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
57 #define NTSC_HEIGHT 480
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
58 #define NTSC_FPS 30
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
59
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
60 #define MAX_AUDIO_CHANNELS 10
622a9ade4517 updated
alex
parents: 3711
diff changeset
61
8417
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
62 #define VID_BUF_SIZE_IMMEDIATE 2
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
63
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
64 typedef struct {
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
65 /* general */
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
66 char *video_device;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
67 int video_fd;
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
68 struct video_capability capability;
98769cea155c added tv subsystem
alex
parents:
diff changeset
69 struct video_channel *channels;
2841
7ff47d6ae6e9 updated audio and tuner checking
alex
parents: 2837
diff changeset
70 int act_channel;
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
71 struct video_tuner tuner;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
72
09d5c9834580 tv update
alex
parents: 2790
diff changeset
73 /* video */
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
74 struct video_picture picture;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
75 int format; /* output format */
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
76 int width;
98769cea155c added tv subsystem
alex
parents:
diff changeset
77 int height;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
78 int bytesperline;
5941
f2bad7299936 disabled audio
alex
parents: 5572
diff changeset
79 int fps;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
80
09d5c9834580 tv update
alex
parents: 2790
diff changeset
81 struct video_mbuf mbuf;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
82 unsigned char *mmap;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
83 struct video_mmap *buf;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
84 int nbuf;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
85
09d5c9834580 tv update
alex
parents: 2790
diff changeset
86 /* audio */
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
87 char *audio_device;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
88 audio_in_t audio_in;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
89
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
90 int audio_id;
622a9ade4517 updated
alex
parents: 3711
diff changeset
91 struct video_audio audio[MAX_AUDIO_CHANNELS];
622a9ade4517 updated
alex
parents: 3711
diff changeset
92 int audio_channels[MAX_AUDIO_CHANNELS];
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
93
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
94 /* buffering stuff */
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
95 int immediate_mode;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
96
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
97 int audio_buffer_size;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
98 int aud_skew_cnt;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
99 unsigned char *audio_ringbuffer;
8131
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
100 long long *audio_skew_buffer;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
101 volatile int audio_head;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
102 volatile int audio_tail;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
103 volatile int audio_cnt;
8131
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
104 volatile long long audio_skew;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
105 volatile double audio_skew_factor;
8131
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
106 volatile long long audio_skew_measure_time;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
107 volatile int audio_drop;
6553
d000112bd06e Paul Ortyl's patch - tv4l timestamps (not so precise :()
alex
parents: 6529
diff changeset
108
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
109 int first;
8417
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
110 int video_buffer_size_max;
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
111 volatile int video_buffer_size_current;
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
112 unsigned char **video_ringbuffer;
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
113 long long *video_timebuffer;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
114 volatile int video_head;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
115 volatile int video_tail;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
116 volatile int video_cnt;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
117
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
118 volatile int shutdown;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
119
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
120 pthread_t audio_grabber_thread;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
121 pthread_t video_grabber_thread;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
122 pthread_mutex_t audio_starter;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
123 pthread_mutex_t skew_mutex;
8417
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
124 pthread_mutex_t video_buffer_mutex;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
125
8131
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
126 long long starttime;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
127 double audio_secs_per_block;
8131
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
128 long long audio_skew_total;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
129 long audio_recv_blocks_total;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
130 long audio_sent_blocks_total;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
131
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
132 } priv_t;
98769cea155c added tv subsystem
alex
parents:
diff changeset
133
98769cea155c added tv subsystem
alex
parents:
diff changeset
134 #include "tvi_def.h"
98769cea155c added tv subsystem
alex
parents:
diff changeset
135
2841
7ff47d6ae6e9 updated audio and tuner checking
alex
parents: 2837
diff changeset
136 static const char *device_cap2name[] = {
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
137 "capture", "tuner", "teletext", "overlay", "chromakey", "clipping",
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
138 "frameram", "scales", "monochrome", "subcapture", "mpeg-decoder",
09d5c9834580 tv update
alex
parents: 2790
diff changeset
139 "mpeg-encoder", "mjpeg-decoder", "mjpeg-encoder", NULL
09d5c9834580 tv update
alex
parents: 2790
diff changeset
140 };
09d5c9834580 tv update
alex
parents: 2790
diff changeset
141
2841
7ff47d6ae6e9 updated audio and tuner checking
alex
parents: 2837
diff changeset
142 static const char *device_palette2name[] = {
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
143 "-", "grey", "hi240", "rgb16", "rgb24", "rgb32", "rgb15", "yuv422",
09d5c9834580 tv update
alex
parents: 2790
diff changeset
144 "yuyv", "uyvy", "yuv420", "yuv411", "raw", "yuv422p", "yuv411p",
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
145 "yuv420p", "yuv410p"
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
146 };
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
147 #define PALETTE(x) ((x < sizeof(device_palette2name)/sizeof(char*)) ? device_palette2name[x] : "UNKNOWN")
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
148
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
149 static const char *norm2name(int mode)
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
150 {
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
151 switch (mode) {
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
152 case VIDEO_MODE_PAL:
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
153 return "pal";
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
154 case VIDEO_MODE_SECAM:
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
155 return "secam";
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
156 case VIDEO_MODE_NTSC:
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
157 return "ntsc";
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
158 case VIDEO_MODE_AUTO:
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
159 return "auto";
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
160 default:
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
161 return "unknown";
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
162 }
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
163 };
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
164
7163
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
165 static const char *audio_mode2name(int mode)
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
166 {
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
167 switch (mode) {
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
168 case VIDEO_SOUND_MONO:
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
169 return "mono";
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
170 case VIDEO_SOUND_STEREO:
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
171 return "stereo";
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
172 case VIDEO_SOUND_LANG1:
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
173 return "language1";
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
174 case VIDEO_SOUND_LANG2:
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
175 return "language2";
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
176 default:
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
177 return "unknown";
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
178 }
2841
7ff47d6ae6e9 updated audio and tuner checking
alex
parents: 2837
diff changeset
179 };
7ff47d6ae6e9 updated audio and tuner checking
alex
parents: 2837
diff changeset
180
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
181 static void *audio_grabber(void *data);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
182 static void *video_grabber(void *data);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
183
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
184 static int palette2depth(int palette)
09d5c9834580 tv update
alex
parents: 2790
diff changeset
185 {
2810
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
186 switch(palette)
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
187 {
3220
alex
parents: 2937
diff changeset
188 /* component */
2810
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
189 case VIDEO_PALETTE_RGB555:
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
190 return(15);
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
191 case VIDEO_PALETTE_RGB565:
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
192 return(16);
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
193 case VIDEO_PALETTE_RGB24:
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
194 return(24);
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
195 case VIDEO_PALETTE_RGB32:
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
196 return(32);
3220
alex
parents: 2937
diff changeset
197 /* planar */
alex
parents: 2937
diff changeset
198 case VIDEO_PALETTE_YUV411P:
2810
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
199 case VIDEO_PALETTE_YUV420P:
3220
alex
parents: 2937
diff changeset
200 case VIDEO_PALETTE_YUV410P:
2810
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
201 return(12);
3220
alex
parents: 2937
diff changeset
202 /* packed */
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
203 case VIDEO_PALETTE_YUV422P:
2810
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
204 case VIDEO_PALETTE_YUV422:
3220
alex
parents: 2937
diff changeset
205 case VIDEO_PALETTE_YUYV:
2810
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
206 case VIDEO_PALETTE_UYVY:
3220
alex
parents: 2937
diff changeset
207 case VIDEO_PALETTE_YUV420:
alex
parents: 2937
diff changeset
208 case VIDEO_PALETTE_YUV411:
2810
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
209 return(16);
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
210 }
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
211 return(-1);
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
212 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
213
09d5c9834580 tv update
alex
parents: 2790
diff changeset
214 static int format2palette(int format)
09d5c9834580 tv update
alex
parents: 2790
diff changeset
215 {
2810
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
216 switch(format)
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
217 {
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
218 case IMGFMT_BGR15:
2810
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
219 return(VIDEO_PALETTE_RGB555);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
220 case IMGFMT_BGR16:
2810
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
221 return(VIDEO_PALETTE_RGB565);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
222 case IMGFMT_BGR24:
2810
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
223 return(VIDEO_PALETTE_RGB24);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
224 case IMGFMT_BGR32:
2810
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
225 return(VIDEO_PALETTE_RGB32);
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
226 case IMGFMT_YV12:
3703
3717145636b5 i420 support
alex
parents: 3611
diff changeset
227 case IMGFMT_I420:
2810
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
228 return(VIDEO_PALETTE_YUV420P);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
229 case IMGFMT_YUY2:
2810
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
230 return(VIDEO_PALETTE_YUV422);
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
231 }
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
232 return(-1);
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
233 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
234
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
235 // sets and sanitizes audio buffer/block sizes
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
236 static void setup_audio_buffer_sizes(priv_t *priv)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
237 {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
238 int bytes_per_sample = priv->audio_in.bytes_per_sample;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
239
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
240 // make the audio buffer at least 5 seconds long
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
241 priv->audio_buffer_size = 1 + 5*priv->audio_in.samplerate
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
242 *priv->audio_in.channels
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
243 *bytes_per_sample/priv->audio_in.blocksize;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
244 if (priv->audio_buffer_size < 256) priv->audio_buffer_size = 256;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
245
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
246 // make the skew buffer at least 1 second long
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
247 priv->aud_skew_cnt = 1 + 1*priv->audio_in.samplerate
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
248 *priv->audio_in.channels
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
249 *bytes_per_sample/priv->audio_in.blocksize;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
250 if (priv->aud_skew_cnt < 16) priv->aud_skew_cnt = 16;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
251
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
252 mp_msg(MSGT_TV, MSGL_V, "Audio capture - buffer %d blocks of %d bytes, skew average from %d meas.\n",
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
253 priv->audio_buffer_size, priv->audio_in.blocksize, priv->aud_skew_cnt);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
254 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
255
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
256 tvi_handle_t *tvi_init_v4l(char *device, char *adevice)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
257 {
98769cea155c added tv subsystem
alex
parents:
diff changeset
258 tvi_handle_t *h;
98769cea155c added tv subsystem
alex
parents:
diff changeset
259 priv_t *priv;
98769cea155c added tv subsystem
alex
parents:
diff changeset
260
98769cea155c added tv subsystem
alex
parents:
diff changeset
261 h = new_handle();
98769cea155c added tv subsystem
alex
parents:
diff changeset
262 if (!h)
98769cea155c added tv subsystem
alex
parents:
diff changeset
263 return(NULL);
98769cea155c added tv subsystem
alex
parents:
diff changeset
264
98769cea155c added tv subsystem
alex
parents:
diff changeset
265 priv = h->priv;
98769cea155c added tv subsystem
alex
parents:
diff changeset
266
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
267 /* set video device name */
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
268 if (!device)
5088
942d497875b4 update by Charles Henrich
alex
parents: 3815
diff changeset
269 priv->video_device = strdup("/dev/video");
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
270 else
3611
178c562948ff checkings for malloc results (potential memleaks)
pl
parents: 3284
diff changeset
271 priv->video_device = strdup(device);
178c562948ff checkings for malloc results (potential memleaks)
pl
parents: 3284
diff changeset
272
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
273 /* set video device name */
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
274 if (!adevice)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
275 priv->audio_device = NULL;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
276 else {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
277 priv->audio_device = strdup(adevice);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
278 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
279
3611
178c562948ff checkings for malloc results (potential memleaks)
pl
parents: 3284
diff changeset
280 /* allocation failed */
178c562948ff checkings for malloc results (potential memleaks)
pl
parents: 3284
diff changeset
281 if (!priv->video_device) {
178c562948ff checkings for malloc results (potential memleaks)
pl
parents: 3284
diff changeset
282 free_handle(h);
178c562948ff checkings for malloc results (potential memleaks)
pl
parents: 3284
diff changeset
283 return(NULL);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
284 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
285
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
286 return(h);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
287 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
288
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
289 /* retrieves info about audio channels from the BTTV */
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
290 static void init_v4l_audio(priv_t *priv)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
291 {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
292 int i;
7163
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
293 int reqmode;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
294
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
295 if (!priv->capability.audios) return;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
296
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
297 /* audio chanlist */
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
298
7318
85897ab199a4 changed message leveles (too many non-sense info messages)
alex
parents: 7317
diff changeset
299 mp_msg(MSGT_TV, MSGL_V, " Audio devices: %d\n", priv->capability.audios);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
300
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
301 mp_msg(MSGT_TV, MSGL_V, "Video capture card reports the audio setup as follows:\n");
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
302 for (i = 0; i < priv->capability.audios; i++)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
303 {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
304 if (i >= MAX_AUDIO_CHANNELS)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
305 {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
306 mp_msg(MSGT_TV, MSGL_ERR, "no space for more audio channels (increase in source!) (%d > %d)\n",
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
307 i, MAX_AUDIO_CHANNELS);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
308 i = priv->capability.audios;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
309 break;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
310 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
311
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
312 priv->audio[i].audio = i;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
313 if (ioctl(priv->video_fd, VIDIOCGAUDIO, &priv->audio[i]) == -1)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
314 {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
315 mp_msg(MSGT_TV, MSGL_ERR, "ioctl get audio failed: %s\n", strerror(errno));
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
316 break;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
317 }
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
318
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
319 /* mute all channels */
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
320 priv->audio[i].volume = 0;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
321 priv->audio[i].flags |= VIDEO_AUDIO_MUTE;
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
322 reqmode = -1;
7163
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
323 if (tv_param_amode >= 0) {
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
324 switch (tv_param_amode) {
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
325 case 0:
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
326 reqmode = VIDEO_SOUND_MONO;
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
327 break;
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
328 case 1:
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
329 reqmode = VIDEO_SOUND_STEREO;
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
330 break;
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
331 case 2:
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
332 reqmode = VIDEO_SOUND_LANG1;
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
333 break;
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
334 case 3:
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
335 reqmode = VIDEO_SOUND_LANG2;
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
336 break;
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
337 default:
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
338 mp_msg(MSGT_TV, MSGL_ERR, "Unknown audio mode requested.\n");
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
339 break;
7163
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
340 }
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
341 if (reqmode >= 0) priv->audio[i].mode = reqmode;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
342 }
7163
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
343 ioctl(priv->video_fd, VIDIOCSAUDIO, &priv->audio[i]);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
344
7163
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
345 // get the parameters back
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
346 if (ioctl(priv->video_fd, VIDIOCGAUDIO, &priv->audio[i]) == -1)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
347 {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
348 mp_msg(MSGT_TV, MSGL_ERR, "ioctl get audio failed: %s\n", strerror(errno));
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
349 break;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
350 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
351
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
352 switch(priv->audio[i].mode)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
353 {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
354 case VIDEO_SOUND_MONO:
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
355 case VIDEO_SOUND_LANG1:
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
356 case VIDEO_SOUND_LANG2:
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
357 priv->audio_channels[i] = 1;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
358 break;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
359 case VIDEO_SOUND_STEREO:
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
360 priv->audio_channels[i] = 2;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
361 break;
8335
0e1d45e44813 set channel count to a saner value if the card reports an unknown audio mode
henry
parents: 8254
diff changeset
362 default:
0e1d45e44813 set channel count to a saner value if the card reports an unknown audio mode
henry
parents: 8254
diff changeset
363 mp_msg(MSGT_TV, MSGL_ERR, "Card reports an unknown audio mode !\n");
0e1d45e44813 set channel count to a saner value if the card reports an unknown audio mode
henry
parents: 8254
diff changeset
364 mp_msg(MSGT_TV, MSGL_ERR, "Trying two channel audio. Use forcechan to override.\n");
0e1d45e44813 set channel count to a saner value if the card reports an unknown audio mode
henry
parents: 8254
diff changeset
365 priv->audio_channels[i] = 2;
0e1d45e44813 set channel count to a saner value if the card reports an unknown audio mode
henry
parents: 8254
diff changeset
366 break;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
367 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
368
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
369 if (reqmode >= 0 && priv->audio[i].mode != reqmode) {
7163
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
370 mp_msg(MSGT_TV, MSGL_ERR, "Audio mode setup warning!\n");
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
371 mp_msg(MSGT_TV, MSGL_ERR, "Requested mode was %s, but v4l still reports %s.\n",
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
372 audio_mode2name(reqmode), audio_mode2name(priv->audio[i].mode));
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
373 mp_msg(MSGT_TV, MSGL_ERR, "You may need \"forcechan\" option to force stereo/mono audio recording.\n");
7163
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
374 }
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
375
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
376 /* display stuff */
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
377 mp_msg(MSGT_TV, MSGL_V, " %d: %s: ", priv->audio[i].audio,
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
378 priv->audio[i].name);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
379 if (priv->audio[i].flags & VIDEO_AUDIO_MUTABLE) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
380 mp_msg(MSGT_TV, MSGL_V, "muted=%s ",
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
381 (priv->audio[i].flags & VIDEO_AUDIO_MUTE) ? "yes" : "no");
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
382 }
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
383 mp_msg(MSGT_TV, MSGL_V, "vol=%d bass=%d treble=%d balance=%d mode=%s",
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
384 priv->audio[i].volume, priv->audio[i].bass, priv->audio[i].treble,
7163
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
385 priv->audio[i].balance, audio_mode2name(priv->audio[i].mode));
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
386 mp_msg(MSGT_TV, MSGL_V, " chan=%d\n", priv->audio_channels[i]);
7163
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
387
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
388 if (tv_param_forcechan >= 0)
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
389 priv->audio_channels[i] = tv_param_forcechan;
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
390
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
391 // we'll call VIDIOCSAUDIO again when starting capture
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
392 // let's set audio mode to requested mode again for the case
a193df8b275b v4l audio fixes by Jindrich Makovicka <makovick@KMLinux.fjfi.cvut.cz>
alex
parents: 7070
diff changeset
393 // when VIDIOCGAUDIO just cannot report the mode correctly
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
394 if (reqmode >= 0) priv->audio[i].mode = reqmode;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
395 }
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
396 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
397
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
398 static int init(priv_t *priv)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
399 {
98769cea155c added tv subsystem
alex
parents:
diff changeset
400 int i;
98769cea155c added tv subsystem
alex
parents:
diff changeset
401
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
402 if (tv_param_immediate == 1)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
403 tv_param_noaudio = 1;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
404
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
405 priv->video_ringbuffer = NULL;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
406 priv->video_timebuffer = NULL;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
407 priv->audio_ringbuffer = NULL;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
408 priv->audio_skew_buffer = NULL;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
409
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
410 priv->video_fd = open(priv->video_device, O_RDWR);
5088
942d497875b4 update by Charles Henrich
alex
parents: 3815
diff changeset
411 mp_msg(MSGT_TV, MSGL_DBG2, "Video fd: %d, %x\n", priv->video_fd,
942d497875b4 update by Charles Henrich
alex
parents: 3815
diff changeset
412 priv->video_device);
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
413 if (priv->video_fd == -1)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
414 {
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2814
diff changeset
415 mp_msg(MSGT_TV, MSGL_ERR, "unable to open '%s': %s\n",
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
416 priv->video_device, strerror(errno));
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
417 goto err;
98769cea155c added tv subsystem
alex
parents:
diff changeset
418 }
5941
f2bad7299936 disabled audio
alex
parents: 5572
diff changeset
419
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
420 /* get capabilities (priv->capability is needed!) */
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
421 if (ioctl(priv->video_fd, VIDIOCGCAP, &priv->capability) == -1)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
422 {
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2814
diff changeset
423 mp_msg(MSGT_TV, MSGL_ERR, "ioctl get capabilites failed: %s\n", strerror(errno));
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
424 goto err;
98769cea155c added tv subsystem
alex
parents:
diff changeset
425 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
426
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
427 fcntl(priv->video_fd, F_SETFD, FD_CLOEXEC);
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
428
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2814
diff changeset
429 mp_msg(MSGT_TV, MSGL_INFO, "Selected device: %s\n", priv->capability.name);
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2814
diff changeset
430 mp_msg(MSGT_TV, MSGL_INFO, " Capabilites: ");
2841
7ff47d6ae6e9 updated audio and tuner checking
alex
parents: 2837
diff changeset
431 for (i = 0; device_cap2name[i] != NULL; i++)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
432 if (priv->capability.type & (1 << i))
2841
7ff47d6ae6e9 updated audio and tuner checking
alex
parents: 2837
diff changeset
433 mp_msg(MSGT_TV, MSGL_INFO, "%s ", device_cap2name[i]);
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2814
diff changeset
434 mp_msg(MSGT_TV, MSGL_INFO, "\n");
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2814
diff changeset
435 mp_msg(MSGT_TV, MSGL_INFO, " Device type: %d\n", priv->capability.type);
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2814
diff changeset
436 mp_msg(MSGT_TV, MSGL_INFO, " Supported sizes: %dx%d => %dx%d\n",
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
437 priv->capability.minwidth, priv->capability.minheight,
98769cea155c added tv subsystem
alex
parents:
diff changeset
438 priv->capability.maxwidth, priv->capability.maxheight);
98769cea155c added tv subsystem
alex
parents:
diff changeset
439 priv->width = priv->capability.minwidth;
98769cea155c added tv subsystem
alex
parents:
diff changeset
440 priv->height = priv->capability.minheight;
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2814
diff changeset
441 mp_msg(MSGT_TV, MSGL_INFO, " Inputs: %d\n", priv->capability.channels);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
442
2819
2e58962dc9fe cleaned up some warnings, and tv_param_on moved out from #ifdef USE_TV
alex
parents: 2818
diff changeset
443 priv->channels = (struct video_channel *)malloc(sizeof(struct video_channel)*priv->capability.channels);
3611
178c562948ff checkings for malloc results (potential memleaks)
pl
parents: 3284
diff changeset
444 if (!priv->channels)
178c562948ff checkings for malloc results (potential memleaks)
pl
parents: 3284
diff changeset
445 goto malloc_failed;
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
446 memset(priv->channels, 0, sizeof(struct video_channel)*priv->capability.channels);
98769cea155c added tv subsystem
alex
parents:
diff changeset
447 for (i = 0; i < priv->capability.channels; i++)
98769cea155c added tv subsystem
alex
parents:
diff changeset
448 {
98769cea155c added tv subsystem
alex
parents:
diff changeset
449 priv->channels[i].channel = i;
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
450 if (ioctl(priv->video_fd, VIDIOCGCHAN, &priv->channels[i]) == -1)
2841
7ff47d6ae6e9 updated audio and tuner checking
alex
parents: 2837
diff changeset
451 {
7ff47d6ae6e9 updated audio and tuner checking
alex
parents: 2837
diff changeset
452 mp_msg(MSGT_TV, MSGL_ERR, "ioctl get channel failed: %s\n", strerror(errno));
7ff47d6ae6e9 updated audio and tuner checking
alex
parents: 2837
diff changeset
453 break;
7ff47d6ae6e9 updated audio and tuner checking
alex
parents: 2837
diff changeset
454 }
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
455 mp_msg(MSGT_TV, MSGL_INFO, " %d: %s: %s%s%s%s (tuner:%d, norm:%s)\n", i,
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
456 priv->channels[i].name,
98769cea155c added tv subsystem
alex
parents:
diff changeset
457 (priv->channels[i].flags & VIDEO_VC_TUNER) ? "tuner " : "",
98769cea155c added tv subsystem
alex
parents:
diff changeset
458 (priv->channels[i].flags & VIDEO_VC_AUDIO) ? "audio " : "",
98769cea155c added tv subsystem
alex
parents:
diff changeset
459 (priv->channels[i].flags & VIDEO_TYPE_TV) ? "tv " : "",
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
460 (priv->channels[i].flags & VIDEO_TYPE_CAMERA) ? "camera " : "",
09d5c9834580 tv update
alex
parents: 2790
diff changeset
461 priv->channels[i].tuners,
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
462 norm2name(priv->channels[i].norm));
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
463 }
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
464 priv->act_channel = 0;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
465
09d5c9834580 tv update
alex
parents: 2790
diff changeset
466 if (!(priv->capability.type & VID_TYPE_CAPTURE))
09d5c9834580 tv update
alex
parents: 2790
diff changeset
467 {
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2814
diff changeset
468 mp_msg(MSGT_TV, MSGL_ERR, "Only grabbing supported (for overlay use another program)\n");
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
469 goto err;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
470 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
471
09d5c9834580 tv update
alex
parents: 2790
diff changeset
472 /* map grab buffer */
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
473 if (ioctl(priv->video_fd, VIDIOCGMBUF, &priv->mbuf) == -1)
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
474 {
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2814
diff changeset
475 mp_msg(MSGT_TV, MSGL_ERR, "ioctl get mbuf failed: %s\n", strerror(errno));
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
476 goto err;
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
477 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
478
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2814
diff changeset
479 mp_msg(MSGT_TV, MSGL_V, "mbuf: size=%d, frames=%d\n",
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
480 priv->mbuf.size, priv->mbuf.frames);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
481 priv->mmap = mmap(0, priv->mbuf.size, PROT_READ|PROT_WRITE,
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
482 MAP_SHARED, priv->video_fd, 0);
2819
2e58962dc9fe cleaned up some warnings, and tv_param_on moved out from #ifdef USE_TV
alex
parents: 2818
diff changeset
483 if (priv->mmap == (unsigned char *)-1)
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
484 {
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
485 mp_msg(MSGT_TV, MSGL_ERR, "Unable to map memory for buffers: %s\n", strerror(errno));
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
486 goto err;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
487 }
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2814
diff changeset
488 mp_msg(MSGT_TV, MSGL_DBG2, "our buffer: %p\n", priv->mmap);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
489
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
490 /* num of buffers */
09d5c9834580 tv update
alex
parents: 2790
diff changeset
491 priv->nbuf = priv->mbuf.frames;
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
492
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
493 /* video buffers */
2819
2e58962dc9fe cleaned up some warnings, and tv_param_on moved out from #ifdef USE_TV
alex
parents: 2818
diff changeset
494 priv->buf = (struct video_mmap *)malloc(priv->nbuf * sizeof(struct video_mmap));
3611
178c562948ff checkings for malloc results (potential memleaks)
pl
parents: 3284
diff changeset
495 if (!priv->buf)
178c562948ff checkings for malloc results (potential memleaks)
pl
parents: 3284
diff changeset
496 goto malloc_failed;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
497 memset(priv->buf, 0, priv->nbuf * sizeof(struct video_mmap));
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
498
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
499 /* init v4l audio even when we don't capture */
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
500 init_v4l_audio(priv);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
501
7835
d489890c59d3 add an option to force audio recording when a tv card reports no audio sources
henry
parents: 7834
diff changeset
502 if (!priv->capability.audios && !tv_param_force_audio) tv_param_noaudio = 1;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
503
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
504 /* audio init */
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
505 if (!tv_param_noaudio) {
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
506
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
507 #ifdef HAVE_ALSA9
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
508 if (tv_param_alsa)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
509 audio_in_init(&priv->audio_in, AUDIO_IN_ALSA);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
510 else
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
511 audio_in_init(&priv->audio_in, AUDIO_IN_OSS);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
512 #else
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
513 audio_in_init(&priv->audio_in, AUDIO_IN_OSS);
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
514 #endif
622a9ade4517 updated
alex
parents: 3711
diff changeset
515
7070
aaac9080b8a3 v4l capture update by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
arpi
parents: 7058
diff changeset
516 if (priv->audio_device) {
aaac9080b8a3 v4l capture update by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
arpi
parents: 7058
diff changeset
517 audio_in_set_device(&priv->audio_in, priv->audio_device);
aaac9080b8a3 v4l capture update by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
arpi
parents: 7058
diff changeset
518 }
aaac9080b8a3 v4l capture update by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
arpi
parents: 7058
diff changeset
519
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
520 if (tv_param_audio_id < priv->capability.audios)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
521 priv->audio_id = tv_param_audio_id;
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
522 else
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
523 priv->audio_id = 0;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
524 audio_in_set_samplerate(&priv->audio_in, 44100);
7844
ba459e95d27a minor fixes in forceaudio option
henry
parents: 7835
diff changeset
525 if (priv->capability.audios) {
ba459e95d27a minor fixes in forceaudio option
henry
parents: 7835
diff changeset
526 audio_in_set_channels(&priv->audio_in, priv->audio_channels[priv->audio_id]);
ba459e95d27a minor fixes in forceaudio option
henry
parents: 7835
diff changeset
527 } else {
ba459e95d27a minor fixes in forceaudio option
henry
parents: 7835
diff changeset
528 if (tv_param_forcechan >= 0) {
ba459e95d27a minor fixes in forceaudio option
henry
parents: 7835
diff changeset
529 audio_in_set_channels(&priv->audio_in, tv_param_forcechan);
ba459e95d27a minor fixes in forceaudio option
henry
parents: 7835
diff changeset
530 } else {
ba459e95d27a minor fixes in forceaudio option
henry
parents: 7835
diff changeset
531 audio_in_set_channels(&priv->audio_in, 2);
ba459e95d27a minor fixes in forceaudio option
henry
parents: 7835
diff changeset
532 }
ba459e95d27a minor fixes in forceaudio option
henry
parents: 7835
diff changeset
533 }
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
534 if (audio_in_setup(&priv->audio_in) < 0) return 0;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
535 setup_audio_buffer_sizes(priv);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
536 }
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
537
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
538 return(1);
98769cea155c added tv subsystem
alex
parents:
diff changeset
539
3611
178c562948ff checkings for malloc results (potential memleaks)
pl
parents: 3284
diff changeset
540 malloc_failed:
178c562948ff checkings for malloc results (potential memleaks)
pl
parents: 3284
diff changeset
541 if (priv->channels)
178c562948ff checkings for malloc results (potential memleaks)
pl
parents: 3284
diff changeset
542 free(priv->channels);
178c562948ff checkings for malloc results (potential memleaks)
pl
parents: 3284
diff changeset
543 if (priv->buf)
178c562948ff checkings for malloc results (potential memleaks)
pl
parents: 3284
diff changeset
544 free(priv->buf);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
545 err:
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
546 if (priv->video_fd != -1)
622a9ade4517 updated
alex
parents: 3711
diff changeset
547 close(priv->video_fd);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
548 return(0);
98769cea155c added tv subsystem
alex
parents:
diff changeset
549 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
550
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
551 static int uninit(priv_t *priv)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
552 {
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
553 priv->shutdown = 1;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
554
7318
85897ab199a4 changed message leveles (too many non-sense info messages)
alex
parents: 7317
diff changeset
555 mp_msg(MSGT_TV, MSGL_V, "Waiting for threads to finish... ");
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
556 if (!tv_param_noaudio) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
557 pthread_join(priv->audio_grabber_thread, NULL);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
558 pthread_mutex_destroy(&priv->audio_starter);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
559 pthread_mutex_destroy(&priv->skew_mutex);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
560 }
8417
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
561 pthread_mutex_destroy(&priv->video_buffer_mutex);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
562 pthread_join(priv->video_grabber_thread, NULL);
7318
85897ab199a4 changed message leveles (too many non-sense info messages)
alex
parents: 7317
diff changeset
563 mp_msg(MSGT_TV, MSGL_V, "done\n");
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
564
622a9ade4517 updated
alex
parents: 3711
diff changeset
565 priv->audio[priv->audio_id].volume = 0;
622a9ade4517 updated
alex
parents: 3711
diff changeset
566 priv->audio[priv->audio_id].flags |= VIDEO_AUDIO_MUTE;
622a9ade4517 updated
alex
parents: 3711
diff changeset
567 ioctl(priv->video_fd, VIDIOCSAUDIO, &priv->audio[priv->audio_id]);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
568
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
569 close(priv->video_fd);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
570
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
571 audio_in_uninit(&priv->audio_in);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
572
8417
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
573 if (priv->video_ringbuffer) {
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
574 int i;
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
575 for (i = 0; i < priv->video_buffer_size_current; i++) {
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
576 free(priv->video_ringbuffer[i]);
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
577 }
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
578 free(priv->video_ringbuffer);
8417
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
579 }
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
580
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
581 if (priv->video_timebuffer)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
582 free(priv->video_timebuffer);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
583 if (!tv_param_noaudio) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
584 if (priv->audio_ringbuffer)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
585 free(priv->audio_ringbuffer);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
586 if (priv->audio_skew_buffer)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
587 free(priv->audio_skew_buffer);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
588 }
2931
bce9c945b29c tv interface update
alex
parents: 2841
diff changeset
589
bce9c945b29c tv interface update
alex
parents: 2841
diff changeset
590 return(1);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
591 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
592
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
593 static int get_capture_buffer_size(priv_t *priv)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
594 {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
595 int bufsize, cnt;
7905
b062996d9794 added an option for specifying the size of capture buffer
henry
parents: 7844
diff changeset
596
7954
537af7663369 10L fix
henry
parents: 7905
diff changeset
597 if (tv_param_buffer_size >= 0) {
7905
b062996d9794 added an option for specifying the size of capture buffer
henry
parents: 7844
diff changeset
598 bufsize = tv_param_buffer_size*1024*1024;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
599 } else {
7905
b062996d9794 added an option for specifying the size of capture buffer
henry
parents: 7844
diff changeset
600 #ifdef HAVE_SYS_SYSINFO_H
b062996d9794 added an option for specifying the size of capture buffer
henry
parents: 7844
diff changeset
601 struct sysinfo si;
b062996d9794 added an option for specifying the size of capture buffer
henry
parents: 7844
diff changeset
602
b062996d9794 added an option for specifying the size of capture buffer
henry
parents: 7844
diff changeset
603 sysinfo(&si);
b062996d9794 added an option for specifying the size of capture buffer
henry
parents: 7844
diff changeset
604 if (si.totalram<2*1024*1024) {
b062996d9794 added an option for specifying the size of capture buffer
henry
parents: 7844
diff changeset
605 bufsize = 1024*1024;
b062996d9794 added an option for specifying the size of capture buffer
henry
parents: 7844
diff changeset
606 } else {
b062996d9794 added an option for specifying the size of capture buffer
henry
parents: 7844
diff changeset
607 bufsize = si.totalram/2;
b062996d9794 added an option for specifying the size of capture buffer
henry
parents: 7844
diff changeset
608 }
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
609 #else
7905
b062996d9794 added an option for specifying the size of capture buffer
henry
parents: 7844
diff changeset
610 bufsize = 16*1024*1024;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
611 #endif
7905
b062996d9794 added an option for specifying the size of capture buffer
henry
parents: 7844
diff changeset
612 }
b062996d9794 added an option for specifying the size of capture buffer
henry
parents: 7844
diff changeset
613
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
614 cnt = bufsize/(priv->height*priv->bytesperline);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
615 if (cnt < 2) cnt = 2;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
616
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
617 return cnt;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
618 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
619
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
620 static int start(priv_t *priv)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
621 {
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
622 int i;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
623 int bytes_per_sample;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
624
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
625 if (ioctl(priv->video_fd, VIDIOCGPICT, &priv->picture) == -1)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
626 {
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2814
diff changeset
627 mp_msg(MSGT_TV, MSGL_ERR, "ioctl get picture failed: %s\n", strerror(errno));
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
628 return(0);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
629 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
630
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
631 priv->picture.palette = format2palette(priv->format);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
632 priv->picture.depth = palette2depth(priv->picture.palette);
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
633
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
634 if (priv->format != IMGFMT_BGR15) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
635 priv->bytesperline = priv->width * priv->picture.depth / 8;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
636 } else {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
637 priv->bytesperline = priv->width * 2;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
638 }
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
639
7318
85897ab199a4 changed message leveles (too many non-sense info messages)
alex
parents: 7317
diff changeset
640 mp_msg(MSGT_TV, MSGL_V, "Picture values:\n");
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
641 mp_msg(MSGT_TV, MSGL_V, " Depth: %d, Palette: %s (Format: %s)\n", priv->picture.depth,
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
642 PALETTE(priv->picture.palette), vo_format_name(priv->format));
7318
85897ab199a4 changed message leveles (too many non-sense info messages)
alex
parents: 7317
diff changeset
643 mp_msg(MSGT_TV, MSGL_V, " Brightness: %d, Hue: %d, Colour: %d, Contrast: %d\n",
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
644 priv->picture.brightness, priv->picture.hue,
09d5c9834580 tv update
alex
parents: 2790
diff changeset
645 priv->picture.colour, priv->picture.contrast);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
646
09d5c9834580 tv update
alex
parents: 2790
diff changeset
647
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
648 if (ioctl(priv->video_fd, VIDIOCSPICT, &priv->picture) == -1)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
649 {
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2814
diff changeset
650 mp_msg(MSGT_TV, MSGL_ERR, "ioctl set picture failed: %s\n", strerror(errno));
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
651 return(0);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
652 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
653
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
654 priv->nbuf = priv->mbuf.frames;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
655 for (i=0; i < priv->nbuf; i++)
09d5c9834580 tv update
alex
parents: 2790
diff changeset
656 {
09d5c9834580 tv update
alex
parents: 2790
diff changeset
657 priv->buf[i].format = priv->picture.palette;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
658 priv->buf[i].frame = i;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
659 priv->buf[i].width = priv->width;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
660 priv->buf[i].height = priv->height;
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2814
diff changeset
661 mp_msg(MSGT_TV, MSGL_DBG2, "buffer: %d => %p\n", i, &priv->buf[i]);
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
662 }
2837
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
663
2931
bce9c945b29c tv interface update
alex
parents: 2841
diff changeset
664 #if 0
bce9c945b29c tv interface update
alex
parents: 2841
diff changeset
665 {
bce9c945b29c tv interface update
alex
parents: 2841
diff changeset
666 struct video_play_mode pmode;
bce9c945b29c tv interface update
alex
parents: 2841
diff changeset
667
bce9c945b29c tv interface update
alex
parents: 2841
diff changeset
668 pmode.mode = VID_PLAY_NORMAL;
bce9c945b29c tv interface update
alex
parents: 2841
diff changeset
669 pmode.p1 = 1;
bce9c945b29c tv interface update
alex
parents: 2841
diff changeset
670 pmode.p2 = 0;
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
671 if (ioctl(priv->video_fd, VIDIOCSPLAYMODE, &pmode) == -1)
2931
bce9c945b29c tv interface update
alex
parents: 2841
diff changeset
672 {
bce9c945b29c tv interface update
alex
parents: 2841
diff changeset
673 mp_msg(MSGT_TV, MSGL_ERR, "ioctl set play mode failed: %s\n", strerror(errno));
bce9c945b29c tv interface update
alex
parents: 2841
diff changeset
674 // return(0);
bce9c945b29c tv interface update
alex
parents: 2841
diff changeset
675 }
bce9c945b29c tv interface update
alex
parents: 2841
diff changeset
676 }
bce9c945b29c tv interface update
alex
parents: 2841
diff changeset
677 #endif
2837
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
678
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
679 #if 0
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
680 {
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
681 struct video_window win;
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
682
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
683 win.x = 0;
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
684 win.y = 0;
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
685 win.width = priv->width;
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
686 win.height = priv->height;
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
687 win.chromakey = -1;
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
688 win.flags = 0;
5088
942d497875b4 update by Charles Henrich
alex
parents: 3815
diff changeset
689 //win.clipcount = 0;
2837
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
690
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
691 ioctl(priv->video_fd, VIDIOCSWIN, &win);
2837
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
692 }
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
693
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
694 // initialize video capture
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
695 if (ioctl(priv->video_fd, VIDIOCCAPTURE, &one) == -1)
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
696 {
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
697 mp_msg(MSGT_TV, MSGL_ERR, "FATAL: ioctl ccapture failed: %s\n", strerror(errno));
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
698 return(0);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
699 }
2837
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
700 #endif
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
701
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
702 /* setup audio parameters */
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
703 if (!tv_param_noaudio) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
704 setup_audio_buffer_sizes(priv);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
705 bytes_per_sample = priv->audio_in.bytes_per_sample;
8131
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
706 priv->audio_skew_buffer = (long long*)malloc(sizeof(long long)*priv->aud_skew_cnt);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
707 if (!priv->audio_skew_buffer) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
708 mp_msg(MSGT_TV, MSGL_ERR, "cannot allocate skew buffer: %s\n", strerror(errno));
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
709 return 0;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
710 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
711
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
712 priv->audio_ringbuffer = (unsigned char*)malloc(priv->audio_in.blocksize*priv->audio_buffer_size);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
713 if (!priv->audio_ringbuffer) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
714 mp_msg(MSGT_TV, MSGL_ERR, "cannot allocate audio buffer: %s\n", strerror(errno));
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
715 return 0;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
716 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
717
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
718 priv->audio_secs_per_block = (double)priv->audio_in.blocksize/(priv->audio_in.samplerate
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
719 *priv->audio_in.channels
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
720 *bytes_per_sample);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
721 priv->audio_head = 0;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
722 priv->audio_tail = 0;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
723 priv->audio_cnt = 0;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
724 priv->audio_drop = 0;
8131
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
725 priv->audio_skew = 0;
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
726 priv->audio_skew_total = 0;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
727 priv->audio_recv_blocks_total = 0;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
728 priv->audio_sent_blocks_total = 0;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
729 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
730
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
731 /* setup video parameters */
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
732 if (priv->immediate_mode) {
8417
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
733 priv->video_buffer_size_max = VID_BUF_SIZE_IMMEDIATE;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
734 } else {
8417
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
735 priv->video_buffer_size_max = get_capture_buffer_size(priv);
6553
d000112bd06e Paul Ortyl's patch - tv4l timestamps (not so precise :()
alex
parents: 6529
diff changeset
736 }
8417
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
737 priv->video_buffer_size_current = 0;
6553
d000112bd06e Paul Ortyl's patch - tv4l timestamps (not so precise :()
alex
parents: 6529
diff changeset
738
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
739 if (!tv_param_noaudio) {
8417
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
740 if (priv->video_buffer_size_max < 3.0*priv->fps*priv->audio_secs_per_block) {
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
741 mp_msg(MSGT_TV, MSGL_ERR, "Video buffer shorter than 3 times audio frame duration.\n"
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
742 "You will probably experience heavy framedrops.\n");
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
743 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
744 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
745
8417
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
746 mp_msg(MSGT_TV, MSGL_V, "Using a ring buffer for maximum %d frames, %d MB total size.\n",
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
747 priv->video_buffer_size_max,
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
748 priv->video_buffer_size_max*priv->height*priv->bytesperline/(1024*1024));
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
749
8417
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
750 priv->video_ringbuffer = (unsigned char**)malloc(priv->video_buffer_size_max*sizeof(unsigned char*));
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
751 if (!priv->video_ringbuffer) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
752 mp_msg(MSGT_TV, MSGL_ERR, "cannot allocate video buffer: %s\n", strerror(errno));
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
753 return 0;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
754 }
8417
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
755 for (i = 0; i < priv->video_buffer_size_max; i++)
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
756 priv->video_ringbuffer[i] = NULL;
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
757
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
758 priv->video_timebuffer = (long long*)malloc(sizeof(long long) * priv->video_buffer_size_max);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
759 if (!priv->video_timebuffer) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
760 mp_msg(MSGT_TV, MSGL_ERR, "cannot allocate time buffer: %s\n", strerror(errno));
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
761 return 0;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
762 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
763 priv->video_head = 0;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
764 priv->video_tail = 0;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
765 priv->video_cnt = 0;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
766 priv->first = 1;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
767
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
768 if (priv->capability.audios) {
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
769 /* enable audio */
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
770 if (tv_param_volume >= 0)
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
771 priv->audio[priv->audio_id].volume = tv_param_volume;
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
772 if (tv_param_bass >= 0)
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
773 priv->audio[priv->audio_id].bass = tv_param_bass;
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
774 if (tv_param_treble >= 0)
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
775 priv->audio[priv->audio_id].treble = tv_param_treble;
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
776 if (tv_param_balance >= 0)
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
777 priv->audio[priv->audio_id].balance = tv_param_balance;
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
778 priv->audio[priv->audio_id].flags &= ~VIDEO_AUDIO_MUTE;
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
779 mp_msg(MSGT_TV, MSGL_V, "Enabling tv audio. Requested setup is:\n");
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
780 mp_msg(MSGT_TV, MSGL_V, "id=%d vol=%d bass=%d treble=%d balance=%d mode=%s",
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
781 priv->audio_id,
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
782 priv->audio[priv->audio_id].volume, priv->audio[priv->audio_id].bass, priv->audio[priv->audio_id].treble,
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
783 priv->audio[priv->audio_id].balance, audio_mode2name(priv->audio[priv->audio_id].mode));
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
784 mp_msg(MSGT_TV, MSGL_V, " chan=%d\n", priv->audio_channels[priv->audio_id]);
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
785 ioctl(priv->video_fd, VIDIOCSAUDIO, &priv->audio[priv->audio_id]);
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
786 }
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
787
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
788 /* launch capture threads */
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
789 priv->shutdown = 0;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
790 if (!tv_param_noaudio) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
791 pthread_mutex_init(&priv->audio_starter, NULL);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
792 pthread_mutex_init(&priv->skew_mutex, NULL);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
793 pthread_mutex_lock(&priv->audio_starter);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
794 pthread_create(&priv->audio_grabber_thread, NULL, audio_grabber, priv);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
795 }
8417
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
796 pthread_mutex_init(&priv->video_buffer_mutex, NULL);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
797 /* we'll launch the video capture later, when a first request for a frame arrives */
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
798
2837
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
799 return(1);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
800 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
801
98769cea155c added tv subsystem
alex
parents:
diff changeset
802 static int control(priv_t *priv, int cmd, void *arg)
98769cea155c added tv subsystem
alex
parents:
diff changeset
803 {
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
804 mp_msg(MSGT_TV, MSGL_DBG2, "\ndebug: control(priv=%p, cmd=%d, arg=%p)\n",
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
805 priv, cmd, arg);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
806 switch(cmd)
98769cea155c added tv subsystem
alex
parents:
diff changeset
807 {
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
808 /* ========== GENERIC controls =========== */
09d5c9834580 tv update
alex
parents: 2790
diff changeset
809 case TVI_CONTROL_IS_VIDEO:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
810 {
09d5c9834580 tv update
alex
parents: 2790
diff changeset
811 if (priv->capability.type & VID_TYPE_CAPTURE)
09d5c9834580 tv update
alex
parents: 2790
diff changeset
812 return(TVI_CONTROL_TRUE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
813 return(TVI_CONTROL_FALSE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
814 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
815 case TVI_CONTROL_IS_AUDIO:
2841
7ff47d6ae6e9 updated audio and tuner checking
alex
parents: 2837
diff changeset
816 if (priv->channels[priv->act_channel].flags & VIDEO_VC_AUDIO)
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
817 {
2841
7ff47d6ae6e9 updated audio and tuner checking
alex
parents: 2837
diff changeset
818 return(TVI_CONTROL_TRUE);
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
819 }
622a9ade4517 updated
alex
parents: 3711
diff changeset
820 return(TVI_CONTROL_TRUE);
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
821 case TVI_CONTROL_IS_TUNER:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
822 {
2841
7ff47d6ae6e9 updated audio and tuner checking
alex
parents: 2837
diff changeset
823 // if (priv->capability.type & VID_TYPE_TUNER)
7ff47d6ae6e9 updated audio and tuner checking
alex
parents: 2837
diff changeset
824 if (priv->channels[priv->act_channel].flags & VIDEO_VC_TUNER)
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
825 return(TVI_CONTROL_TRUE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
826 return(TVI_CONTROL_FALSE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
827 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
828
09d5c9834580 tv update
alex
parents: 2790
diff changeset
829 /* ========== VIDEO controls =========== */
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
830 case TVI_CONTROL_VID_GET_FORMAT:
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
831 {
09d5c9834580 tv update
alex
parents: 2790
diff changeset
832 int output_fmt = -1;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
833
09d5c9834580 tv update
alex
parents: 2790
diff changeset
834 output_fmt = priv->format;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
835 (int)*(void **)arg = output_fmt;
7318
85897ab199a4 changed message leveles (too many non-sense info messages)
alex
parents: 7317
diff changeset
836 mp_msg(MSGT_TV, MSGL_V, "Output format: %s\n", vo_format_name(output_fmt));
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
837 return(TVI_CONTROL_TRUE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
838 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
839 case TVI_CONTROL_VID_SET_FORMAT:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
840 priv->format = (int)*(void **)arg;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
841 // !HACK! v4l uses BGR format instead of RGB
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
842 // and we have to correct this. Fortunately,
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
843 // tv.c reads later the format back so we
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
844 // can persuade it to use what we want.
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
845 if (IMGFMT_IS_RGB(priv->format)) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
846 priv->format &= ~IMGFMT_RGB_MASK;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
847 priv->format |= IMGFMT_BGR;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
848 }
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
849 return(TVI_CONTROL_TRUE);
98769cea155c added tv subsystem
alex
parents:
diff changeset
850 case TVI_CONTROL_VID_GET_PLANES:
3220
alex
parents: 2937
diff changeset
851 (int)*(void **)arg = 1; /* FIXME, also not needed at this time */
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
852 return(TVI_CONTROL_TRUE);
98769cea155c added tv subsystem
alex
parents:
diff changeset
853 case TVI_CONTROL_VID_GET_BITS:
2810
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
854 (int)*(void **)arg = palette2depth(format2palette(priv->format));
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
855 return(TVI_CONTROL_TRUE);
98769cea155c added tv subsystem
alex
parents:
diff changeset
856 case TVI_CONTROL_VID_GET_WIDTH:
98769cea155c added tv subsystem
alex
parents:
diff changeset
857 (int)*(void **)arg = priv->width;
98769cea155c added tv subsystem
alex
parents:
diff changeset
858 return(TVI_CONTROL_TRUE);
98769cea155c added tv subsystem
alex
parents:
diff changeset
859 case TVI_CONTROL_VID_CHK_WIDTH:
98769cea155c added tv subsystem
alex
parents:
diff changeset
860 {
98769cea155c added tv subsystem
alex
parents:
diff changeset
861 int req_width = (int)*(void **)arg;
98769cea155c added tv subsystem
alex
parents:
diff changeset
862
7318
85897ab199a4 changed message leveles (too many non-sense info messages)
alex
parents: 7317
diff changeset
863 mp_msg(MSGT_TV, MSGL_V, "Requested width: %d\n", req_width);
2810
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
864 if ((req_width >= priv->capability.minwidth) &&
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
865 (req_width <= priv->capability.maxwidth))
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
866 return(TVI_CONTROL_TRUE);
98769cea155c added tv subsystem
alex
parents:
diff changeset
867 return(TVI_CONTROL_FALSE);
98769cea155c added tv subsystem
alex
parents:
diff changeset
868 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
869 case TVI_CONTROL_VID_SET_WIDTH:
98769cea155c added tv subsystem
alex
parents:
diff changeset
870 priv->width = (int)*(void **)arg;
98769cea155c added tv subsystem
alex
parents:
diff changeset
871 return(TVI_CONTROL_TRUE);
98769cea155c added tv subsystem
alex
parents:
diff changeset
872 case TVI_CONTROL_VID_GET_HEIGHT:
98769cea155c added tv subsystem
alex
parents:
diff changeset
873 (int)*(void **)arg = priv->height;
98769cea155c added tv subsystem
alex
parents:
diff changeset
874 return(TVI_CONTROL_TRUE);
98769cea155c added tv subsystem
alex
parents:
diff changeset
875 case TVI_CONTROL_VID_CHK_HEIGHT:
98769cea155c added tv subsystem
alex
parents:
diff changeset
876 {
98769cea155c added tv subsystem
alex
parents:
diff changeset
877 int req_height = (int)*(void **)arg;
98769cea155c added tv subsystem
alex
parents:
diff changeset
878
7318
85897ab199a4 changed message leveles (too many non-sense info messages)
alex
parents: 7317
diff changeset
879 mp_msg(MSGT_TV, MSGL_V, "Requested height: %d\n", req_height);
2810
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
880 if ((req_height >= priv->capability.minheight) &&
1f0bcdb49910 tv update
alex
parents: 2802
diff changeset
881 (req_height <= priv->capability.maxheight))
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
882 return(TVI_CONTROL_TRUE);
98769cea155c added tv subsystem
alex
parents:
diff changeset
883 return(TVI_CONTROL_FALSE);
98769cea155c added tv subsystem
alex
parents:
diff changeset
884 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
885 case TVI_CONTROL_VID_SET_HEIGHT:
98769cea155c added tv subsystem
alex
parents:
diff changeset
886 priv->height = (int)*(void **)arg;
98769cea155c added tv subsystem
alex
parents:
diff changeset
887 return(TVI_CONTROL_TRUE);
2937
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
888 case TVI_CONTROL_VID_GET_PICTURE:
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
889 if (ioctl(priv->video_fd, VIDIOCGPICT, &priv->picture) == -1)
2937
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
890 {
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
891 mp_msg(MSGT_TV, MSGL_ERR, "ioctl get picture failed: %s\n", strerror(errno));
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
892 return(TVI_CONTROL_FALSE);
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
893 }
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
894 return(TVI_CONTROL_TRUE);
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
895 case TVI_CONTROL_VID_SET_PICTURE:
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
896 if (ioctl(priv->video_fd, VIDIOCSPICT, &priv->picture) == -1)
2937
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
897 {
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
898 mp_msg(MSGT_TV, MSGL_ERR, "ioctl get picture failed: %s\n", strerror(errno));
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
899 return(TVI_CONTROL_FALSE);
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
900 }
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
901 return(TVI_CONTROL_TRUE);
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
902 case TVI_CONTROL_VID_SET_BRIGHTNESS:
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
903 priv->picture.brightness = (int)*(void **)arg;
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
904 control(priv, TVI_CONTROL_VID_SET_PICTURE, 0);
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
905 return(TVI_CONTROL_TRUE);
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
906 case TVI_CONTROL_VID_SET_HUE:
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
907 priv->picture.hue = (int)*(void **)arg;
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
908 control(priv, TVI_CONTROL_VID_SET_PICTURE, 0);
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
909 return(TVI_CONTROL_TRUE);
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
910 case TVI_CONTROL_VID_SET_SATURATION:
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
911 priv->picture.colour = (int)*(void **)arg;
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
912 control(priv, TVI_CONTROL_VID_SET_PICTURE, 0);
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
913 return(TVI_CONTROL_TRUE);
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
914 case TVI_CONTROL_VID_SET_CONTRAST:
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
915 priv->picture.contrast = (int)*(void **)arg;
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
916 control(priv, TVI_CONTROL_VID_SET_PICTURE, 0);
4307478ad922 added support for setting color values
alex
parents: 2931
diff changeset
917 return(TVI_CONTROL_TRUE);
6529
8552767dbb46 tv audio fixing patch by Paul Ortyl <ortylp at 3miasto.net>
alex
parents: 6305
diff changeset
918 case TVI_CONTROL_VID_GET_FPS:
8552767dbb46 tv audio fixing patch by Paul Ortyl <ortylp at 3miasto.net>
alex
parents: 6305
diff changeset
919 (int)*(void **)arg=priv->fps;
8552767dbb46 tv audio fixing patch by Paul Ortyl <ortylp at 3miasto.net>
alex
parents: 6305
diff changeset
920 return(TVI_CONTROL_TRUE);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
921
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
922 /* ========== TUNER controls =========== */
09d5c9834580 tv update
alex
parents: 2790
diff changeset
923 case TVI_CONTROL_TUN_GET_FREQ:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
924 {
09d5c9834580 tv update
alex
parents: 2790
diff changeset
925 unsigned long freq;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
926
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
927 if (ioctl(priv->video_fd, VIDIOCGFREQ, &freq) == -1)
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
928 {
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2814
diff changeset
929 mp_msg(MSGT_TV, MSGL_ERR, "ioctl get freq failed: %s\n", strerror(errno));
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
930 return(TVI_CONTROL_FALSE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
931 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
932
09d5c9834580 tv update
alex
parents: 2790
diff changeset
933 /* tuner uses khz not mhz ! */
2837
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
934 // if (priv->tuner.flags & VIDEO_TUNER_LOW)
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
935 // freq /= 1000;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
936 (unsigned long)*(void **)arg = freq;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
937 return(TVI_CONTROL_TRUE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
938 }
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
939 case TVI_CONTROL_TUN_SET_FREQ:
98769cea155c added tv subsystem
alex
parents:
diff changeset
940 {
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
941 /* argument is in MHz ! */
09d5c9834580 tv update
alex
parents: 2790
diff changeset
942 unsigned long freq = (unsigned long)*(void **)arg;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
943
2837
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
944 mp_msg(MSGT_TV, MSGL_V, "requested frequency: %.3f\n", (float)freq/16);
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
945
09d5c9834580 tv update
alex
parents: 2790
diff changeset
946 /* tuner uses khz not mhz ! */
2837
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
947 // if (priv->tuner.flags & VIDEO_TUNER_LOW)
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
948 // freq *= 1000;
c63562f5f56f tuning worx (can set frequency)
alex
parents: 2830
diff changeset
949 // mp_msg(MSGT_TV, MSGL_V, " requesting from driver: freq=%.3f\n", (float)freq/16);
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
950 if (ioctl(priv->video_fd, VIDIOCSFREQ, &freq) == -1)
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
951 {
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2814
diff changeset
952 mp_msg(MSGT_TV, MSGL_ERR, "ioctl set freq failed: %s\n", strerror(errno));
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
953 return(TVI_CONTROL_FALSE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
954 }
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
955 usleep(100000); // wait to supress noise during switching
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
956 return(TVI_CONTROL_TRUE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
957 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
958 case TVI_CONTROL_TUN_GET_TUNER:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
959 {
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
960 if (ioctl(priv->video_fd, VIDIOCGTUNER, &priv->tuner) == -1)
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
961 {
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2814
diff changeset
962 mp_msg(MSGT_TV, MSGL_ERR, "ioctl get tuner failed: %s\n", strerror(errno));
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
963 return(TVI_CONTROL_FALSE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
964 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
965
7318
85897ab199a4 changed message leveles (too many non-sense info messages)
alex
parents: 7317
diff changeset
966 mp_msg(MSGT_TV, MSGL_V, "Tuner (%s) range: %lu -> %lu\n", priv->tuner.name,
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
967 priv->tuner.rangelow, priv->tuner.rangehigh);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
968 return(TVI_CONTROL_TRUE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
969 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
970 case TVI_CONTROL_TUN_SET_TUNER:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
971 {
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
972 if (ioctl(priv->video_fd, VIDIOCSTUNER, &priv->tuner) == -1)
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
973 {
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
974 mp_msg(MSGT_TV, MSGL_ERR, "ioctl set tuner failed: %s\n", strerror(errno));
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
975 return(TVI_CONTROL_FALSE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
976 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
977 return(TVI_CONTROL_TRUE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
978 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
979 case TVI_CONTROL_TUN_SET_NORM:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
980 {
09d5c9834580 tv update
alex
parents: 2790
diff changeset
981 int req_mode = (int)*(void **)arg;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
982
8477
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
983 if ((req_mode != TV_NORM_PAL) && (req_mode != TV_NORM_NTSC) && (req_mode != TV_NORM_SECAM)
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
984 && (req_mode != TV_NORM_PALNC) && (req_mode != TV_NORM_PALM) && (req_mode != TV_NORM_PALN)
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
985 && (req_mode != TV_NORM_NTSCJP)) {
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
986 mp_msg(MSGT_TV, MSGL_ERR, "Unknown norm!\n");
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
987 return(TVI_CONTROL_FALSE);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
988 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
989
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
990 if (priv->channels[priv->act_channel].flags & VIDEO_VC_TUNER) {
8485
4e32317f08be don't give up when set_tuner fails; more zero div sanity checks
henry
parents: 8477
diff changeset
991 int prev_mode;
4e32317f08be don't give up when set_tuner fails; more zero div sanity checks
henry
parents: 8477
diff changeset
992
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
993 control(priv, TVI_CONTROL_TUN_GET_TUNER, 0);
8477
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
994 if (((req_mode == TV_NORM_PAL
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
995 || req_mode == TV_NORM_PALNC
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
996 || req_mode == TV_NORM_PALN) && !(priv->tuner.flags & VIDEO_TUNER_PAL)) ||
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
997 ((req_mode == TV_NORM_NTSC
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
998 || req_mode == TV_NORM_NTSCJP
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
999 || req_mode == TV_NORM_PALM) && !(priv->tuner.flags & VIDEO_TUNER_NTSC)) ||
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1000 ((req_mode == TV_NORM_SECAM) && !(priv->tuner.flags & VIDEO_TUNER_SECAM)))
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1001 {
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1002 mp_msg(MSGT_TV, MSGL_ERR, "Tuner isn't capable to set norm!\n");
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1003 return(TVI_CONTROL_FALSE);
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1004 }
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1005
8485
4e32317f08be don't give up when set_tuner fails; more zero div sanity checks
henry
parents: 8477
diff changeset
1006 prev_mode = priv->tuner.mode;
4e32317f08be don't give up when set_tuner fails; more zero div sanity checks
henry
parents: 8477
diff changeset
1007
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1008 switch(req_mode) {
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1009 case TV_NORM_PAL:
8477
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
1010 case TV_NORM_PALNC:
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
1011 case TV_NORM_PALN:
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1012 priv->tuner.mode = VIDEO_MODE_PAL;
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1013 break;
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1014 case TV_NORM_NTSC:
8477
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
1015 case TV_NORM_NTSCJP:
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
1016 case TV_NORM_PALM:
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1017 priv->tuner.mode = VIDEO_MODE_NTSC;
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1018 break;
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1019 case TV_NORM_SECAM:
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1020 priv->tuner.mode = VIDEO_MODE_SECAM;
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1021 break;
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1022 }
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1023
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1024 if (control(priv, TVI_CONTROL_TUN_SET_TUNER, &priv->tuner) != TVI_CONTROL_TRUE) {
8485
4e32317f08be don't give up when set_tuner fails; more zero div sanity checks
henry
parents: 8477
diff changeset
1025 // norm setting failed, but maybe it's only because it's fixed
4e32317f08be don't give up when set_tuner fails; more zero div sanity checks
henry
parents: 8477
diff changeset
1026 if (priv->tuner.mode != prev_mode) return(TVI_CONTROL_FALSE); // no it really failed
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1027 }
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1028
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1029 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1030
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1031 switch(req_mode) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1032 case TV_NORM_PAL:
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1033 priv->channels[priv->act_channel].norm = VIDEO_MODE_PAL;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1034 break;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1035 case TV_NORM_NTSC:
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1036 priv->channels[priv->act_channel].norm = VIDEO_MODE_NTSC;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1037 break;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1038 case TV_NORM_SECAM:
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1039 priv->channels[priv->act_channel].norm = VIDEO_MODE_SECAM;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1040 break;
8477
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
1041 case TV_NORM_PALNC:
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
1042 priv->channels[priv->act_channel].norm = 3;
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
1043 break;
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
1044 case TV_NORM_PALM:
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
1045 priv->channels[priv->act_channel].norm = 4;
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
1046 break;
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
1047 case TV_NORM_PALN:
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
1048 priv->channels[priv->act_channel].norm = 5;
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
1049 break;
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
1050 case TV_NORM_NTSCJP:
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
1051 priv->channels[priv->act_channel].norm = 6;
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
1052 break;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1053 }
7532
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1054 if (ioctl(priv->video_fd, VIDIOCSCHAN, &priv->channels[priv->act_channel]) == -1)
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1055 {
26cd91676fb6 complex patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7472
diff changeset
1056 mp_msg(MSGT_TV, MSGL_ERR, "ioctl set chan failed: %s\n", strerror(errno));
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1057 return(TVI_CONTROL_FALSE);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1058 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1059
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1060 if (ioctl(priv->video_fd, VIDIOCGCAP, &priv->capability) == -1) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1061 mp_msg(MSGT_TV, MSGL_ERR, "ioctl get capabilites failed: %s\n", strerror(errno));
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1062 return(TVI_CONTROL_FALSE);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1063 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1064
8477
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
1065 if(req_mode == TV_NORM_PAL || req_mode == TV_NORM_SECAM || req_mode == TV_NORM_PALN || req_mode == TV_NORM_PALNC) {
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1066 priv->fps = PAL_FPS;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1067 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1068
8477
b5dce4fa1c48 support for exotic norms
henry
parents: 8444
diff changeset
1069 if(req_mode == TV_NORM_NTSC || req_mode == TV_NORM_NTSCJP || req_mode == TV_NORM_PALM) {
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1070 priv->fps = NTSC_FPS;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1071 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1072
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1073 if(priv->height > priv->capability.maxheight) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1074 priv->height = priv->capability.maxheight;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1075 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1076
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1077 if(priv->width > priv->capability.maxwidth) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1078 priv->width = priv->capability.maxwidth;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1079 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1080
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1081 return(TVI_CONTROL_TRUE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1082 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1083 case TVI_CONTROL_TUN_GET_NORM:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1084 {
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1085 (int)*(void **)arg = priv->tuner.mode;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1086
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1087 return(TVI_CONTROL_TRUE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1088 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1089
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1090 /* ========== AUDIO controls =========== */
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1091 case TVI_CONTROL_AUD_GET_FORMAT:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1092 {
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1093 (int)*(void **)arg = AFMT_S16_LE;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1094 return(TVI_CONTROL_TRUE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1095 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1096 case TVI_CONTROL_AUD_GET_CHANNELS:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1097 {
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1098 (int)*(void **)arg = priv->audio_in.channels;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1099 return(TVI_CONTROL_TRUE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1100 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1101 case TVI_CONTROL_AUD_GET_SAMPLERATE:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1102 {
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1103 (int)*(void **)arg = priv->audio_in.samplerate;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1104 return(TVI_CONTROL_TRUE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1105 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1106 case TVI_CONTROL_AUD_GET_SAMPLESIZE:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1107 {
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1108 (int)*(void **)arg = priv->audio_in.bytes_per_sample;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1109 return(TVI_CONTROL_TRUE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1110 }
5941
f2bad7299936 disabled audio
alex
parents: 5572
diff changeset
1111 case TVI_CONTROL_AUD_SET_SAMPLERATE:
f2bad7299936 disabled audio
alex
parents: 5572
diff changeset
1112 {
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1113 if (audio_in_set_samplerate(&priv->audio_in, (int)*(void **)arg) < 0) return TVI_CONTROL_FALSE;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1114 setup_audio_buffer_sizes(priv);
5941
f2bad7299936 disabled audio
alex
parents: 5572
diff changeset
1115 return(TVI_CONTROL_TRUE);
f2bad7299936 disabled audio
alex
parents: 5572
diff changeset
1116 }
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1117 /* ========== SPECIFIC controls =========== */
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1118 case TVI_CONTROL_SPC_GET_INPUT:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1119 {
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1120 int req_chan = (int)*(void **)arg;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1121 int i;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1122
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1123 for (i = 0; i < priv->capability.channels; i++)
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1124 {
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1125 if (priv->channels[i].channel == req_chan)
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1126 break;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1127 }
2841
7ff47d6ae6e9 updated audio and tuner checking
alex
parents: 2837
diff changeset
1128
7ff47d6ae6e9 updated audio and tuner checking
alex
parents: 2837
diff changeset
1129 priv->act_channel = i;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1130
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
1131 if (ioctl(priv->video_fd, VIDIOCGCHAN, &priv->channels[i]) == -1)
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1132 {
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2814
diff changeset
1133 mp_msg(MSGT_TV, MSGL_ERR, "ioctl get channel failed: %s\n", strerror(errno));
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1134 return(TVI_CONTROL_FALSE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1135 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1136 return(TVI_CONTROL_TRUE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1137 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1138
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1139 case TVI_CONTROL_SPC_SET_INPUT:
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1140 {
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1141 struct video_channel chan;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1142 int req_chan = (int)*(void **)arg;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1143 int i;
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1144
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1145 if (req_chan >= priv->capability.channels)
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1146 {
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2814
diff changeset
1147 mp_msg(MSGT_TV, MSGL_ERR, "Invalid input requested: %d, valid: 0-%d\n",
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1148 req_chan, priv->capability.channels);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1149 return(TVI_CONTROL_FALSE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1150 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1151
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1152 for (i = 0; i < priv->capability.channels; i++)
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1153 {
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1154 if (priv->channels[i].channel == req_chan)
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1155 chan = priv->channels[i];
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1156 }
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1157
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
1158 if (ioctl(priv->video_fd, VIDIOCSCHAN, &chan) == -1)
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1159 {
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2814
diff changeset
1160 mp_msg(MSGT_TV, MSGL_ERR, "ioctl set chan failed: %s\n", strerror(errno));
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1161 return(TVI_CONTROL_FALSE);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1162 }
2818
9f68d309f8cb printf's changed into mp_msg
alex
parents: 2814
diff changeset
1163 mp_msg(MSGT_TV, MSGL_INFO, "Using input '%s'\n", chan.name);
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1164
2841
7ff47d6ae6e9 updated audio and tuner checking
alex
parents: 2837
diff changeset
1165 priv->act_channel = i;
7ff47d6ae6e9 updated audio and tuner checking
alex
parents: 2837
diff changeset
1166
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1167 /* update tuner state */
2841
7ff47d6ae6e9 updated audio and tuner checking
alex
parents: 2837
diff changeset
1168 // if (priv->capability.type & VID_TYPE_TUNER)
7ff47d6ae6e9 updated audio and tuner checking
alex
parents: 2837
diff changeset
1169 if (priv->channels[priv->act_channel].flags & VIDEO_VC_TUNER)
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1170 control(priv, TVI_CONTROL_TUN_GET_TUNER, 0);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1171
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1172 /* update local channel list */
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1173 control(priv, TVI_CONTROL_SPC_GET_INPUT, &req_chan);
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1174 return(TVI_CONTROL_TRUE);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1175 case TVI_CONTROL_IMMEDIATE:
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1176 priv->immediate_mode = 1;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1177 return(TVI_CONTROL_TRUE);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
1178 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
1179 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
1180
98769cea155c added tv subsystem
alex
parents:
diff changeset
1181 return(TVI_CONTROL_UNKNOWN);
98769cea155c added tv subsystem
alex
parents:
diff changeset
1182 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
1183
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1184 // copies a video frame
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1185 // for RGB (i.e. BGR in mplayer) flips the image upside down
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1186 // for YV12 swaps the 2nd and 3rd plane
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1187 static inline void copy_frame(priv_t *priv, unsigned char *dest, unsigned char *source)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
1188 {
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1189 int i;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1190 unsigned char *sptr;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1191
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1192 // YV12 uses VIDEO_PALETTE_YUV420P, but the planes are swapped
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1193 if (priv->format == IMGFMT_YV12) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1194 memcpy(dest, source, priv->width * priv->height);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1195 memcpy(dest+priv->width * priv->height*5/4, source+priv->width * priv->height, priv->width * priv->height/4);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1196 memcpy(dest+priv->width * priv->height, source+priv->width * priv->height*5/4, priv->width * priv->height/4);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1197 return;
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
1198 }
3711
5fa7eb90e2ec fixed video syncing
alex
parents: 3703
diff changeset
1199
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1200 switch (priv->picture.palette) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1201 case VIDEO_PALETTE_RGB24:
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1202 case VIDEO_PALETTE_RGB32:
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1203 case VIDEO_PALETTE_RGB555:
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1204 case VIDEO_PALETTE_RGB565:
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1205 sptr = source + (priv->height-1)*priv->bytesperline;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1206 for (i = 0; i < priv->height; i++) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1207 memcpy(dest, sptr, priv->bytesperline);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1208 dest += priv->bytesperline;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1209 sptr -= priv->bytesperline;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1210 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1211 break;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1212 case VIDEO_PALETTE_UYVY:
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1213 case VIDEO_PALETTE_YUV420P:
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1214 default:
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1215 memcpy(dest, source, priv->bytesperline * priv->height);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1216 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1217
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1218 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1219
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1220 // maximum skew change, in frames
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1221 #define MAX_SKEW_DELTA 0.6
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1222 static void *video_grabber(void *data)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1223 {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1224 priv_t *priv = (priv_t*)data;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1225 struct timeval curtime;
8131
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
1226 long long skew, prev_skew, xskew, interval, prev_interval;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1227 int frame, nextframe;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1228 int i;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1229 int first = 1;
7803
172ee2b4612f Stop grabbing from v4l when paused by Jindrich Makovicka
alex
parents: 7585
diff changeset
1230 int framecount;
3711
5fa7eb90e2ec fixed video syncing
alex
parents: 3703
diff changeset
1231
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1232 /* start the capture process */
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1233 if (ioctl(priv->video_fd, VIDIOCMCAPTURE, &priv->buf[0]) == -1)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1234 {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1235 mp_msg(MSGT_TV, MSGL_ERR, "\nioctl mcapture failed: %s\n", strerror(errno));
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1236 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1237 while (ioctl(priv->video_fd, VIDIOCSYNC, &priv->buf[1].frame) < 0 &&
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1238 (errno == EAGAIN || errno == EINTR));
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1239 mp_dbg(MSGT_TV, MSGL_DBG3, "\npicture sync failed\n");
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1240
8131
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
1241 prev_interval = 0;
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
1242 prev_skew = 0;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1243
7803
172ee2b4612f Stop grabbing from v4l when paused by Jindrich Makovicka
alex
parents: 7585
diff changeset
1244 for (framecount = 0; !priv->shutdown;)
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1245 {
7803
172ee2b4612f Stop grabbing from v4l when paused by Jindrich Makovicka
alex
parents: 7585
diff changeset
1246 for (i = 0; i < priv->nbuf && !priv->shutdown; i++, framecount++) {
172ee2b4612f Stop grabbing from v4l when paused by Jindrich Makovicka
alex
parents: 7585
diff changeset
1247
172ee2b4612f Stop grabbing from v4l when paused by Jindrich Makovicka
alex
parents: 7585
diff changeset
1248 if (priv->immediate_mode) {
8417
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1249 while (priv->video_cnt == priv->video_buffer_size_max) {
7803
172ee2b4612f Stop grabbing from v4l when paused by Jindrich Makovicka
alex
parents: 7585
diff changeset
1250 usleep(10000);
7834
830f10ad97ac add a forgotten shutdown test
henry
parents: 7803
diff changeset
1251 if (priv->shutdown) {
830f10ad97ac add a forgotten shutdown test
henry
parents: 7803
diff changeset
1252 return NULL;
830f10ad97ac add a forgotten shutdown test
henry
parents: 7803
diff changeset
1253 }
7803
172ee2b4612f Stop grabbing from v4l when paused by Jindrich Makovicka
alex
parents: 7585
diff changeset
1254 }
172ee2b4612f Stop grabbing from v4l when paused by Jindrich Makovicka
alex
parents: 7585
diff changeset
1255 }
172ee2b4612f Stop grabbing from v4l when paused by Jindrich Makovicka
alex
parents: 7585
diff changeset
1256
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1257 frame = i;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1258 nextframe = (i+1)%priv->nbuf;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1259
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1260 if (ioctl(priv->video_fd, VIDIOCMCAPTURE, &priv->buf[nextframe]) == -1)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1261 {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1262 mp_msg(MSGT_TV, MSGL_ERR, "\nioctl mcapture failed: %s\n", strerror(errno));
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1263 continue;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1264 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1265
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1266 while (ioctl(priv->video_fd, VIDIOCSYNC, &priv->buf[frame].frame) < 0 &&
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1267 (errno == EAGAIN || errno == EINTR));
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1268 mp_dbg(MSGT_TV, MSGL_DBG3, "\npicture sync failed\n");
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1269
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1270 gettimeofday(&curtime, NULL);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1271 if (first) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1272 // this was a first frame - let's launch the audio capture thread immediately
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1273 // before that, just initialize some variables
8131
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
1274 priv->starttime = (long long)1e6*curtime.tv_sec + curtime.tv_usec;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1275 priv->audio_skew_measure_time = 0;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1276 pthread_mutex_unlock(&priv->audio_starter);
7585
cfd6a99021ac some cleanups for video_grabber() which fix a race condition by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7532
diff changeset
1277 // first frame must always have timestamp of zero
8131
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
1278 xskew = 0;
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
1279 skew = 0;
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
1280 interval = 0;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1281 first = 0;
7585
cfd6a99021ac some cleanups for video_grabber() which fix a race condition by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7532
diff changeset
1282 } else {
7803
172ee2b4612f Stop grabbing from v4l when paused by Jindrich Makovicka
alex
parents: 7585
diff changeset
1283 if (!priv->immediate_mode) {
8131
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
1284 interval = (long long)1e6*curtime.tv_sec + curtime.tv_usec - priv->starttime;
7803
172ee2b4612f Stop grabbing from v4l when paused by Jindrich Makovicka
alex
parents: 7585
diff changeset
1285 } else {
8627
14ab71b47a58 user friendly channel tuning + 10L fix in tvi_v4l (by Stephane Jourdois)
henry
parents: 8485
diff changeset
1286 interval = (long long)1e6*framecount/priv->fps;
7803
172ee2b4612f Stop grabbing from v4l when paused by Jindrich Makovicka
alex
parents: 7585
diff changeset
1287 }
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1288
8485
4e32317f08be don't give up when set_tuner fails; more zero div sanity checks
henry
parents: 8477
diff changeset
1289 if (!priv->immediate_mode) {
4e32317f08be don't give up when set_tuner fails; more zero div sanity checks
henry
parents: 8477
diff changeset
1290 if (interval - prev_interval == 0) {
4e32317f08be don't give up when set_tuner fails; more zero div sanity checks
henry
parents: 8477
diff changeset
1291 mp_msg(MSGT_TV, MSGL_V, "\nvideo capture thread: frame delta = 0\n");
4e32317f08be don't give up when set_tuner fails; more zero div sanity checks
henry
parents: 8477
diff changeset
1292 } else if ((interval - prev_interval < (long long)0.85e6/priv->fps)
4e32317f08be don't give up when set_tuner fails; more zero div sanity checks
henry
parents: 8477
diff changeset
1293 || (interval - prev_interval > (long long)1.15e6/priv->fps) ) {
4e32317f08be don't give up when set_tuner fails; more zero div sanity checks
henry
parents: 8477
diff changeset
1294 mp_msg(MSGT_TV, MSGL_V, "\nvideo capture thread: frame delta ~ %.1lf fps\n",
4e32317f08be don't give up when set_tuner fails; more zero div sanity checks
henry
parents: 8477
diff changeset
1295 (double)1e6/(interval - prev_interval));
4e32317f08be don't give up when set_tuner fails; more zero div sanity checks
henry
parents: 8477
diff changeset
1296 }
7585
cfd6a99021ac some cleanups for video_grabber() which fix a race condition by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7532
diff changeset
1297 }
cfd6a99021ac some cleanups for video_grabber() which fix a race condition by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7532
diff changeset
1298
cfd6a99021ac some cleanups for video_grabber() which fix a race condition by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7532
diff changeset
1299 // interpolate the skew in time
cfd6a99021ac some cleanups for video_grabber() which fix a race condition by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7532
diff changeset
1300 pthread_mutex_lock(&priv->skew_mutex);
cfd6a99021ac some cleanups for video_grabber() which fix a race condition by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7532
diff changeset
1301 xskew = priv->audio_skew + (interval - priv->audio_skew_measure_time)*priv->audio_skew_factor;
cfd6a99021ac some cleanups for video_grabber() which fix a race condition by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7532
diff changeset
1302 pthread_mutex_unlock(&priv->skew_mutex);
cfd6a99021ac some cleanups for video_grabber() which fix a race condition by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7532
diff changeset
1303 // correct extreme skew changes to avoid (especially) moving backwards in time
cfd6a99021ac some cleanups for video_grabber() which fix a race condition by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7532
diff changeset
1304 if (xskew - prev_skew > (interval - prev_interval)*MAX_SKEW_DELTA) {
cfd6a99021ac some cleanups for video_grabber() which fix a race condition by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7532
diff changeset
1305 skew = prev_skew + (interval - prev_interval)*MAX_SKEW_DELTA;
cfd6a99021ac some cleanups for video_grabber() which fix a race condition by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7532
diff changeset
1306 } else if (xskew - prev_skew < -(interval - prev_interval)*MAX_SKEW_DELTA) {
cfd6a99021ac some cleanups for video_grabber() which fix a race condition by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7532
diff changeset
1307 skew = prev_skew - (interval - prev_interval)*MAX_SKEW_DELTA;
cfd6a99021ac some cleanups for video_grabber() which fix a race condition by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7532
diff changeset
1308 } else {
cfd6a99021ac some cleanups for video_grabber() which fix a race condition by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7532
diff changeset
1309 skew = xskew;
cfd6a99021ac some cleanups for video_grabber() which fix a race condition by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
alex
parents: 7532
diff changeset
1310 }
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1311 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1312
8131
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
1313 mp_msg(MSGT_TV, MSGL_DBG3, "\nfps = %lf, interval = %lf, a_skew = %f, corr_skew = %f\n",
8485
4e32317f08be don't give up when set_tuner fails; more zero div sanity checks
henry
parents: 8477
diff changeset
1314 (interval != prev_interval) ? (double)1e6/(interval - prev_interval) : -1,
4e32317f08be don't give up when set_tuner fails; more zero div sanity checks
henry
parents: 8477
diff changeset
1315 (double)1e-6*interval, (double)1e-6*xskew, (double)1e-6*skew);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1316 mp_msg(MSGT_TV, MSGL_DBG3, "vcnt = %d, acnt = %d\n", priv->video_cnt, priv->audio_cnt);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1317
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1318 prev_skew = skew;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1319 prev_interval = interval;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1320
8417
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1321 /* allocate a new buffer, if needed */
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1322 pthread_mutex_lock(&priv->video_buffer_mutex);
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1323 if (priv->video_buffer_size_current < priv->video_buffer_size_max) {
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1324 if (priv->video_cnt == priv->video_buffer_size_current) {
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1325 unsigned char *newbuf = (unsigned char*)malloc(priv->bytesperline * priv->height);
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1326 if (newbuf) {
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1327 memmove(priv->video_ringbuffer+priv->video_tail+1, priv->video_ringbuffer+priv->video_tail,
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1328 (priv->video_buffer_size_current-priv->video_tail)*sizeof(unsigned char *));
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1329 memmove(priv->video_timebuffer+priv->video_tail+1, priv->video_timebuffer+priv->video_tail,
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1330 (priv->video_buffer_size_current-priv->video_tail)*sizeof(long long));
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1331 priv->video_ringbuffer[priv->video_tail] = newbuf;
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1332 if ((priv->video_head >= priv->video_tail) && (priv->video_cnt > 0)) priv->video_head++;
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1333 priv->video_buffer_size_current++;
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1334 }
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1335 }
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1336 }
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1337 pthread_mutex_unlock(&priv->video_buffer_mutex);
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1338
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1339 if (priv->video_cnt == priv->video_buffer_size_current) {
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1340 if (!priv->immediate_mode) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1341 mp_msg(MSGT_TV, MSGL_ERR, "\nvideo buffer full - dropping frame\n");
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1342 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1343 } else {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1344 if (priv->immediate_mode) {
7803
172ee2b4612f Stop grabbing from v4l when paused by Jindrich Makovicka
alex
parents: 7585
diff changeset
1345 priv->video_timebuffer[priv->video_tail] = interval;
172ee2b4612f Stop grabbing from v4l when paused by Jindrich Makovicka
alex
parents: 7585
diff changeset
1346 } else {
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1347 // compensate for audio skew
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1348 // negative skew => there are more audio samples, increase interval
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1349 // positive skew => less samples, shorten the interval
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1350 priv->video_timebuffer[priv->video_tail] = interval - skew;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1351 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1352
8417
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1353 copy_frame(priv, priv->video_ringbuffer[priv->video_tail], priv->mmap+priv->mbuf.offsets[frame]);
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1354 priv->video_tail = (priv->video_tail+1)%priv->video_buffer_size_current;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1355 priv->video_cnt++;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1356 }
2931
bce9c945b29c tv interface update
alex
parents: 2841
diff changeset
1357
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1358 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1359
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1360 }
7472
c4434bdf6e51 tons of warning fixes, also some 10l bugfixes, including Dominik's PVA bug
arpi
parents: 7318
diff changeset
1361 return NULL;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1362 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1363
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1364 static double grab_video_frame(priv_t *priv, char *buffer, int len)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1365 {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1366 double interval;
2802
09d5c9834580 tv update
alex
parents: 2790
diff changeset
1367
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1368 if (priv->first) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1369 pthread_create(&priv->video_grabber_thread, NULL, video_grabber, priv);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1370 priv->first = 0;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1371 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1372
8417
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1373 while (priv->video_cnt == 0) {
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1374 usleep(10000);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1375 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1376
8417
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1377 pthread_mutex_lock(&priv->video_buffer_mutex);
8131
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
1378 interval = (double)priv->video_timebuffer[priv->video_head]*1e-6;
8417
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1379 memcpy(buffer, priv->video_ringbuffer[priv->video_head], len);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1380 priv->video_cnt--;
8417
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1381 priv->video_head = (++priv->video_head)%priv->video_buffer_size_current;
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1382 pthread_mutex_unlock(&priv->video_buffer_mutex);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1383 return interval;
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
1384 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
1385
98769cea155c added tv subsystem
alex
parents:
diff changeset
1386 static int get_video_framesize(priv_t *priv)
98769cea155c added tv subsystem
alex
parents:
diff changeset
1387 {
2931
bce9c945b29c tv interface update
alex
parents: 2841
diff changeset
1388 return(priv->bytesperline * priv->height);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
1389 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
1390
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1391 static void *audio_grabber(void *data)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1392 {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1393 priv_t *priv = (priv_t*)data;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1394 struct timeval tv;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1395 int i, audio_skew_ptr = 0;
8417
15e3d9c2c0ac allocate the video buffer on the fly, instead of one big chunk at startup
henry
parents: 8335
diff changeset
1396 long long current_time, prev_skew = 0;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1397
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1398 pthread_mutex_lock(&priv->audio_starter);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1399
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1400 audio_in_start_capture(&priv->audio_in);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1401 for (i = 0; i < priv->aud_skew_cnt; i++)
8131
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
1402 priv->audio_skew_buffer[i] = 0;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1403
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1404 for (; !priv->shutdown;)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1405 {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1406 if (audio_in_read_chunk(&priv->audio_in, priv->audio_ringbuffer+priv->audio_tail*priv->audio_in.blocksize) < 0)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1407 continue;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1408
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1409 gettimeofday(&tv, NULL);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1410
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1411 priv->audio_recv_blocks_total++;
8131
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
1412 current_time = (long long)1e6*tv.tv_sec + tv.tv_usec - priv->starttime;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1413
8131
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
1414 priv->audio_skew_total -= priv->audio_skew_buffer[audio_skew_ptr];
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
1415 priv->audio_skew_buffer[audio_skew_ptr] = current_time
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
1416 - 1e6*priv->audio_secs_per_block*priv->audio_recv_blocks_total;
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
1417 priv->audio_skew_total += priv->audio_skew_buffer[audio_skew_ptr];
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
1418 audio_skew_ptr = (audio_skew_ptr+1) % priv->aud_skew_cnt;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1419
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1420 pthread_mutex_lock(&priv->skew_mutex);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1421 // linear interpolation - here we interpolate current skew value
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1422 // from the moving average, which we expect to be in the middle
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1423 // of the interval
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1424 if (priv->audio_recv_blocks_total > priv->aud_skew_cnt) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1425 priv->audio_skew = priv->audio_skew_total/priv->aud_skew_cnt;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1426 priv->audio_skew += (priv->audio_skew*priv->aud_skew_cnt)/(2*priv->audio_recv_blocks_total-priv->aud_skew_cnt);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1427 } else {
8131
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
1428 // this smoothes the evolution of audio_skew at startup a bit
6b9a3fceaef9 skew calculations modified to use integers
henry
parents: 8022
diff changeset
1429 priv->audio_skew = ((priv->aud_skew_cnt+priv->audio_recv_blocks_total)*priv->audio_skew_total)/(priv->aud_skew_cnt*priv->audio_recv_blocks_total);
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1430 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1431 // current skew factor (assuming linearity)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1432 // used for further interpolation in video_grabber
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1433 // probably overkill but seems to be necessary for
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1434 // stress testing by dropping half of the audio frames ;)
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1435 // especially when using ALSA with large block sizes
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1436 // where audio_skew remains a long while behind
8444
78d1fc838e3c fixed possible division by zero
henry
parents: 8417
diff changeset
1437 if ((priv->audio_skew_measure_time != 0) && (current_time - priv->audio_skew_measure_time != 0)) {
78d1fc838e3c fixed possible division by zero
henry
parents: 8417
diff changeset
1438 priv->audio_skew_factor = (double)(priv->audio_skew-prev_skew)/(current_time - priv->audio_skew_measure_time);
78d1fc838e3c fixed possible division by zero
henry
parents: 8417
diff changeset
1439 } else {
78d1fc838e3c fixed possible division by zero
henry
parents: 8417
diff changeset
1440 priv->audio_skew_factor = 0.0;
78d1fc838e3c fixed possible division by zero
henry
parents: 8417
diff changeset
1441 }
78d1fc838e3c fixed possible division by zero
henry
parents: 8417
diff changeset
1442
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1443 priv->audio_skew_measure_time = current_time;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1444 prev_skew = priv->audio_skew;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1445 pthread_mutex_unlock(&priv->skew_mutex);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1446
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1447 if ((priv->audio_tail+1) % priv->audio_buffer_size == priv->audio_head) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1448 mp_msg(MSGT_TV, MSGL_ERR, "\ntoo bad - dropping audio frame !\n");
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1449 priv->audio_drop++;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1450 } else {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1451 priv->audio_tail = (++priv->audio_tail) % priv->audio_buffer_size;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1452 priv->audio_cnt++;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1453 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1454 }
7472
c4434bdf6e51 tons of warning fixes, also some 10l bugfixes, including Dominik's PVA bug
arpi
parents: 7318
diff changeset
1455 return NULL;
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1456 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1457
5572
8cd761968f35 BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents: 5088
diff changeset
1458 static double grab_audio_frame(priv_t *priv, char *buffer, int len)
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
1459 {
5088
942d497875b4 update by Charles Henrich
alex
parents: 3815
diff changeset
1460 mp_dbg(MSGT_TV, MSGL_DBG2, "grab_audio_frame(priv=%p, buffer=%p, len=%d)\n",
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
1461 priv, buffer, len);
622a9ade4517 updated
alex
parents: 3711
diff changeset
1462
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1463 // compensate for dropped audio frames
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1464 if (priv->audio_drop && (priv->audio_head == priv->audio_tail)) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1465 priv->audio_drop--;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1466 priv->audio_sent_blocks_total++;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1467 memset(buffer, 0, len);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1468 return (double)priv->audio_sent_blocks_total*priv->audio_secs_per_block;
3815
622a9ade4517 updated
alex
parents: 3711
diff changeset
1469 }
622a9ade4517 updated
alex
parents: 3711
diff changeset
1470
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1471 while (priv->audio_head == priv->audio_tail) {
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1472 usleep(10000);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1473 }
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1474 memcpy(buffer, priv->audio_ringbuffer+priv->audio_head*priv->audio_in.blocksize, len);
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1475 priv->audio_head = (++priv->audio_head) % priv->audio_buffer_size;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1476 priv->audio_cnt--;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1477 priv->audio_sent_blocks_total++;
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1478 return (double)priv->audio_sent_blocks_total*priv->audio_secs_per_block;
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
1479 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
1480
98769cea155c added tv subsystem
alex
parents:
diff changeset
1481 static int get_audio_framesize(priv_t *priv)
98769cea155c added tv subsystem
alex
parents:
diff changeset
1482 {
7058
2e5c07262861 new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents: 6553
diff changeset
1483 return(priv->audio_in.blocksize);
2790
98769cea155c added tv subsystem
alex
parents:
diff changeset
1484 }
98769cea155c added tv subsystem
alex
parents:
diff changeset
1485
98769cea155c added tv subsystem
alex
parents:
diff changeset
1486 #endif /* USE_TV */