annotate stream/tvi_v4l2.c @ 37127:ca7e13830a05

Allow building of v4l2 without clock_gettime(). Add overly verbose message in case monotone timestamps are required by the kernel.
author iive
date Tue, 10 Jun 2014 16:39:04 +0000
parents 6db1f7a10803
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1 /*
28106
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
2 * Video 4 Linux 2 input
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
3 *
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
4 * copyright (c) 2003 Martin Olschewski <olschewski@zpr.uni-koeln.de>
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
5 * copyright (c) 2003 Jindrich Makovicka <makovick@gmail.com>
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
6 *
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
7 * Some ideas are based on works from
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
8 * Alex Beregszaszi <alex@fsn.hu>
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
9 * Gerd Knorr <kraxel@bytesex.org>
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
10 *
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
11 * This file is part of MPlayer.
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
12 *
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
13 * MPlayer is free software; you can redistribute it and/or modify
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
14 * it under the terms of the GNU General Public License as published by
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
15 * the Free Software Foundation; either version 2 of the License, or
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
16 * (at your option) any later version.
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
17 *
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
18 * MPlayer is distributed in the hope that it will be useful,
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
21 * GNU General Public License for more details.
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
22 *
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
23 * You should have received a copy of the GNU General Public License along
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
24 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
25 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
4932a522100e Replace informal GPL notes by standard GPL header.
diego
parents: 27461
diff changeset
26 */
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
27
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
28 /*
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
29
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
30 known issues:
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
31 - norm setting isn't consistent with tvi_v4l
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
32 - the same for volume/bass/treble/balance
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
33
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
34 */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
35
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
36 #include "config.h"
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
37
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
38 #include <errno.h>
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
39 #include <fcntl.h>
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
40 #include <pthread.h>
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
41 #include <stdio.h>
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
42 #include <string.h>
35903
389d43c448b3 Add missing strings.h #includes for strcasecmp().
diego
parents: 33644
diff changeset
43 #include <strings.h>
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
44 #include <sys/ioctl.h>
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
45 #include <sys/mman.h>
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
46 #include <sys/time.h>
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
47 #include <sys/types.h>
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
48 #include <unistd.h>
27461
5a30f5bc23a0 Rename HAVE_WINSOCK preprocessor condition to HAVE_WINSOCK_H.
diego
parents: 27390
diff changeset
49 #include <math.h>
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
50 #ifdef HAVE_SYS_SYSINFO_H
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
51 #include <sys/sysinfo.h>
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
52 #endif
33163
d941d34d5b0f Add V4L2 support for OpenBSD (and NetBSD).
diego
parents: 32668
diff changeset
53 #ifdef HAVE_SYS_VIDEOIO_H
d941d34d5b0f Add V4L2 support for OpenBSD (and NetBSD).
diego
parents: 32668
diff changeset
54 #include <sys/videoio.h>
d941d34d5b0f Add V4L2 support for OpenBSD (and NetBSD).
diego
parents: 32668
diff changeset
55 #else
16442
11331109ecad - remove useless /dev/video* checks
henry
parents: 16289
diff changeset
56 #include <linux/types.h>
11331109ecad - remove useless /dev/video* checks
henry
parents: 16289
diff changeset
57 #include <linux/videodev2.h>
33163
d941d34d5b0f Add V4L2 support for OpenBSD (and NetBSD).
diego
parents: 32668
diff changeset
58 #endif
17012
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 16962
diff changeset
59 #include "mp_msg.h"
19431
ac69ba536915 Explicitly include libmpcodecs/img_format.h and libvo/fastmemcpy.h.
diego
parents: 19271
diff changeset
60 #include "libmpcodecs/img_format.h"
29759
d287e2785570 Move teletext specific code from stream into libmpcodecs.
cehoyos
parents: 29263
diff changeset
61 #include "libmpcodecs/dec_teletext.h"
17012
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 16962
diff changeset
62 #include "libaf/af_format.h"
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
63 #include "tv.h"
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
64 #include "audio_in.h"
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
65
37126
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
66 // flag introduced in kernel 3.10
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
67 #ifndef V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
68 #define V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC 0x2000
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
69 #endif
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
70
22381
6cabac4d35b5 tv driver loading rework. As a side effect "-tv driver=help" option is
voroshil
parents: 21587
diff changeset
71 #define info tvi_info_v4l2
23883
d65439444b75 Removing global variables from tv://
voroshil
parents: 23423
diff changeset
72 static tvi_handle_t *tvi_init_v4l2(tv_param_t* tv_param);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
73 /* information about this file */
25689
7d5823bd4517 Make all tvi_info_t const
reimar
parents: 25005
diff changeset
74 const tvi_info_t tvi_info_v4l2 = {
22381
6cabac4d35b5 tv driver loading rework. As a side effect "-tv driver=help" option is
voroshil
parents: 21587
diff changeset
75 tvi_init_v4l2,
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
76 "Video 4 Linux 2 input",
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
77 "v4l2",
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
78 "Martin Olschewski <olschewski@zpr.uni-koeln.de>",
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
79 "first try, more to come ;-)"
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
80 };
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
81
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
82 struct map {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
83 struct v4l2_buffer buf;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
84 void *addr;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
85 size_t len;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
86 };
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
87
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
88 #define BUFFER_COUNT 6
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
89
23423
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
90 /** video ringbuffer entry */
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
91 typedef struct {
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
92 unsigned char *data; ///< frame contents
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
93 long long timestamp; ///< frame timestamp
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
94 int framesize; ///< actual frame size
23423
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
95 } video_buffer_entry;
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
96
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
97 /* private data */
31322
016194f71de3 Fix function pointer types in tvi_functions struct
reimar
parents: 29949
diff changeset
98 typedef struct priv {
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
99 /* video */
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
100 char *video_dev;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
101 int video_fd;
23901
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
102 char *vbi_dev;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
103 int vbi_fd;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
104 int vbi_bufsize;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
105 int vbi_shutdown;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
106 pthread_t vbi_grabber_thread;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
107 void *priv_vbi;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
108 int mp_format;
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
109 struct v4l2_capability capability;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
110 struct v4l2_input input;
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
111 struct v4l2_format format;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
112 struct v4l2_standard standard;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
113 struct v4l2_tuner tuner;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
114 struct map *map;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
115 int mapcount;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
116 int frames;
37126
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
117 volatile long long first_frame; ///< number of useconds
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
118 long long curr_frame; ///< usec, using kernel timestamps
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
119 int clk_id; /**< clk_id from clock_gettime
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
120 used in frame timestamps */
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
121 /* audio video interleaving ;-) */
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
122 volatile int streamon;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
123 pthread_t audio_grabber_thread;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
124 pthread_mutex_t skew_mutex;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
125
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
126 /* 2nd level video buffers */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
127 int first;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
128 int immediate_mode;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
129
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
130 int video_buffer_size_max;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
131 volatile int video_buffer_size_current;
23423
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
132 video_buffer_entry *video_ringbuffer;
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
133 volatile int video_head;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
134 volatile int video_tail;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
135 volatile int video_cnt;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
136 pthread_t video_grabber_thread;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
137 pthread_mutex_t video_buffer_mutex;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
138
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
139 /* audio */
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
140 char *audio_dev;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
141 audio_in_t audio_in;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
142
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
143 long long audio_start_time;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
144 int audio_buffer_size;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
145 int aud_skew_cnt;
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
146 unsigned char *audio_ringbuffer;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
147 long long *audio_skew_buffer;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
148 long long *audio_skew_delta_buffer;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
149 volatile int audio_head;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
150 volatile int audio_tail;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
151 volatile int audio_cnt;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
152 volatile long long audio_skew;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
153 volatile double audio_skew_factor;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
154 volatile long long audio_skew_measure_time;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
155 volatile int audio_drop;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
156 volatile int shutdown;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
157
25962
afa125da85cf typo fix: inited --> initialized
diego
parents: 25689
diff changeset
158 int audio_initialized;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
159 double audio_secs_per_block;
15449
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
160 long long audio_usecs_per_block;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
161 long long audio_skew_total;
10653
d9dfbe5e1011 a/v sync improvements
henry
parents: 10538
diff changeset
162 long long audio_skew_delta_total;
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
163 long audio_recv_blocks_total;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
164 long audio_sent_blocks_total;
15449
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
165 pthread_mutex_t audio_mutex;
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
166 int audio_insert_null_samples;
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
167 volatile long audio_null_blocks_inserted;
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
168 volatile long long dropped_frames_timeshift;
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
169 long long dropped_frames_compensated;
23883
d65439444b75 Removing global variables from tv://
voroshil
parents: 23423
diff changeset
170
d65439444b75 Removing global variables from tv://
voroshil
parents: 23423
diff changeset
171 tv_param_t *tv_param;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
172 } priv_t;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
173
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
174 #include "tvi_def.h"
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
175
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
176 static void *audio_grabber(void *data);
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
177 static void *video_grabber(void *data);
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
178
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
179 /**********************************************************************\
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
180
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
181 Only few of the fourccs are the same in v4l2 and mplayer:
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
182
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
183 IMGFMT_YVU9 == V4L2_PIX_FMT_YVU410
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
184 IMGFMT_YV12 == V4L2_PIX_FMT_YVU420
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
185 IMGFMT_NV12 == V4L2_PIX_FMT_NV12
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
186 IMGFMT_422P == V4L2_PIX_FMT_YUV422P
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
187 IMGFMT_411P == V4L2_PIX_FMT_YUV411P
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
188 IMGFMT_UYVY == V4L2_PIX_FMT_UYVY
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
189 IMGFMT_Y41P == V4L2_PIX_FMT_Y41P
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
190
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
191 This may be an useful translation table for some others:
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
192
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
193 IMGFMT_RGB8 == V4L2_PIX_FMT_RGB332
15449
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
194 IMGFMT_BGR15 == V4L2_PIX_FMT_RGB555
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
195 IMGFMT_BGR16 == V4L2_PIX_FMT_RGB565
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
196 IMGFMT_RGB24 == V4L2_PIX_FMT_RGB24
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
197 IMGFMT_RGB32 == V4L2_PIX_FMT_RGB32
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
198 IMGFMT_BGR24 == V4L2_PIX_FMT_BGR24
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
199 IMGFMT_BGR32 == V4L2_PIX_FMT_BGR32
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
200 IMGFMT_Y800 == V4L2_PIX_FMT_GREY
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
201 IMGFMT_IF09 == V4L2_PIX_FMT_YUV410
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
202 IMGFMT_I420 == V4L2_PIX_FMT_YUV420
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
203 IMGFMT_YUY2 == V4L2_PIX_FMT_YUYV
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
204
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
205 \**********************************************************************/
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
206
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
207 /*
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
208 ** Translate a mplayer fourcc to a video4linux2 pixel format.
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
209 */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
210 static int fcc_mp2vl(int fcc)
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
211 {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
212 switch (fcc) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
213 case IMGFMT_RGB8: return V4L2_PIX_FMT_RGB332;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
214 case IMGFMT_BGR15: return V4L2_PIX_FMT_RGB555;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
215 case IMGFMT_BGR16: return V4L2_PIX_FMT_RGB565;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
216 case IMGFMT_RGB24: return V4L2_PIX_FMT_RGB24;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
217 case IMGFMT_RGB32: return V4L2_PIX_FMT_RGB32;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
218 case IMGFMT_BGR24: return V4L2_PIX_FMT_BGR24;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
219 case IMGFMT_BGR32: return V4L2_PIX_FMT_BGR32;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
220 case IMGFMT_Y800: return V4L2_PIX_FMT_GREY;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
221 case IMGFMT_IF09: return V4L2_PIX_FMT_YUV410;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
222 case IMGFMT_I420: return V4L2_PIX_FMT_YUV420;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
223 case IMGFMT_YUY2: return V4L2_PIX_FMT_YUYV;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
224 case IMGFMT_YV12: return V4L2_PIX_FMT_YVU420;
11657
36879e2df6cd UYVY support (port from v4l1)
henry
parents: 10852
diff changeset
225 case IMGFMT_UYVY: return V4L2_PIX_FMT_UYVY;
23423
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
226 case IMGFMT_MJPEG: return V4L2_PIX_FMT_MJPEG;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
227 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
228 return fcc;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
229 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
230
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
231 /*
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
232 ** Translate a video4linux2 fourcc aka pixel format to mplayer.
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
233 */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
234 static int fcc_vl2mp(int fcc)
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
235 {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
236 switch (fcc) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
237 case V4L2_PIX_FMT_RGB332: return IMGFMT_RGB8;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
238 case V4L2_PIX_FMT_RGB555: return IMGFMT_BGR15;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
239 case V4L2_PIX_FMT_RGB565: return IMGFMT_BGR16;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
240 case V4L2_PIX_FMT_RGB24: return IMGFMT_RGB24;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
241 case V4L2_PIX_FMT_RGB32: return IMGFMT_RGB32;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
242 case V4L2_PIX_FMT_BGR24: return IMGFMT_BGR24;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
243 case V4L2_PIX_FMT_BGR32: return IMGFMT_BGR32;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
244 case V4L2_PIX_FMT_GREY: return IMGFMT_Y800;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
245 case V4L2_PIX_FMT_YUV410: return IMGFMT_IF09;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
246 case V4L2_PIX_FMT_YUV420: return IMGFMT_I420;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
247 case V4L2_PIX_FMT_YVU420: return IMGFMT_YV12;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
248 case V4L2_PIX_FMT_YUYV: return IMGFMT_YUY2;
11657
36879e2df6cd UYVY support (port from v4l1)
henry
parents: 10852
diff changeset
249 case V4L2_PIX_FMT_UYVY: return IMGFMT_UYVY;
23423
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
250 case V4L2_PIX_FMT_MJPEG: return IMGFMT_MJPEG;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
251 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
252 return fcc;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
253 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
254
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
255 /*
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
256 ** Translate a video4linux2 fourcc aka pixel format
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
257 ** to a human readable string.
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
258 */
19108
5e767cabf4cd marks several read-only string parameters and function return-values which can only be used read-only as const. Patch by Stefan Huehner, stefan _AT huener-org
reynaldo
parents: 18958
diff changeset
259 static const char *pixfmt2name(int pixfmt)
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
260 {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
261 static char unknown[24];
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
262
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
263 switch (pixfmt) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
264 case V4L2_PIX_FMT_RGB332: return "RGB332";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
265 case V4L2_PIX_FMT_RGB555: return "RGB555";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
266 case V4L2_PIX_FMT_RGB565: return "RGB565";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
267 case V4L2_PIX_FMT_RGB555X: return "RGB555X";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
268 case V4L2_PIX_FMT_RGB565X: return "RGB565X";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
269 case V4L2_PIX_FMT_BGR24: return "BGR24";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
270 case V4L2_PIX_FMT_RGB24: return "RGB24";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
271 case V4L2_PIX_FMT_BGR32: return "BGR32";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
272 case V4L2_PIX_FMT_RGB32: return "RGB32";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
273 case V4L2_PIX_FMT_GREY: return "GREY";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
274 case V4L2_PIX_FMT_YVU410: return "YVU410";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
275 case V4L2_PIX_FMT_YVU420: return "YVU420";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
276 case V4L2_PIX_FMT_YUYV: return "YUYV";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
277 case V4L2_PIX_FMT_UYVY: return "UYVY";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
278 /* case V4L2_PIX_FMT_YVU422P: return "YVU422P"; */
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
279 /* case V4L2_PIX_FMT_YVU411P: return "YVU411P"; */
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
280 case V4L2_PIX_FMT_YUV422P: return "YUV422P";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
281 case V4L2_PIX_FMT_YUV411P: return "YUV411P";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
282 case V4L2_PIX_FMT_Y41P: return "Y41P";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
283 case V4L2_PIX_FMT_NV12: return "NV12";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
284 case V4L2_PIX_FMT_NV21: return "NV21";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
285 case V4L2_PIX_FMT_YUV410: return "YUV410";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
286 case V4L2_PIX_FMT_YUV420: return "YUV420";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
287 case V4L2_PIX_FMT_YYUV: return "YYUV";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
288 case V4L2_PIX_FMT_HI240: return "HI240";
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
289 case V4L2_PIX_FMT_WNVA: return "WNVA";
23423
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
290 case V4L2_PIX_FMT_MJPEG: return "MJPEG";
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
291 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
292 sprintf(unknown, "unknown (0x%x)", pixfmt);
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
293 return unknown;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
294 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
295
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
296
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
297 /*
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
298 ** Gives the depth of a video4linux2 fourcc aka pixel format in bits.
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
299 */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
300 static int pixfmt2depth(int pixfmt)
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
301 {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
302 switch (pixfmt) {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
303 case V4L2_PIX_FMT_RGB332:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
304 return 8;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
305 case V4L2_PIX_FMT_RGB555:
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
306 case V4L2_PIX_FMT_RGB565:
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
307 case V4L2_PIX_FMT_RGB555X:
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
308 case V4L2_PIX_FMT_RGB565X:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
309 return 16;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
310 case V4L2_PIX_FMT_BGR24:
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
311 case V4L2_PIX_FMT_RGB24:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
312 return 24;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
313 case V4L2_PIX_FMT_BGR32:
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
314 case V4L2_PIX_FMT_RGB32:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
315 return 32;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
316 case V4L2_PIX_FMT_GREY:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
317 return 8;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
318 case V4L2_PIX_FMT_YVU410:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
319 return 9;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
320 case V4L2_PIX_FMT_YVU420:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
321 return 12;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
322 case V4L2_PIX_FMT_YUYV:
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
323 case V4L2_PIX_FMT_UYVY:
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
324 case V4L2_PIX_FMT_YUV422P:
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
325 case V4L2_PIX_FMT_YUV411P:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
326 return 16;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
327 case V4L2_PIX_FMT_Y41P:
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
328 case V4L2_PIX_FMT_NV12:
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
329 case V4L2_PIX_FMT_NV21:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
330 return 12;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
331 case V4L2_PIX_FMT_YUV410:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
332 return 9;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
333 case V4L2_PIX_FMT_YUV420:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
334 return 12;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
335 case V4L2_PIX_FMT_YYUV:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
336 return 16;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
337 case V4L2_PIX_FMT_HI240:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
338 return 8;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
339
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
340 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
341 return 0;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
342 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
343
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
344 static int amode2v4l(int amode)
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
345 {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
346 switch (amode) {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
347 case 0:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
348 return V4L2_TUNER_MODE_MONO;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
349 case 1:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
350 return V4L2_TUNER_MODE_STEREO;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
351 case 2:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
352 return V4L2_TUNER_MODE_LANG1;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
353 case 3:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
354 return V4L2_TUNER_MODE_LANG2;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
355 default:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
356 return -1;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
357 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
358 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
359
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
360
27138
62916b06a055 Fix division by zero in tvi_v4l2 which occures when capture device
voroshil
parents: 26756
diff changeset
361 /*
62916b06a055 Fix division by zero in tvi_v4l2 which occures when capture device
voroshil
parents: 26756
diff changeset
362 ** Get current FPS.
62916b06a055 Fix division by zero in tvi_v4l2 which occures when capture device
voroshil
parents: 26756
diff changeset
363 */
62916b06a055 Fix division by zero in tvi_v4l2 which occures when capture device
voroshil
parents: 26756
diff changeset
364 static double getfps(priv_t *priv)
62916b06a055 Fix division by zero in tvi_v4l2 which occures when capture device
voroshil
parents: 26756
diff changeset
365 {
62916b06a055 Fix division by zero in tvi_v4l2 which occures when capture device
voroshil
parents: 26756
diff changeset
366 if (priv->tv_param->fps > 0)
62916b06a055 Fix division by zero in tvi_v4l2 which occures when capture device
voroshil
parents: 26756
diff changeset
367 return priv->tv_param->fps;
62916b06a055 Fix division by zero in tvi_v4l2 which occures when capture device
voroshil
parents: 26756
diff changeset
368 if (priv->standard.frameperiod.denominator && priv->standard.frameperiod.numerator)
62916b06a055 Fix division by zero in tvi_v4l2 which occures when capture device
voroshil
parents: 26756
diff changeset
369 return (double)priv->standard.frameperiod.denominator / priv->standard.frameperiod.numerator;
62916b06a055 Fix division by zero in tvi_v4l2 which occures when capture device
voroshil
parents: 26756
diff changeset
370 return 25.0;
62916b06a055 Fix division by zero in tvi_v4l2 which occures when capture device
voroshil
parents: 26756
diff changeset
371 }
62916b06a055 Fix division by zero in tvi_v4l2 which occures when capture device
voroshil
parents: 26756
diff changeset
372
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
373 // sets and sanitizes audio buffer/block sizes
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
374 static void setup_audio_buffer_sizes(priv_t *priv)
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
375 {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
376 int bytes_per_sample = priv->audio_in.bytes_per_sample;
27138
62916b06a055 Fix division by zero in tvi_v4l2 which occures when capture device
voroshil
parents: 26756
diff changeset
377 int seconds = priv->video_buffer_size_max/getfps(priv);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
378
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
379 if (seconds < 5) seconds = 5;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
380 if (seconds > 500) seconds = 500;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
381
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
382 // make the audio buffer at least as the video buffer capacity (or 5 seconds) long
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
383 priv->audio_buffer_size = 1 + seconds*priv->audio_in.samplerate
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
384 *priv->audio_in.channels
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
385 *bytes_per_sample/priv->audio_in.blocksize;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
386 if (priv->audio_buffer_size < 256) priv->audio_buffer_size = 256;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
387
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
388 // make the skew buffer at least 1 second long
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
389 priv->aud_skew_cnt = 1 + 1*priv->audio_in.samplerate
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
390 *priv->audio_in.channels
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
391 *bytes_per_sample/priv->audio_in.blocksize;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
392 if (priv->aud_skew_cnt < 16) priv->aud_skew_cnt = 16;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
393
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
394 mp_msg(MSGT_TV, MSGL_V, "Audio capture - buffer %d blocks of %d bytes, skew average from %d meas.\n",
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
395 priv->audio_buffer_size, priv->audio_in.blocksize, priv->aud_skew_cnt);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
396 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
397
15464
a57ec42d7df1 do not modify tv_param_noaudio
henry
parents: 15462
diff changeset
398 static void init_audio(priv_t *priv)
a57ec42d7df1 do not modify tv_param_noaudio
henry
parents: 15462
diff changeset
399 {
25962
afa125da85cf typo fix: inited --> initialized
diego
parents: 25689
diff changeset
400 if (priv->audio_initialized) return;
15464
a57ec42d7df1 do not modify tv_param_noaudio
henry
parents: 15462
diff changeset
401
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
402 if (!priv->tv_param->noaudio) {
27390
9d95dc936e66 Introduce CONFIG_ALSA preprocessor directive for ALSA 0.9 and 1.x.
diego
parents: 27387
diff changeset
403 #ifdef CONFIG_ALSA
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
404 if (priv->tv_param->alsa)
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
405 audio_in_init(&priv->audio_in, AUDIO_IN_ALSA);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
406 else
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
407 audio_in_init(&priv->audio_in, AUDIO_IN_OSS);
15464
a57ec42d7df1 do not modify tv_param_noaudio
henry
parents: 15462
diff changeset
408 #else
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
409 audio_in_init(&priv->audio_in, AUDIO_IN_OSS);
15464
a57ec42d7df1 do not modify tv_param_noaudio
henry
parents: 15462
diff changeset
410 #endif
a57ec42d7df1 do not modify tv_param_noaudio
henry
parents: 15462
diff changeset
411
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
412 if (priv->audio_dev) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
413 audio_in_set_device(&priv->audio_in, priv->audio_dev);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
414 }
15464
a57ec42d7df1 do not modify tv_param_noaudio
henry
parents: 15462
diff changeset
415
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
416 audio_in_set_samplerate(&priv->audio_in, 44100);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
417 if (priv->capability.capabilities & V4L2_CAP_TUNER) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
418 if (priv->tuner.audmode == V4L2_TUNER_MODE_STEREO) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
419 audio_in_set_channels(&priv->audio_in, 2);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
420 } else {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
421 audio_in_set_channels(&priv->audio_in, 1);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
422 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
423 } else {
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
424 if (priv->tv_param->forcechan >= 0) {
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
425 audio_in_set_channels(&priv->audio_in, priv->tv_param->forcechan);
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
426 } else {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
427 audio_in_set_channels(&priv->audio_in, 2);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
428 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
429 }
15464
a57ec42d7df1 do not modify tv_param_noaudio
henry
parents: 15462
diff changeset
430
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
431 if (audio_in_setup(&priv->audio_in) < 0) return;
15464
a57ec42d7df1 do not modify tv_param_noaudio
henry
parents: 15462
diff changeset
432
25962
afa125da85cf typo fix: inited --> initialized
diego
parents: 25689
diff changeset
433 priv->audio_initialized = 1;
15464
a57ec42d7df1 do not modify tv_param_noaudio
henry
parents: 15462
diff changeset
434 }
a57ec42d7df1 do not modify tv_param_noaudio
henry
parents: 15462
diff changeset
435 }
a57ec42d7df1 do not modify tv_param_noaudio
henry
parents: 15462
diff changeset
436
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
437 #if 0
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
438 /*
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
439 ** the number of milliseconds elapsed between time0 and time1
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
440 */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
441 static size_t difftv(struct timeval time1, struct timeval time0)
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
442 {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
443 return (time1.tv_sec - time0.tv_sec) * 1000 +
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
444 (time1.tv_usec - time0.tv_usec) / 1000;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
445 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
446 #endif
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
447
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
448 /*
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
449 ** Get current video capture format.
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
450 */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
451 static int getfmt(priv_t *priv)
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
452 {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
453 int i;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
454
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
455 priv->format.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
456 if ((i = ioctl(priv->video_fd, VIDIOC_G_FMT, &priv->format)) < 0) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
457 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl get format failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
458 info.short_name, strerror(errno));
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
459 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
460 return i;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
461 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
462
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
463
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
464 /*
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
465 ** Get current video capture standard.
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
466 */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
467 static int getstd(priv_t *priv)
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
468 {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
469 v4l2_std_id id;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
470 int i=0;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
471
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
472 if (ioctl(priv->video_fd, VIDIOC_G_STD, &id) < 0) {
27139
0917bf2bed6c Try to get frame rate information through VIDIOC_G_PARM if
voroshil
parents: 27138
diff changeset
473 struct v4l2_streamparm parm;
0917bf2bed6c Try to get frame rate information through VIDIOC_G_PARM if
voroshil
parents: 27138
diff changeset
474
0917bf2bed6c Try to get frame rate information through VIDIOC_G_PARM if
voroshil
parents: 27138
diff changeset
475 parm.type=V4L2_BUF_TYPE_VIDEO_CAPTURE;
0917bf2bed6c Try to get frame rate information through VIDIOC_G_PARM if
voroshil
parents: 27138
diff changeset
476 if(ioctl(priv->video_fd, VIDIOC_G_PARM, &parm) >= 0) {
0917bf2bed6c Try to get frame rate information through VIDIOC_G_PARM if
voroshil
parents: 27138
diff changeset
477 mp_msg(MSGT_TV, MSGL_WARN, "%s: your device driver does not support VIDIOC_G_STD ioctl,"
0917bf2bed6c Try to get frame rate information through VIDIOC_G_PARM if
voroshil
parents: 27138
diff changeset
478 " VIDIOC_G_PARM was used instead.\n", info.short_name);
0917bf2bed6c Try to get frame rate information through VIDIOC_G_PARM if
voroshil
parents: 27138
diff changeset
479 priv->standard.index=0;
0917bf2bed6c Try to get frame rate information through VIDIOC_G_PARM if
voroshil
parents: 27138
diff changeset
480 priv->standard.id=0;
0917bf2bed6c Try to get frame rate information through VIDIOC_G_PARM if
voroshil
parents: 27138
diff changeset
481 priv->standard.frameperiod=parm.parm.capture.timeperframe;
0917bf2bed6c Try to get frame rate information through VIDIOC_G_PARM if
voroshil
parents: 27138
diff changeset
482 return 0;
0917bf2bed6c Try to get frame rate information through VIDIOC_G_PARM if
voroshil
parents: 27138
diff changeset
483 }
0917bf2bed6c Try to get frame rate information through VIDIOC_G_PARM if
voroshil
parents: 27138
diff changeset
484
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
485 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl get standard failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
486 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
487 return -1;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
488 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
489 do {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
490 priv->standard.index = i++;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
491 if (ioctl(priv->video_fd, VIDIOC_ENUMSTD, &priv->standard) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
492 return -1;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
493 }
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
494 } while (priv->standard.id != id);
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
495 return 0;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
496 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
497
37127
ca7e13830a05 Allow building of v4l2 without clock_gettime().
iive
parents: 37126
diff changeset
498 #if HAVE_CLOCK_GETTIME
37126
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
499 /*
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
500 ** Gets current timestamp, using specified clock id.
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
501 ** @return number of microseconds.
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
502 */
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
503 static long long get_curr_timestamp(int clk_id)
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
504 {
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
505 struct timespec ts;
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
506 clock_gettime(clk_id, &ts);
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
507 return (long long)ts.tv_sec * 1000000 + ts.tv_nsec / 1000;
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
508 }
37127
ca7e13830a05 Allow building of v4l2 without clock_gettime().
iive
parents: 37126
diff changeset
509 #else
ca7e13830a05 Allow building of v4l2 without clock_gettime().
iive
parents: 37126
diff changeset
510 /*
ca7e13830a05 Allow building of v4l2 without clock_gettime().
iive
parents: 37126
diff changeset
511 ** Gets current timestamp, using system time.
ca7e13830a05 Allow building of v4l2 without clock_gettime().
iive
parents: 37126
diff changeset
512 ** @return number of microseconds.
ca7e13830a05 Allow building of v4l2 without clock_gettime().
iive
parents: 37126
diff changeset
513 */
ca7e13830a05 Allow building of v4l2 without clock_gettime().
iive
parents: 37126
diff changeset
514 static long long get_curr_timestamp(int clk_id)
ca7e13830a05 Allow building of v4l2 without clock_gettime().
iive
parents: 37126
diff changeset
515 {
ca7e13830a05 Allow building of v4l2 without clock_gettime().
iive
parents: 37126
diff changeset
516 struct timeval tv;
ca7e13830a05 Allow building of v4l2 without clock_gettime().
iive
parents: 37126
diff changeset
517 gettimeofday(&tv, NULL);
ca7e13830a05 Allow building of v4l2 without clock_gettime().
iive
parents: 37126
diff changeset
518 return (long long)tv.tv_sec * 1000000 + tv.tv_usec;
ca7e13830a05 Allow building of v4l2 without clock_gettime().
iive
parents: 37126
diff changeset
519 }
ca7e13830a05 Allow building of v4l2 without clock_gettime().
iive
parents: 37126
diff changeset
520 #endif
37126
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
521
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
522 /***********************************************************************\
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
523 * *
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
524 * *
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
525 * Interface to mplayer *
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
526 * *
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
527 * *
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
528 \***********************************************************************/
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
529
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
530 static int set_mute(priv_t *priv, int value)
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
531 {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
532 struct v4l2_control control;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
533 control.id = V4L2_CID_AUDIO_MUTE;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
534 control.value = value;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
535 if (ioctl(priv->video_fd, VIDIOC_S_CTRL, &control) < 0) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
536 mp_msg(MSGT_TV,MSGL_ERR,"%s: ioctl set mute failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
537 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
538 return 0;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
539 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
540 return 1;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
541 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
542
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
543 /*
12860
03d3ab9f6400 embarassing typo
diego
parents: 12380
diff changeset
544 ** MPlayer uses values from -100 up to 100 for controls.
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
545 ** Here they are scaled to what the tv card needs and applied.
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
546 */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
547 static int set_control(priv_t *priv, struct v4l2_control *control, int val_signed) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
548 struct v4l2_queryctrl qctrl;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
549 qctrl.id = control->id;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
550 if (ioctl(priv->video_fd, VIDIOC_QUERYCTRL, &qctrl) < 0) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
551 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl query control failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
552 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
553 return TVI_CONTROL_FALSE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
554 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
555
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
556 if (val_signed) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
557 if (control->value < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
558 control->value = qctrl.default_value + control->value *
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
559 (qctrl.default_value - qctrl.minimum) / 100;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
560 } else {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
561 control->value = qctrl.default_value + control->value *
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
562 (qctrl.maximum - qctrl.default_value) / 100;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
563 }
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
564 } else {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
565 if (control->value < 50) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
566 control->value = qctrl.default_value + (control->value-50) *
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
567 (qctrl.default_value - qctrl.minimum) / 50;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
568 } else {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
569 control->value = qctrl.default_value + (control->value-50) *
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
570 (qctrl.maximum - qctrl.default_value) / 50;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
571 }
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
572 }
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
573
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
574
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
575 if (ioctl(priv->video_fd, VIDIOC_S_CTRL, control) < 0) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
576 mp_msg(MSGT_TV, MSGL_ERR,"%s: ioctl set %s %d failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
577 info.short_name, qctrl.name, control->value, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
578 return TVI_CONTROL_FALSE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
579 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
580 mp_msg(MSGT_TV, MSGL_V, "%s: set %s: %d [%d, %d]\n", info.short_name,
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
581 qctrl.name, control->value, qctrl.minimum, qctrl.maximum);
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
582
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
583 return TVI_CONTROL_TRUE;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
584 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
585
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
586
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
587 /*
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
588 ** Scale the control values back to what mplayer needs.
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
589 */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
590 static int get_control(priv_t *priv, struct v4l2_control *control, int val_signed) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
591 struct v4l2_queryctrl qctrl;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
592
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
593 qctrl.id = control->id;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
594 if (ioctl(priv->video_fd, VIDIOC_QUERYCTRL, &qctrl) < 0) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
595 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl query control failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
596 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
597 return TVI_CONTROL_FALSE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
598 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
599
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
600 if (ioctl(priv->video_fd, VIDIOC_G_CTRL, control) < 0) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
601 mp_msg(MSGT_TV, MSGL_ERR,"%s: ioctl get %s failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
602 info.short_name, qctrl.name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
603 return TVI_CONTROL_FALSE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
604 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
605 mp_msg(MSGT_TV, MSGL_V, "%s: get %s: %d [%d, %d]\n", info.short_name,
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
606 qctrl.name, control->value, qctrl.minimum, qctrl.maximum);
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
607
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
608 if (val_signed) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
609 if (control->value < qctrl.default_value) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
610 control->value = (control->value - qctrl.default_value) * 100 /
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
611 (qctrl.default_value - qctrl.minimum);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
612 } else {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
613 control->value = (control->value - qctrl.default_value) * 100 /
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
614 (qctrl.maximum - qctrl.default_value);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
615 }
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
616 } else {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
617 if (control->value < qctrl.default_value) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
618 control->value = (control->value - qctrl.default_value) * 50 /
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
619 (qctrl.default_value - qctrl.minimum) + 50;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
620 } else {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
621 control->value = (control->value - qctrl.default_value) * 50 /
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
622 (qctrl.maximum - qctrl.default_value) + 50;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
623 }
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
624 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
625
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
626 return TVI_CONTROL_TRUE;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
627 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
628
23901
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
629 static int vbi_init(priv_t* priv,char* device)
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
630 {
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
631 int vbi_fd=0;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
632 struct v4l2_capability cap;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
633 struct v4l2_format fmt;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
634 int res;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
635
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
636 if(!device)
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
637 return TVI_CONTROL_FALSE;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
638
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
639 priv->vbi_dev=strdup(device);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
640
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
641 vbi_fd=open(priv->vbi_dev,O_RDWR);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
642 if(vbi_fd<0){
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
643 mp_msg(MSGT_TV,MSGL_ERR,"vbi: could not open device %s\n",priv->vbi_dev);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
644 return TVI_CONTROL_FALSE;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
645 }
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
646
23901
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
647 if(ioctl(vbi_fd,VIDIOC_QUERYCAP,&cap)<0){
31834
64ba1daa147a various spelling fixes, found by the Debian QA tool 'lintian'
siretart
parents: 31322
diff changeset
648 mp_msg(MSGT_TV,MSGL_ERR,"vbi: Query capabilities failed for %s\n",priv->vbi_dev);
23901
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
649 close(vbi_fd);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
650 return TVI_CONTROL_FALSE;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
651 }
29949
fc8f901ee516 100l, fix check for V4L2 capture capability flag.
reimar
parents: 29809
diff changeset
652 if(!(cap.capabilities & V4L2_CAP_VBI_CAPTURE)){
23901
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
653 mp_msg(MSGT_TV,MSGL_ERR,"vbi: %s does not support VBI capture\n",priv->vbi_dev);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
654 close(vbi_fd);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
655 return TVI_CONTROL_FALSE;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
656 }
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
657
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
658 memset(&fmt,0,sizeof(struct v4l2_format));
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
659 fmt.type=V4L2_BUF_TYPE_VBI_CAPTURE;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
660 if((res=ioctl(vbi_fd,VIDIOC_G_FMT,&fmt))<0){
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
661 mp_msg(MSGT_TV,MSGL_ERR,"vbi: Query format failed: %x\n",res);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
662 close(vbi_fd);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
663 return TVI_CONTROL_FALSE;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
664 }
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
665 if(fmt.fmt.vbi.sample_format!=V4L2_PIX_FMT_GREY){
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
666 mp_msg(MSGT_TV,MSGL_ERR,"vbi: format 0x%x is not supported\n",fmt.fmt.vbi.sample_format);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
667 close(vbi_fd);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
668 return TVI_CONTROL_FALSE;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
669 }
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
670 priv->vbi_fd=vbi_fd;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
671 mp_msg(MSGT_TV,MSGL_DBG3,"vbi: init ok\n");
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
672 return TVI_CONTROL_TRUE;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
673 }
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
674
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
675 static int vbi_get_props(priv_t* priv,tt_stream_props* ptsp)
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
676 {
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
677 struct v4l2_format fmt;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
678 int res;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
679 if(!priv || !ptsp)
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
680 return TVI_CONTROL_FALSE;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
681
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
682 memset(&fmt,0,sizeof(struct v4l2_format));
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
683 fmt.type=V4L2_BUF_TYPE_VBI_CAPTURE;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
684 if((res=ioctl(priv->vbi_fd,VIDIOC_G_FMT,&fmt))<0){
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
685 mp_msg(MSGT_TV,MSGL_ERR,"vbi_get_props: Query format failed: %x\n",res);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
686 return TVI_CONTROL_FALSE;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
687 }
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
688
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
689 ptsp->interlaced=(fmt.fmt.vbi.flags& V4L2_VBI_INTERLACED?1:0);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
690
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
691 ptsp->offset=fmt.fmt.vbi.offset;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
692 ptsp->sampling_rate=fmt.fmt.vbi.sampling_rate;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
693 ptsp->samples_per_line=fmt.fmt.vbi.samples_per_line,
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
694
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
695 ptsp->count[0]=fmt.fmt.vbi.count[0];
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
696 ptsp->count[1]=fmt.fmt.vbi.count[1];
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
697 ptsp->bufsize = ptsp->samples_per_line * (ptsp->count[0] + ptsp->count[1]);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
698
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
699 mp_msg(MSGT_TV,MSGL_V,"vbi_get_props: sampling_rate=%d,offset:%d,samples_per_line: %d\n interlaced:%s, count=[%d,%d]\n",
23901
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
700 ptsp->sampling_rate,
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
701 ptsp->offset,
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
702 ptsp->samples_per_line,
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
703 ptsp->interlaced?"Yes":"No",
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
704 ptsp->count[0],
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
705 ptsp->count[1]);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
706
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
707 return TVI_CONTROL_TRUE;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
708 }
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
709
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
710 static void *vbi_grabber(void *data)
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
711 {
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
712 priv_t *priv = (priv_t *) data;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
713 int bytes,seq,prev_seq;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
714 unsigned char* buf;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
715 tt_stream_props tsp;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
716
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
717 if(!priv->priv_vbi){
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
718 mp_msg(MSGT_TV,MSGL_WARN,"vbi: vbi not initialized. stopping thread.\n");
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
719 return NULL;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
720 }
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
721
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
722 if(vbi_get_props(priv,&tsp)!=TVI_CONTROL_TRUE)
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
723 return NULL;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
724
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
725 buf=malloc(tsp.bufsize);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
726 seq=0;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
727 prev_seq=0;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
728 mp_msg(MSGT_TV,MSGL_V,"vbi: vbi capture thread started.\n");
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
729
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
730 while (!priv->vbi_shutdown){
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
731 bytes=read(priv->vbi_fd,buf,tsp.bufsize);
24763
5d7f6e5e0847 After receiving EINTR 'read' syscall should be restarted.
voroshil
parents: 24553
diff changeset
732 if(bytes<0 && errno==EINTR)
5d7f6e5e0847 After receiving EINTR 'read' syscall should be restarted.
voroshil
parents: 24553
diff changeset
733 continue;
23901
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
734 if (bytes!=tsp.bufsize){
23979
33928da6ba62 Added missing newline.
cehoyos
parents: 23901
diff changeset
735 mp_msg(MSGT_TV,MSGL_WARN,"vbi: expecting bytes: %d, got: %d\n",tsp.bufsize,bytes);
23901
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
736 break;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
737 }
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
738 seq=*(int*)(buf+bytes-4);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
739 if(seq<=1) continue;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
740 if (prev_seq && seq!=prev_seq+1){
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
741 prev_seq=0;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
742 seq=0;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
743 }
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
744 prev_seq=seq;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
745 teletext_control(priv->priv_vbi,TV_VBI_CONTROL_DECODE_PAGE,&buf);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
746 mp_msg(MSGT_TV,MSGL_DBG3,"grabber: seq:%d\n",seq);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
747 }
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
748 free(buf);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
749 return NULL;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
750 }
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
751
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
752 static int control(priv_t *priv, int cmd, void *arg)
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
753 {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
754 struct v4l2_control control;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
755 struct v4l2_frequency frequency;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
756
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
757 switch(cmd) {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
758 case TVI_CONTROL_IS_VIDEO:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
759 return priv->capability.capabilities & V4L2_CAP_VIDEO_CAPTURE?
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
760 TVI_CONTROL_TRUE: TVI_CONTROL_FALSE;
17765
7bf483eaa99a If we have a tuner, use that as a reason we have audio support, and do
aurel
parents: 17626
diff changeset
761 case TVI_CONTROL_IS_AUDIO:
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
762 if (priv->tv_param->force_audio) return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
763 case TVI_CONTROL_IS_TUNER:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
764 return priv->capability.capabilities & V4L2_CAP_TUNER?
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
765 TVI_CONTROL_TRUE: TVI_CONTROL_FALSE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
766 case TVI_CONTROL_IMMEDIATE:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
767 priv->immediate_mode = 1;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
768 return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
769 case TVI_CONTROL_VID_GET_FPS:
32668
cb671a73f3a3 Use getfps helper function everywhere, simplifies code and avoids a possible division by 0.
reimar
parents: 32511
diff changeset
770 *(float *)arg = getfps(priv);
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
771 mp_msg(MSGT_TV, MSGL_V, "%s: get fps: %f\n", info.short_name,
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
772 *(float *)arg);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
773 return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
774 case TVI_CONTROL_VID_GET_BITS:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
775 if (getfmt(priv) < 0) return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
776 *(int *)arg = pixfmt2depth(priv->format.fmt.pix.pixelformat);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
777 mp_msg(MSGT_TV, MSGL_V, "%s: get depth: %d\n", info.short_name,
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
778 *(int *)arg);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
779 return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
780 case TVI_CONTROL_VID_GET_FORMAT:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
781 if (getfmt(priv) < 0) return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
782 *(int *)arg = fcc_vl2mp(priv->format.fmt.pix.pixelformat);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
783 mp_msg(MSGT_TV, MSGL_V, "%s: get format: %s\n", info.short_name,
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
784 pixfmt2name(priv->format.fmt.pix.pixelformat));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
785 return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
786 case TVI_CONTROL_VID_SET_FORMAT:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
787 if (getfmt(priv) < 0) return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
788 priv->format.fmt.pix.pixelformat = fcc_mp2vl(*(int *)arg);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
789 priv->format.fmt.pix.field = V4L2_FIELD_ANY;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
790
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
791 priv->mp_format = *(int *)arg;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
792 mp_msg(MSGT_TV, MSGL_V, "%s: set format: %s\n", info.short_name,
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
793 pixfmt2name(priv->format.fmt.pix.pixelformat));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
794 if (ioctl(priv->video_fd, VIDIOC_S_FMT, &priv->format) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
795 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl set format failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
796 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
797 return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
798 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
799 /* according to the v4l2 specs VIDIOC_S_FMT should not fail, inflexible drivers
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
800 might even always return the default parameters -> update the format here*/
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
801 priv->mp_format = fcc_vl2mp(priv->format.fmt.pix.pixelformat);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
802 return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
803 case TVI_CONTROL_VID_GET_WIDTH:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
804 if (getfmt(priv) < 0) return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
805 *(int *)arg = priv->format.fmt.pix.width;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
806 mp_msg(MSGT_TV, MSGL_V, "%s: get width: %d\n", info.short_name,
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
807 *(int *)arg);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
808 return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
809 case TVI_CONTROL_VID_CHK_WIDTH:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
810 return TVI_CONTROL_TRUE;
28940
7406e7f30d4e Add TVI_CONTROL_VID_SET_WIDTH_HEIGHT to set width and height together for v4l2,
reimar
parents: 28927
diff changeset
811 case TVI_CONTROL_VID_SET_WIDTH_HEIGHT:
7406e7f30d4e Add TVI_CONTROL_VID_SET_WIDTH_HEIGHT to set width and height together for v4l2,
reimar
parents: 28927
diff changeset
812 if (getfmt(priv) < 0) return TVI_CONTROL_FALSE;
7406e7f30d4e Add TVI_CONTROL_VID_SET_WIDTH_HEIGHT to set width and height together for v4l2,
reimar
parents: 28927
diff changeset
813 priv->format.fmt.pix.width = ((int *)arg)[0];
7406e7f30d4e Add TVI_CONTROL_VID_SET_WIDTH_HEIGHT to set width and height together for v4l2,
reimar
parents: 28927
diff changeset
814 priv->format.fmt.pix.height = ((int *)arg)[1];
7406e7f30d4e Add TVI_CONTROL_VID_SET_WIDTH_HEIGHT to set width and height together for v4l2,
reimar
parents: 28927
diff changeset
815 priv->format.fmt.pix.field = V4L2_FIELD_ANY;
7406e7f30d4e Add TVI_CONTROL_VID_SET_WIDTH_HEIGHT to set width and height together for v4l2,
reimar
parents: 28927
diff changeset
816 if (ioctl(priv->video_fd, VIDIOC_S_FMT, &priv->format) < 0)
7406e7f30d4e Add TVI_CONTROL_VID_SET_WIDTH_HEIGHT to set width and height together for v4l2,
reimar
parents: 28927
diff changeset
817 return TVI_CONTROL_FALSE;
7406e7f30d4e Add TVI_CONTROL_VID_SET_WIDTH_HEIGHT to set width and height together for v4l2,
reimar
parents: 28927
diff changeset
818 return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
819 case TVI_CONTROL_VID_SET_WIDTH:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
820 if (getfmt(priv) < 0) return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
821 priv->format.fmt.pix.width = *(int *)arg;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
822 mp_msg(MSGT_TV, MSGL_V, "%s: set width: %d\n", info.short_name,
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
823 *(int *)arg);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
824 if (ioctl(priv->video_fd, VIDIOC_S_FMT, &priv->format) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
825 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl set width failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
826 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
827 return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
828 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
829 return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
830 case TVI_CONTROL_VID_GET_HEIGHT:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
831 if (getfmt(priv) < 0) return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
832 *(int *)arg = priv->format.fmt.pix.height;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
833 mp_msg(MSGT_TV, MSGL_V, "%s: get height: %d\n", info.short_name,
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
834 *(int *)arg);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
835 return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
836 case TVI_CONTROL_VID_CHK_HEIGHT:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
837 return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
838 case TVI_CONTROL_VID_SET_HEIGHT:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
839 if (getfmt(priv) < 0) return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
840 priv->format.fmt.pix.height = *(int *)arg;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
841 priv->format.fmt.pix.field = V4L2_FIELD_ANY;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
842 mp_msg(MSGT_TV, MSGL_V, "%s: set height: %d\n", info.short_name,
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
843 *(int *)arg);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
844 if (ioctl(priv->video_fd, VIDIOC_S_FMT, &priv->format) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
845 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl set height failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
846 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
847 return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
848 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
849 return TVI_CONTROL_TRUE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
850 case TVI_CONTROL_VID_GET_BRIGHTNESS:
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
851 control.id = V4L2_CID_BRIGHTNESS;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
852 if (get_control(priv, &control, 1) == TVI_CONTROL_TRUE) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
853 *(int *)arg = control.value;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
854 return TVI_CONTROL_TRUE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
855 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
856 return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
857 case TVI_CONTROL_VID_SET_BRIGHTNESS:
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
858 control.id = V4L2_CID_BRIGHTNESS;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
859 control.value = *(int *)arg;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
860 return set_control(priv, &control, 1);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
861 case TVI_CONTROL_VID_GET_HUE:
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
862 control.id = V4L2_CID_HUE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
863 if (get_control(priv, &control, 1) == TVI_CONTROL_TRUE) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
864 *(int *)arg = control.value;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
865 return TVI_CONTROL_TRUE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
866 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
867 return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
868 case TVI_CONTROL_VID_SET_HUE:
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
869 control.id = V4L2_CID_HUE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
870 control.value = *(int *)arg;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
871 return set_control(priv, &control, 1);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
872 case TVI_CONTROL_VID_GET_SATURATION:
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
873 control.id = V4L2_CID_SATURATION;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
874 if (get_control(priv, &control, 1) == TVI_CONTROL_TRUE) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
875 *(int *)arg = control.value;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
876 return TVI_CONTROL_TRUE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
877 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
878 return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
879 case TVI_CONTROL_VID_SET_SATURATION:
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
880 control.id = V4L2_CID_SATURATION;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
881 control.value = *(int *)arg;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
882 return set_control(priv, &control, 1);
24553
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
883 case TVI_CONTROL_VID_GET_GAIN:
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
884 {
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
885
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
886 control.id = V4L2_CID_AUTOGAIN;
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
887 if(get_control(priv,&control,0)!=TVI_CONTROL_TRUE)
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
888 return TVI_CONTROL_FALSE;
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
889
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
890 if(control.value){ //Auto Gain control is enabled
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
891 *(int*)arg=0;
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
892 return TVI_CONTROL_TRUE;
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
893 }
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
894
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
895 //Manual Gain control
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
896 control.id = V4L2_CID_GAIN;
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
897 if(get_control(priv,&control,0)!=TVI_CONTROL_TRUE)
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
898 return TVI_CONTROL_FALSE;
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
899
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
900 *(int*)arg=control.value?control.value:1;
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
901
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
902 return TVI_CONTROL_TRUE;
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
903 }
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
904 case TVI_CONTROL_VID_SET_GAIN:
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
905 {
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
906 //value==0 means automatic gain control
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
907 int value=*(int*)arg;
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
908
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
909 if (value < 0 || value>100)
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
910 return TVI_CONTROL_FALSE;
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
911
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
912 control.id=value?V4L2_CID_GAIN:V4L2_CID_AUTOGAIN;
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
913 control.value=value?value:1;
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
914
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
915 return set_control(priv,&control,0);
d6bba2781d01 Implement setting gain control for video devices (usually webcams)
voroshil
parents: 24346
diff changeset
916 }
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
917 case TVI_CONTROL_VID_GET_CONTRAST:
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
918 control.id = V4L2_CID_CONTRAST;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
919 if (get_control(priv, &control, 1) == TVI_CONTROL_TRUE) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
920 *(int *)arg = control.value;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
921 return TVI_CONTROL_TRUE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
922 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
923 return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
924 case TVI_CONTROL_VID_SET_CONTRAST:
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
925 control.id = V4L2_CID_CONTRAST;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
926 control.value = *(int *)arg;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
927 return set_control(priv, &control, 1);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
928 case TVI_CONTROL_TUN_GET_FREQ:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
929 frequency.tuner = 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
930 frequency.type = V4L2_TUNER_ANALOG_TV;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
931 if (ioctl(priv->video_fd, VIDIOC_G_FREQUENCY, &frequency) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
932 mp_msg(MSGT_TV,MSGL_ERR,"%s: ioctl get frequency failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
933 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
934 return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
935 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
936 *(int *)arg = frequency.frequency;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
937 return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
938 case TVI_CONTROL_TUN_SET_FREQ:
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
939 #if 0
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
940 set_mute(priv, 1);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
941 usleep(100000); // wait to suppress noise during switching
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
942 #endif
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
943 frequency.tuner = 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
944 frequency.type = V4L2_TUNER_ANALOG_TV;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
945 frequency.frequency = *(int *)arg;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
946 if (ioctl(priv->video_fd, VIDIOC_S_FREQUENCY, &frequency) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
947 mp_msg(MSGT_TV,MSGL_ERR,"%s: ioctl set frequency failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
948 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
949 return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
950 }
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
951 #if 0
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
952 usleep(100000); // wait to suppress noise during switching
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
953 set_mute(priv, 0);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
954 #endif
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
955 return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
956 case TVI_CONTROL_TUN_GET_TUNER:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
957 mp_msg(MSGT_TV, MSGL_V, "%s: get tuner\n",info.short_name);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
958 if (ioctl(priv->video_fd, VIDIOC_G_TUNER, &priv->tuner) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
959 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl get tuner failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
960 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
961 return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
962 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
963 return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
964 case TVI_CONTROL_TUN_SET_TUNER:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
965 mp_msg(MSGT_TV, MSGL_V, "%s: set tuner\n",info.short_name);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
966 if (ioctl(priv->video_fd, VIDIOC_S_TUNER, &priv->tuner) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
967 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl set tuner failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
968 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
969 return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
970 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
971 return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
972 case TVI_CONTROL_TUN_GET_NORM:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
973 *(int *)arg = priv->standard.index;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
974 return TVI_CONTROL_TRUE;
24105
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23979
diff changeset
975 case TVI_CONTROL_TUN_GET_SIGNAL:
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23979
diff changeset
976 if (ioctl(priv->video_fd, VIDIOC_G_TUNER, &priv->tuner) < 0) {
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23979
diff changeset
977 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl get tuner failed: %s\n",
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23979
diff changeset
978 info.short_name, strerror(errno));
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23979
diff changeset
979 return TVI_CONTROL_FALSE;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23979
diff changeset
980 }
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23979
diff changeset
981 *(int*)arg=100*(priv->tuner.signal>>8)/255;
9e71e0345c35 Automatic TV channels scanning ability for MPlayer.
voroshil
parents: 23979
diff changeset
982 return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
983 case TVI_CONTROL_TUN_SET_NORM:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
984 priv->standard.index = *(int *)arg;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
985 if (ioctl(priv->video_fd, VIDIOC_ENUMSTD, &priv->standard) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
986 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl enum norm failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
987 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
988 return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
989 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
990 mp_msg(MSGT_TV, MSGL_V, "%s: set norm: %s\n", info.short_name, priv->standard.name);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
991 if (ioctl(priv->video_fd, VIDIOC_S_STD, &priv->standard.id) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
992 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl set norm failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
993 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
994 return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
995 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
996 return TVI_CONTROL_TRUE;
13978
2a9afbfc79d7 setting the norm using text ID instead of numeric
henry
parents: 12860
diff changeset
997 case TVI_CONTROL_SPC_GET_NORMID:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
998 {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
999 int i;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1000 for (i = 0;; i++) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1001 struct v4l2_standard standard;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1002 memset(&standard, 0, sizeof(standard));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1003 standard.index = i;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1004 if (-1 == ioctl(priv->video_fd, VIDIOC_ENUMSTD, &standard))
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1005 return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1006 if (!strcasecmp(standard.name, (char *)arg)) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1007 *(int *)arg = i;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1008 return TVI_CONTROL_TRUE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1009 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1010 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1011 return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1012 }
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1013 case TVI_CONTROL_SPC_GET_INPUT:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1014 if (ioctl(priv->video_fd, VIDIOC_G_INPUT, (int *)arg) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1015 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl get input failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1016 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1017 return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1018 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1019 return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1020 case TVI_CONTROL_SPC_SET_INPUT:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1021 mp_msg(MSGT_TV, MSGL_V, "%s: set input: %d\n", info.short_name, *(int *)arg);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1022 priv->input.index = *(int *)arg;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1023 if (ioctl(priv->video_fd, VIDIOC_ENUMINPUT, &priv->input) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1024 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl enum input failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1025 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1026 return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1027 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1028 if (ioctl(priv->video_fd, VIDIOC_S_INPUT, (int *)arg) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1029 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl set input failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1030 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1031 return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1032 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1033 return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1034 case TVI_CONTROL_AUD_GET_FORMAT:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1035 init_audio(priv);
25962
afa125da85cf typo fix: inited --> initialized
diego
parents: 25689
diff changeset
1036 if (!priv->audio_initialized) return TVI_CONTROL_FALSE;
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1037 *(int *)arg = AF_FORMAT_S16_LE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1038 mp_msg(MSGT_TV, MSGL_V, "%s: get audio format: %d\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1039 info.short_name, *(int *)arg);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1040 return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1041 case TVI_CONTROL_AUD_GET_SAMPLERATE:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1042 init_audio(priv);
25962
afa125da85cf typo fix: inited --> initialized
diego
parents: 25689
diff changeset
1043 if (!priv->audio_initialized) return TVI_CONTROL_FALSE;
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1044 *(int *)arg = priv->audio_in.samplerate;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1045 mp_msg(MSGT_TV, MSGL_V, "%s: get audio samplerate: %d\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1046 info.short_name, *(int *)arg);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1047 return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1048 case TVI_CONTROL_AUD_GET_SAMPLESIZE:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1049 init_audio(priv);
25962
afa125da85cf typo fix: inited --> initialized
diego
parents: 25689
diff changeset
1050 if (!priv->audio_initialized) return TVI_CONTROL_FALSE;
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1051 *(int *)arg = priv->audio_in.bytes_per_sample;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1052 mp_msg(MSGT_TV, MSGL_V, "%s: get audio samplesize: %d\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1053 info.short_name, *(int *)arg);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1054 return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1055 case TVI_CONTROL_AUD_GET_CHANNELS:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1056 init_audio(priv);
25962
afa125da85cf typo fix: inited --> initialized
diego
parents: 25689
diff changeset
1057 if (!priv->audio_initialized) return TVI_CONTROL_FALSE;
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1058 *(int *)arg = priv->audio_in.channels;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1059 mp_msg(MSGT_TV, MSGL_V, "%s: get audio channels: %d\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1060 info.short_name, *(int *)arg);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1061 return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1062 case TVI_CONTROL_AUD_SET_SAMPLERATE:
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1063 init_audio(priv);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1064 mp_msg(MSGT_TV, MSGL_V, "%s: set audio samplerate: %d\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1065 info.short_name, *(int *)arg);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1066 if (audio_in_set_samplerate(&priv->audio_in, *(int*)arg) < 0) return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1067 // setup_audio_buffer_sizes(priv);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1068 return TVI_CONTROL_TRUE;
23901
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1069 case TVI_CONTROL_VBI_INIT:
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1070 {
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1071 void* ptr;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1072 tt_stream_props tsp;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1073
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1074 if (vbi_init(priv,*(char**)arg)!=TVI_CONTROL_TRUE)
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1075 return TVI_CONTROL_FALSE;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1076 if(vbi_get_props(priv,&tsp)==TVI_CONTROL_TRUE)
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1077 {
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1078 ptr=&tsp;
29760
1cc8a20520e8 Add MSGT_TELETEXT, rename TVI_CONTROL as VBI_CONTROL and fix some paths
cehoyos
parents: 29759
diff changeset
1079 if(teletext_control(NULL,TV_VBI_CONTROL_START,&ptr)==VBI_CONTROL_TRUE)
23901
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1080 priv->priv_vbi=ptr;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1081 else
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1082 priv->priv_vbi=NULL;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1083 }
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1084 return TVI_CONTROL_TRUE;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1085 }
29806
a5e7590ffdbd Separate teletext from tv support.
cehoyos
parents: 29760
diff changeset
1086 case TVI_CONTROL_GET_VBI_PTR:
a5e7590ffdbd Separate teletext from tv support.
cehoyos
parents: 29760
diff changeset
1087 *(void **)arg=priv->priv_vbi;
a5e7590ffdbd Separate teletext from tv support.
cehoyos
parents: 29760
diff changeset
1088 return TVI_CONTROL_TRUE;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1089 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1090 mp_msg(MSGT_TV, MSGL_V, "%s: unknown control: %d\n", info.short_name, cmd);
26756
c43ce7268677 cosmetics: Remove useless parentheses from return statements.
diego
parents: 25962
diff changeset
1091 return TVI_CONTROL_UNKNOWN;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1092 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1093
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1094
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1095 #define PRIV ((priv_t *) (tvi_handle->priv))
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1096
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1097 /* handler creator - entry point ! */
23883
d65439444b75 Removing global variables from tv://
voroshil
parents: 23423
diff changeset
1098 static tvi_handle_t *tvi_init_v4l2(tv_param_t* tv_param)
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1099 {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1100 tvi_handle_t *tvi_handle;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1101
32141
2802b8095bf7 Move TV input new_handle static function to tv.c and make it non-static.
diego
parents: 32090
diff changeset
1102 tvi_handle = tv_new_handle(sizeof(priv_t), &functions);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1103 if (!tvi_handle) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1104 return NULL;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1105 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1106 PRIV->video_fd = -1;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1107
23883
d65439444b75 Removing global variables from tv://
voroshil
parents: 23423
diff changeset
1108 PRIV->video_dev = strdup(tv_param->device? tv_param->device: "/dev/video0");
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1109 if (!PRIV->video_dev) {
32090
535ebcd085e4 Move TV input free_handle static function to tv.c and make it non-static.
diego
parents: 31834
diff changeset
1110 tv_free_handle(tvi_handle);
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1111 return NULL;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1112 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1113
23883
d65439444b75 Removing global variables from tv://
voroshil
parents: 23423
diff changeset
1114 if (tv_param->adevice) {
d65439444b75 Removing global variables from tv://
voroshil
parents: 23423
diff changeset
1115 PRIV->audio_dev = strdup(tv_param->adevice);
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1116 if (!PRIV->audio_dev) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1117 free(PRIV->video_dev);
32090
535ebcd085e4 Move TV input free_handle static function to tv.c and make it non-static.
diego
parents: 31834
diff changeset
1118 tv_free_handle(tvi_handle);
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1119 return NULL;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1120 }
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1121 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1122
23883
d65439444b75 Removing global variables from tv://
voroshil
parents: 23423
diff changeset
1123 PRIV->tv_param=tv_param;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1124 return tvi_handle;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1125 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1126
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1127 #undef PRIV
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1128
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1129
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1130 static int uninit(priv_t *priv)
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1131 {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1132 int i, frames, dropped = 0;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1133
23901
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1134 priv->vbi_shutdown=1;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1135 if(priv->vbi_grabber_thread)
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1136 pthread_join(priv->vbi_grabber_thread, NULL);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1137
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1138 teletext_control(priv->priv_vbi,TV_VBI_CONTROL_STOP,(void*)1);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1139 priv->priv_vbi=NULL;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1140
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1141 if(priv->vbi_fd){
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1142 close(priv->vbi_fd);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1143 priv->vbi_fd=0;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1144 }
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1145
32511
b39155e98ac3 Remove some useless NULL pointer checks before invoking free() on the pointer.
diego
parents: 32352
diff changeset
1146 free(priv->vbi_dev);
b39155e98ac3 Remove some useless NULL pointer checks before invoking free() on the pointer.
diego
parents: 32352
diff changeset
1147 priv->vbi_dev = NULL;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1148 priv->shutdown = 1;
16185
973b82bf1187 do not crash when /dev/video0 is not present
faust3
parents: 15987
diff changeset
1149 if(priv->video_grabber_thread)
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1150 pthread_join(priv->video_grabber_thread, NULL);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1151 pthread_mutex_destroy(&priv->video_buffer_mutex);
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1152
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1153 if (priv->streamon) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1154 struct v4l2_buffer buf;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1155
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1156 /* get performance */
28927
8f7c8a1cb8b7 100l fix calculation of dropped frames, number of frames is time * fps, not time / fps.
reimar
parents: 28106
diff changeset
1157 frames = 1 + lrintf((double)(priv->curr_frame - priv->first_frame) / 1e6 * getfps(priv));
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1158 dropped = frames - priv->frames;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1159
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1160 /* turn off streaming */
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1161 if (ioctl(priv->video_fd, VIDIOC_STREAMOFF, &(priv->map[0].buf.type)) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1162 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl streamoff failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1163 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1164 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1165 priv->streamon = 0;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1166
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1167 /* unqueue all remaining buffers */
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1168 memset(&buf,0,sizeof(buf));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1169 buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1170 buf.memory = V4L2_MEMORY_MMAP;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1171 while (!ioctl(priv->video_fd, VIDIOC_DQBUF, &buf));
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1172 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1173
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1174 /* unmap all buffers */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1175 for (i = 0; i < priv->mapcount; i++) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1176 if (munmap(priv->map[i].addr, priv->map[i].len) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1177 mp_msg(MSGT_TV, MSGL_ERR, "%s: munmap capture buffer failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1178 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1179 }
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1180 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1181
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1182 /* stop audio thread */
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1183 if (!priv->tv_param->noaudio && priv->audio_grabber_thread) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1184 pthread_join(priv->audio_grabber_thread, NULL);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1185 pthread_mutex_destroy(&priv->skew_mutex);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1186 pthread_mutex_destroy(&priv->audio_mutex);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1187 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1188
17626
5627625b0cdb Don't test the v4l2_input audioset field for audio capabilities but still try changing the mute setting (patch by Jesse Allen < the3dfxdude _at_ gmail.com >)
aurel
parents: 17199
diff changeset
1189 set_mute(priv, 1);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1190
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1191 /* free memory and close device */
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1192 free(priv->map); priv->map = NULL;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1193 priv->mapcount = 0;
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1194 if(priv->video_fd!=-1)close(priv->video_fd); priv->video_fd = -1;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1195 free(priv->video_dev); priv->video_dev = NULL;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1196
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1197 if (priv->video_ringbuffer) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1198 int i;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1199 for (i = 0; i < priv->video_buffer_size_current; i++) {
23423
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1200 free(priv->video_ringbuffer[i].data);
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1201 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1202 free(priv->video_ringbuffer);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1203 }
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1204 if (!priv->tv_param->noaudio) {
32511
b39155e98ac3 Remove some useless NULL pointer checks before invoking free() on the pointer.
diego
parents: 32352
diff changeset
1205 free(priv->audio_ringbuffer);
b39155e98ac3 Remove some useless NULL pointer checks before invoking free() on the pointer.
diego
parents: 32352
diff changeset
1206 free(priv->audio_skew_buffer);
b39155e98ac3 Remove some useless NULL pointer checks before invoking free() on the pointer.
diego
parents: 32352
diff changeset
1207 free(priv->audio_skew_delta_buffer);
25005
1635b2b31bdd Add missing call to audio_in_uninit in v4l2 tv driver.
voroshil
parents: 24763
diff changeset
1208
1635b2b31bdd Add missing call to audio_in_uninit in v4l2 tv driver.
voroshil
parents: 24763
diff changeset
1209 audio_in_uninit(&priv->audio_in);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1210 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1211
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1212 /* show some nice statistics ;-) */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1213 mp_msg(MSGT_TV, MSGL_INFO,
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1214 "%s: %d frames successfully processed, %d frames dropped.\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1215 info.short_name, priv->frames, dropped);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1216 mp_msg(MSGT_TV, MSGL_V, "%s: up to %u video frames buffered.\n",
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1217 info.short_name, priv->video_buffer_size_current);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1218 return 1;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1219 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1220
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1221
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1222 /* initialisation */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1223 static int init(priv_t *priv)
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1224 {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1225 int i;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1226
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1227 priv->audio_ringbuffer = NULL;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1228 priv->audio_skew_buffer = NULL;
10653
d9dfbe5e1011 a/v sync improvements
henry
parents: 10538
diff changeset
1229 priv->audio_skew_delta_buffer = NULL;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1230
25962
afa125da85cf typo fix: inited --> initialized
diego
parents: 25689
diff changeset
1231 priv->audio_initialized = 0;
15464
a57ec42d7df1 do not modify tv_param_noaudio
henry
parents: 15462
diff changeset
1232
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1233 /* Open the video device. */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1234 priv->video_fd = open(priv->video_dev, O_RDWR);
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1235 if (priv->video_fd < 0) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1236 mp_msg(MSGT_TV, MSGL_ERR, "%s: unable to open '%s': %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1237 info.short_name, priv->video_dev, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1238 uninit(priv);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1239 return 0;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1240 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1241 mp_msg(MSGT_TV, MSGL_DBG2, "%s: video fd: %s: %d\n",
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1242 info.short_name, priv->video_dev, priv->video_fd);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1243
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1244 /*
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1245 ** Query the video capabilities and current settings
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1246 ** for further control calls.
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1247 */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1248 if (ioctl(priv->video_fd, VIDIOC_QUERYCAP, &priv->capability) < 0) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1249 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl query capabilities failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1250 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1251 uninit(priv);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1252 return 0;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1253 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1254
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1255 if (!(priv->capability.capabilities & V4L2_CAP_VIDEO_CAPTURE))
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1256 {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1257 mp_msg(MSGT_TV, MSGL_ERR, "Device %s is not a video capture device.\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1258 priv->video_dev);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1259 return 0;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1260 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1261
18073
8ceb31f028ee make failures during e.g. setting the TV norm non-fatal.
reimar
parents: 17765
diff changeset
1262 if (getfmt(priv) < 0) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1263 uninit(priv);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1264 return 0;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1265 }
18073
8ceb31f028ee make failures during e.g. setting the TV norm non-fatal.
reimar
parents: 17765
diff changeset
1266 getstd(priv);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1267 /*
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1268 ** if this device has got a tuner query it's settings
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1269 ** otherwise set some nice defaults
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1270 */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1271 if (priv->capability.capabilities & V4L2_CAP_TUNER) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1272 if (ioctl(priv->video_fd, VIDIOC_G_TUNER, &priv->tuner) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1273 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl get tuner failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1274 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1275 uninit(priv);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1276 return 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1277 }
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1278 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1279 mp_msg(MSGT_TV, MSGL_INFO, "Selected device: %s\n", priv->capability.card);
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1280 if (priv->capability.capabilities & V4L2_CAP_TUNER) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1281 mp_msg(MSGT_TV, MSGL_INFO, " Tuner cap:%s%s%s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1282 (priv->tuner.capability & V4L2_TUNER_CAP_STEREO) ? " STEREO" : "",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1283 (priv->tuner.capability & V4L2_TUNER_CAP_LANG1) ? " LANG1" : "",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1284 (priv->tuner.capability & V4L2_TUNER_CAP_LANG2) ? " LANG2" : "");
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1285 mp_msg(MSGT_TV, MSGL_INFO, " Tuner rxs:%s%s%s%s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1286 (priv->tuner.rxsubchans & V4L2_TUNER_SUB_MONO) ? " MONO" : "",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1287 (priv->tuner.rxsubchans & V4L2_TUNER_SUB_STEREO) ? " STEREO" : "",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1288 (priv->tuner.rxsubchans & V4L2_TUNER_SUB_LANG1) ? " LANG1" : "",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1289 (priv->tuner.rxsubchans & V4L2_TUNER_SUB_LANG2) ? " LANG2" : "");
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1290 }
31834
64ba1daa147a various spelling fixes, found by the Debian QA tool 'lintian'
siretart
parents: 31322
diff changeset
1291 mp_msg(MSGT_TV, MSGL_INFO, " Capabilities:%s%s%s%s%s%s%s%s%s%s%s\n",
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1292 priv->capability.capabilities & V4L2_CAP_VIDEO_CAPTURE?
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1293 " video capture": "",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1294 priv->capability.capabilities & V4L2_CAP_VIDEO_OUTPUT?
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1295 " video output": "",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1296 priv->capability.capabilities & V4L2_CAP_VIDEO_OVERLAY?
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1297 " video overlay": "",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1298 priv->capability.capabilities & V4L2_CAP_VBI_CAPTURE?
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1299 " VBI capture device": "",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1300 priv->capability.capabilities & V4L2_CAP_VBI_OUTPUT?
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1301 " VBI output": "",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1302 priv->capability.capabilities & V4L2_CAP_RDS_CAPTURE?
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1303 " RDS data capture": "",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1304 priv->capability.capabilities & V4L2_CAP_TUNER?
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1305 " tuner": "",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1306 priv->capability.capabilities & V4L2_CAP_AUDIO?
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1307 " audio": "",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1308 priv->capability.capabilities & V4L2_CAP_READWRITE?
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1309 " read/write": "",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1310 priv->capability.capabilities & V4L2_CAP_ASYNCIO?
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1311 " async i/o": "",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1312 priv->capability.capabilities & V4L2_CAP_STREAMING?
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1313 " streaming": "");
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1314 mp_msg(MSGT_TV, MSGL_INFO, " supported norms:");
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1315 for (i = 0;; i++) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1316 struct v4l2_standard standard;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1317 memset(&standard, 0, sizeof(standard));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1318 standard.index = i;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1319 if (-1 == ioctl(priv->video_fd, VIDIOC_ENUMSTD, &standard))
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1320 break;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1321 mp_msg(MSGT_TV, MSGL_INFO, " %d = %s;", i, standard.name);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1322 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1323 mp_msg(MSGT_TV, MSGL_INFO, "\n inputs:");
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1324 for (i = 0; 1; i++) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1325 struct v4l2_input input;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1326
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1327 input.index = i;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1328 if (ioctl(priv->video_fd, VIDIOC_ENUMINPUT, &input) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1329 break;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1330 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1331 mp_msg(MSGT_TV, MSGL_INFO, " %d = %s;", i, input.name);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1332 }
29121
bae666342ba9 Make tvi_v4l2 print -1 as "Current input" if the ioctl to read it failed.
reimar
parents: 28940
diff changeset
1333 i = -1;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1334 if (ioctl(priv->video_fd, VIDIOC_G_INPUT, &i) < 0) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1335 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl get input failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1336 info.short_name, strerror(errno));
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1337 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1338 mp_msg(MSGT_TV, MSGL_INFO, "\n Current input: %d\n", i);
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1339 for (i = 0; ; i++) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1340 struct v4l2_fmtdesc fmtdesc;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1341
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1342 fmtdesc.index = i;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1343 fmtdesc.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1344 if (ioctl(priv->video_fd, VIDIOC_ENUM_FMT, &fmtdesc) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1345 break;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1346 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1347 mp_msg(MSGT_TV, MSGL_V, " Format %-6s (%2d bits, %s): %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1348 pixfmt2name(fmtdesc.pixelformat), pixfmt2depth(fmtdesc.pixelformat),
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1349 fmtdesc.description, vo_format_name(fcc_vl2mp(fmtdesc.pixelformat)));
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1350 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1351 mp_msg(MSGT_TV, MSGL_INFO, " Current format: %s\n",
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1352 pixfmt2name(priv->format.fmt.pix.pixelformat));
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1353
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1354 /* set some nice defaults */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1355 if (getfmt(priv) < 0) return 0;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1356 priv->format.fmt.pix.width = 640;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1357 priv->format.fmt.pix.height = 480;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1358 if (ioctl(priv->video_fd, VIDIOC_S_FMT, &priv->format) < 0) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1359 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl set format failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1360 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1361 uninit(priv);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1362 return 0;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1363 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1364
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1365 // if (!(priv->capability.capabilities & V4L2_CAP_AUDIO) && !priv->tv_param->force_audio) priv->tv_param->noaudio = 1;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1366
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1367 if (priv->capability.capabilities & V4L2_CAP_TUNER) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1368 struct v4l2_control control;
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1369 if (priv->tv_param->amode >= 0) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1370 mp_msg(MSGT_TV, MSGL_V, "%s: setting audio mode\n", info.short_name);
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1371 priv->tuner.audmode = amode2v4l(priv->tv_param->amode);
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1372 if (ioctl(priv->video_fd, VIDIOC_S_TUNER, &priv->tuner) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1373 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl set tuner failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1374 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1375 return TVI_CONTROL_FALSE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1376 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1377 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1378 mp_msg(MSGT_TV, MSGL_INFO, "%s: current audio mode is :%s%s%s%s\n", info.short_name,
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1379 (priv->tuner.audmode == V4L2_TUNER_MODE_MONO) ? " MONO" : "",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1380 (priv->tuner.audmode == V4L2_TUNER_MODE_STEREO) ? " STEREO" : "",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1381 (priv->tuner.audmode == V4L2_TUNER_MODE_LANG1) ? " LANG1" : "",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1382 (priv->tuner.audmode == V4L2_TUNER_MODE_LANG2) ? " LANG2" : "");
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1383
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1384 if (priv->tv_param->volume >= 0) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1385 control.id = V4L2_CID_AUDIO_VOLUME;
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1386 control.value = priv->tv_param->volume;
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1387 set_control(priv, &control, 0);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1388 }
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1389 if (priv->tv_param->bass >= 0) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1390 control.id = V4L2_CID_AUDIO_BASS;
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1391 control.value = priv->tv_param->bass;
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1392 set_control(priv, &control, 0);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1393 }
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1394 if (priv->tv_param->treble >= 0) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1395 control.id = V4L2_CID_AUDIO_TREBLE;
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1396 control.value = priv->tv_param->treble;
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1397 set_control(priv, &control, 0);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1398 }
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1399 if (priv->tv_param->balance >= 0) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1400 control.id = V4L2_CID_AUDIO_BALANCE;
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1401 control.value = priv->tv_param->balance;
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1402 set_control(priv, &control, 0);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1403 }
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1404 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1405
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1406 return 1;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1407 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1408
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1409 static int get_capture_buffer_size(priv_t *priv)
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1410 {
33644
c15dabfa2380 Do a proper calculation of free RAM to be used as V4L buffers.
iive
parents: 33163
diff changeset
1411 uint64_t bufsize;
c15dabfa2380 Do a proper calculation of free RAM to be used as V4L buffers.
iive
parents: 33163
diff changeset
1412 int cnt;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1413
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1414 if (priv->tv_param->buffer_size >= 0) {
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1415 bufsize = priv->tv_param->buffer_size*1024*1024;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1416 } else {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1417 #ifdef HAVE_SYS_SYSINFO_H
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1418 struct sysinfo si;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
1419
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1420 sysinfo(&si);
33644
c15dabfa2380 Do a proper calculation of free RAM to be used as V4L buffers.
iive
parents: 33163
diff changeset
1421 bufsize = (si.freeram/2)*si.mem_unit;
c15dabfa2380 Do a proper calculation of free RAM to be used as V4L buffers.
iive
parents: 33163
diff changeset
1422 if ( bufsize < 16*1024*1024)
c15dabfa2380 Do a proper calculation of free RAM to be used as V4L buffers.
iive
parents: 33163
diff changeset
1423 #endif
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1424 bufsize = 16*1024*1024;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1425 }
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
1426
23423
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1427 cnt = bufsize/priv->format.fmt.pix.sizeimage;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1428 if (cnt < 2) cnt = 2;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
1429
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1430 return cnt;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1431 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1432
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1433 /* that's the real start, we'got the format parameters (checked with control) */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1434 static int start(priv_t *priv)
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1435 {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1436 struct v4l2_requestbuffers request;
24346
9fb68e85180a Fix for:
voroshil
parents: 24105
diff changeset
1437 unsigned int i;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1438
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1439 /* setup audio parameters */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1440
15464
a57ec42d7df1 do not modify tv_param_noaudio
henry
parents: 15462
diff changeset
1441 init_audio(priv);
25962
afa125da85cf typo fix: inited --> initialized
diego
parents: 25689
diff changeset
1442 if (!priv->tv_param->noaudio && !priv->audio_initialized) return 0;
15464
a57ec42d7df1 do not modify tv_param_noaudio
henry
parents: 15462
diff changeset
1443
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1444 /* we need this to size the audio buffer properly */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1445 if (priv->immediate_mode) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1446 priv->video_buffer_size_max = 2;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1447 } else {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1448 priv->video_buffer_size_max = get_capture_buffer_size(priv);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1449 }
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
1450
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1451 if (!priv->tv_param->noaudio) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1452 setup_audio_buffer_sizes(priv);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1453 priv->audio_skew_buffer = calloc(priv->aud_skew_cnt, sizeof(long long));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1454 if (!priv->audio_skew_buffer) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1455 mp_msg(MSGT_TV, MSGL_ERR, "cannot allocate skew buffer: %s\n", strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1456 return 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1457 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1458 priv->audio_skew_delta_buffer = calloc(priv->aud_skew_cnt, sizeof(long long));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1459 if (!priv->audio_skew_delta_buffer) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1460 mp_msg(MSGT_TV, MSGL_ERR, "cannot allocate skew buffer: %s\n", strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1461 return 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1462 }
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1463
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1464 priv->audio_ringbuffer = calloc(priv->audio_in.blocksize, priv->audio_buffer_size);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1465 if (!priv->audio_ringbuffer) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1466 mp_msg(MSGT_TV, MSGL_ERR, "cannot allocate audio buffer: %s\n", strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1467 return 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1468 }
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1469
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1470 priv->audio_secs_per_block = (double)priv->audio_in.blocksize/(priv->audio_in.samplerate
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1471 *priv->audio_in.channels
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1472 *priv->audio_in.bytes_per_sample);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1473 priv->audio_usecs_per_block = 1e6*priv->audio_secs_per_block;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1474 priv->audio_head = 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1475 priv->audio_tail = 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1476 priv->audio_cnt = 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1477 priv->audio_drop = 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1478 priv->audio_skew = 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1479 priv->audio_skew_total = 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1480 priv->audio_skew_delta_total = 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1481 priv->audio_recv_blocks_total = 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1482 priv->audio_sent_blocks_total = 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1483 priv->audio_null_blocks_inserted = 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1484 priv->audio_insert_null_samples = 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1485 priv->dropped_frames_timeshift = 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1486 priv->dropped_frames_compensated = 0;
15449
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
1487
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1488 pthread_mutex_init(&priv->skew_mutex, NULL);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1489 pthread_mutex_init(&priv->audio_mutex, NULL);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1490 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1491
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1492 /* setup video parameters */
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1493 if (!priv->tv_param->noaudio) {
32668
cb671a73f3a3 Use getfps helper function everywhere, simplifies code and avoids a possible division by 0.
reimar
parents: 32511
diff changeset
1494 if (priv->video_buffer_size_max < 3*getfps(priv)*priv->audio_secs_per_block) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1495 mp_msg(MSGT_TV, MSGL_ERR, "Video buffer shorter than 3 times audio frame duration.\n"
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1496 "You will probably experience heavy framedrops.\n");
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1497 }
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1498 }
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
1499
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1500 {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1501 int bytesperline = priv->format.fmt.pix.width*pixfmt2depth(priv->format.fmt.pix.pixelformat)/8;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
1502
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1503 mp_msg(MSGT_TV, MSGL_V, "Using a ring buffer for maximum %d frames, %d MB total size.\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1504 priv->video_buffer_size_max,
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1505 priv->video_buffer_size_max*priv->format.fmt.pix.height*bytesperline/(1024*1024));
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1506 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1507
23423
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1508 priv->video_ringbuffer = calloc(priv->video_buffer_size_max, sizeof(video_buffer_entry));
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1509 if (!priv->video_ringbuffer) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1510 mp_msg(MSGT_TV, MSGL_ERR, "cannot allocate video buffer: %s\n", strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1511 return 0;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1512 }
23423
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1513 memset(priv->video_ringbuffer,0,priv->video_buffer_size_max * sizeof(video_buffer_entry));
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1514
15449
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
1515 pthread_mutex_init(&priv->video_buffer_mutex, NULL);
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
1516
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1517 priv->video_head = 0;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1518 priv->video_tail = 0;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1519 priv->video_cnt = 0;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
1520
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1521 /* request buffers */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1522 if (priv->immediate_mode) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1523 request.count = 2;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1524 } else {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1525 request.count = BUFFER_COUNT;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1526 }
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
1527
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1528 request.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1529 request.memory = V4L2_MEMORY_MMAP;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1530 if (ioctl(priv->video_fd, VIDIOC_REQBUFS, &request) < 0) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1531 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl request buffers failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1532 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1533 return 0;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1534 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1535
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1536 /* query buffers */
18558
4928dd61f136 Fix potential integer overflows in memory allocation.
rtogni
parents: 18176
diff changeset
1537 if (!(priv->map = calloc(request.count, sizeof(struct map)))) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1538 mp_msg(MSGT_TV, MSGL_ERR, "%s: malloc capture buffers failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1539 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1540 return 0;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1541 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1542
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1543 /* map and queue buffers */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1544 for (i = 0; i < request.count; i++) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1545 memset(&priv->map[i].buf,0,sizeof(priv->map[i].buf));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1546 priv->map[i].buf.index = i;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1547 priv->map[i].buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1548 priv->map[i].buf.memory = V4L2_MEMORY_MMAP;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1549 if (ioctl(priv->video_fd, VIDIOC_QUERYBUF, &(priv->map[i].buf)) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1550 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl query buffer failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1551 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1552 free(priv->map);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1553 priv->map = NULL;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1554 return 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1555 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1556 priv->map[i].addr = mmap (0, priv->map[i].buf.length, PROT_READ |
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1557 PROT_WRITE, MAP_SHARED, priv->video_fd, priv->map[i].buf.m.offset);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1558 if (priv->map[i].addr == MAP_FAILED) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1559 mp_msg(MSGT_TV, MSGL_ERR, "%s: mmap capture buffer failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1560 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1561 priv->map[i].len = 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1562 return 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1563 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1564 priv->map[i].len = priv->map[i].buf.length;
37127
ca7e13830a05 Allow building of v4l2 without clock_gettime().
iive
parents: 37126
diff changeset
1565 #ifdef HAVE_CLOCK_GETTIME
37126
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
1566 priv->clk_id = (priv->map[i].buf.flags & V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC)
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
1567 ? CLOCK_MONOTONIC : CLOCK_REALTIME;
37127
ca7e13830a05 Allow building of v4l2 without clock_gettime().
iive
parents: 37126
diff changeset
1568 #else
ca7e13830a05 Allow building of v4l2 without clock_gettime().
iive
parents: 37126
diff changeset
1569 if (priv->map[i].buf.flags & V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC)
ca7e13830a05 Allow building of v4l2 without clock_gettime().
iive
parents: 37126
diff changeset
1570 mp_msg(MSGT_TV, MSGL_WARN, "MPlayer compiled without clock_gettime() that is needed to handle monotone video timestamps from the kernel. Expect desync.\n");
ca7e13830a05 Allow building of v4l2 without clock_gettime().
iive
parents: 37126
diff changeset
1571 #endif
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1572 /* count up to make sure this is correct everytime */
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1573 priv->mapcount++;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1574
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1575 if (ioctl(priv->video_fd, VIDIOC_QBUF, &(priv->map[i].buf)) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1576 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl queue buffer failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1577 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1578 return 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1579 }
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1580 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1581
23901
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1582 /* start vbi thread */
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1583 if(priv->priv_vbi){
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1584 priv->vbi_shutdown = 0;
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1585 pthread_create(&priv->vbi_grabber_thread, NULL, vbi_grabber, priv);
657236b9eacb Teletext support
voroshil
parents: 23886
diff changeset
1586 }
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1587 /* start audio thread */
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1588 priv->shutdown = 0;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1589 priv->audio_skew_measure_time = 0;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1590 priv->first_frame = 0;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1591 priv->audio_skew = 0;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1592 priv->first = 1;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1593
17626
5627625b0cdb Don't test the v4l2_input audioset field for audio capabilities but still try changing the mute setting (patch by Jesse Allen < the3dfxdude _at_ gmail.com >)
aurel
parents: 17199
diff changeset
1594 set_mute(priv, 0);
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
1595
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1596 return 1;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1597 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1598
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1599 // copies a video frame
23423
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1600 static inline void copy_frame(priv_t *priv, video_buffer_entry *dest, unsigned char *source,int len)
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1601 {
23423
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1602 dest->framesize=len;
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1603 if(priv->tv_param->automute>0){
23422
e7b4c913dc31 New "automute" tv:// option.
voroshil
parents: 23362
diff changeset
1604 if (ioctl(priv->video_fd, VIDIOC_G_TUNER, &priv->tuner) >= 0) {
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1605 if(priv->tv_param->automute<<8>priv->tuner.signal){
23423
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1606 fill_blank_frame(dest->data,dest->framesize,fcc_vl2mp(priv->format.fmt.pix.pixelformat));
23422
e7b4c913dc31 New "automute" tv:// option.
voroshil
parents: 23362
diff changeset
1607 set_mute(priv,1);
e7b4c913dc31 New "automute" tv:// option.
voroshil
parents: 23362
diff changeset
1608 return;
e7b4c913dc31 New "automute" tv:// option.
voroshil
parents: 23362
diff changeset
1609 }
e7b4c913dc31 New "automute" tv:// option.
voroshil
parents: 23362
diff changeset
1610 }
e7b4c913dc31 New "automute" tv:// option.
voroshil
parents: 23362
diff changeset
1611 set_mute(priv,0);
e7b4c913dc31 New "automute" tv:// option.
voroshil
parents: 23362
diff changeset
1612 }
23423
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1613 memcpy(dest->data, source, len);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1614 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1615
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1616 // maximum skew change, in frames
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1617 #define MAX_SKEW_DELTA 0.6
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1618 static void *video_grabber(void *data)
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1619 {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1620 priv_t *priv = (priv_t*)data;
15449
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
1621 long long skew, prev_skew, xskew, interval, prev_interval, delta;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1622 int i;
23423
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1623 int framesize = priv->format.fmt.pix.sizeimage;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1624 fd_set rdset;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1625 struct timeval timeout;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1626 struct v4l2_buffer buf;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1627
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1628 xskew = 0;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1629 skew = 0;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1630 interval = 0;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1631 prev_interval = 0;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1632 prev_skew = 0;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1633
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1634 mp_msg(MSGT_TV, MSGL_V, "%s: going to capture\n", info.short_name);
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1635 if (ioctl(priv->video_fd, VIDIOC_STREAMON, &(priv->format.type)) < 0) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1636 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl streamon failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1637 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1638 return 0;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1639 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1640 priv->streamon = 1;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1641
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1642 if (!priv->tv_param->noaudio) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1643 pthread_create(&priv->audio_grabber_thread, NULL, audio_grabber, priv);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1644 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1645
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1646 for (priv->frames = 0; !priv->shutdown;)
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1647 {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1648 int ret;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
1649
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1650 if (priv->immediate_mode) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1651 while (priv->video_cnt == priv->video_buffer_size_max) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1652 usleep(10000);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1653 if (priv->shutdown) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1654 return NULL;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1655 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1656 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1657 }
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
1658
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1659 FD_ZERO (&rdset);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1660 FD_SET (priv->video_fd, &rdset);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1661
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1662 timeout.tv_sec = 1;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1663 timeout.tv_usec = 0;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1664
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1665 i = select(priv->video_fd + 1, &rdset, NULL, NULL, &timeout);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1666 if (i < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1667 mp_msg(MSGT_TV, MSGL_ERR, "%s: select failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1668 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1669 continue;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1670 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1671 else if (i == 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1672 mp_msg(MSGT_TV, MSGL_ERR, "%s: select timeout\n", info.short_name);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1673 continue;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1674 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1675 else if (!FD_ISSET(priv->video_fd, &rdset)) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1676 continue;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1677 }
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1678
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1679 memset(&buf,0,sizeof(buf));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1680 buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1681 buf.memory = V4L2_MEMORY_MMAP;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1682 ret = ioctl(priv->video_fd, VIDIOC_DQBUF, &buf);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1683
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1684 if (ret < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1685 /*
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1686 if there's no signal, the buffer might me dequeued
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1687 so we query all the buffers to see which one we should
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1688 put back to queue
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1689
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1690 observed with saa7134 0.2.8
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1691 don't know if is it a bug or (mis)feature
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1692 */
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1693 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl dequeue buffer failed: %s, idx = %d\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1694 info.short_name, strerror(errno), buf.index);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1695 for (i = 0; i < priv->mapcount; i++) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1696 memset(&buf,0,sizeof(buf));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1697 buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1698 buf.memory = V4L2_MEMORY_MMAP;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1699 buf.index = i;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1700 ret = ioctl(priv->video_fd, VIDIOC_QUERYBUF, &buf);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1701 if (ret < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1702 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl query buffer failed: %s, idx = %d\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1703 info.short_name, strerror(errno), buf.index);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1704 return 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1705 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1706 if ((buf.flags & (V4L2_BUF_FLAG_QUEUED | V4L2_BUF_FLAG_MAPPED | V4L2_BUF_FLAG_DONE)) == V4L2_BUF_FLAG_MAPPED) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1707 if (ioctl(priv->video_fd, VIDIOC_QBUF, &(priv->map[i].buf)) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1708 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl queue buffer failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1709 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1710 return 0;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
1711 }
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1712 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1713 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1714 continue;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1715 }
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1716
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1717 /* store the timestamp of the very first frame as reference */
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1718 if (!priv->frames++) {
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1719 if (!priv->tv_param->noaudio) pthread_mutex_lock(&priv->skew_mutex);
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1720 priv->first_frame = (long long)1e6*buf.timestamp.tv_sec + buf.timestamp.tv_usec;
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1721 if (!priv->tv_param->noaudio) pthread_mutex_unlock(&priv->skew_mutex);
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1722 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1723 priv->curr_frame = (long long)buf.timestamp.tv_sec*1e6+buf.timestamp.tv_usec;
32352
76f94c00a69f 1000l, %lf is not valid format string for printf (only for scanf) and actually
reimar
parents: 32141
diff changeset
1724 // fprintf(stderr, "idx = %d, ts = %f\n", buf.index, (double)(priv->curr_frame) / 1e6);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1725
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1726 interval = priv->curr_frame - priv->first_frame;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1727 delta = interval - prev_interval;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1728
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1729 if (!priv->immediate_mode) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1730 // interpolate the skew in time
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1731 if (!priv->tv_param->noaudio) pthread_mutex_lock(&priv->skew_mutex);
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1732 xskew = priv->audio_skew + (interval - priv->audio_skew_measure_time)*priv->audio_skew_factor;
23886
5af94a1df41e Removing global variables from tv://
voroshil
parents: 23883
diff changeset
1733 if (!priv->tv_param->noaudio) pthread_mutex_unlock(&priv->skew_mutex);
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1734 // correct extreme skew changes to avoid (especially) moving backwards in time
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1735 if (xskew - prev_skew > delta*MAX_SKEW_DELTA) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1736 skew = prev_skew + delta*MAX_SKEW_DELTA;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1737 } else if (xskew - prev_skew < -delta*MAX_SKEW_DELTA) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1738 skew = prev_skew - delta*MAX_SKEW_DELTA;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1739 } else {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1740 skew = xskew;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1741 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1742 }
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1743
32352
76f94c00a69f 1000l, %lf is not valid format string for printf (only for scanf) and actually
reimar
parents: 32141
diff changeset
1744 mp_msg(MSGT_TV, MSGL_DBG3, "\nfps = %f, interval = %f, a_skew = %f, corr_skew = %f\n",
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1745 delta ? (double)1e6/delta : -1,
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1746 (double)1e-6*interval, (double)1e-6*xskew, (double)1e-6*skew);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1747 mp_msg(MSGT_TV, MSGL_DBG3, "vcnt = %d, acnt = %d\n", priv->video_cnt, priv->audio_cnt);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1748
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1749 prev_skew = skew;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1750 prev_interval = interval;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1751
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1752 /* allocate a new buffer, if needed */
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1753 pthread_mutex_lock(&priv->video_buffer_mutex);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1754 if (priv->video_buffer_size_current < priv->video_buffer_size_max) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1755 if (priv->video_cnt == priv->video_buffer_size_current) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1756 unsigned char *newbuf = malloc(framesize);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1757 if (newbuf) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1758 memmove(priv->video_ringbuffer+priv->video_tail+1, priv->video_ringbuffer+priv->video_tail,
23423
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1759 (priv->video_buffer_size_current-priv->video_tail)*sizeof(video_buffer_entry));
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1760 priv->video_ringbuffer[priv->video_tail].data = newbuf;
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1761 if ((priv->video_head >= priv->video_tail) && (priv->video_cnt > 0)) priv->video_head++;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1762 priv->video_buffer_size_current++;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1763 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1764 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1765 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1766 pthread_mutex_unlock(&priv->video_buffer_mutex);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1767
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1768 if (priv->video_cnt == priv->video_buffer_size_current) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1769 if (!priv->immediate_mode) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1770 mp_msg(MSGT_TV, MSGL_ERR, "\nvideo buffer full - dropping frame\n");
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1771 if (priv->audio_insert_null_samples) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1772 pthread_mutex_lock(&priv->audio_mutex);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1773 priv->dropped_frames_timeshift += delta;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1774 pthread_mutex_unlock(&priv->audio_mutex);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1775 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1776 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1777 } else {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1778 if (priv->immediate_mode) {
23423
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1779 priv->video_ringbuffer[priv->video_tail].timestamp = 0;
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1780 } else {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1781 // compensate for audio skew
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1782 // negative skew => there are more audio samples, increase interval
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1783 // positive skew => less samples, shorten the interval
23423
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1784 priv->video_ringbuffer[priv->video_tail].timestamp = interval - skew;
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1785 if (priv->audio_insert_null_samples && priv->video_ringbuffer[priv->video_tail].timestamp > 0) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1786 pthread_mutex_lock(&priv->audio_mutex);
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
1787 priv->video_ringbuffer[priv->video_tail].timestamp +=
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1788 (priv->audio_null_blocks_inserted
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1789 - priv->dropped_frames_timeshift/priv->audio_usecs_per_block)
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1790 *priv->audio_usecs_per_block;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1791 pthread_mutex_unlock(&priv->audio_mutex);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1792 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1793 }
23423
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1794 copy_frame(priv, priv->video_ringbuffer+priv->video_tail, priv->map[buf.index].addr,buf.bytesused);
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1795 priv->video_tail = (priv->video_tail+1)%priv->video_buffer_size_current;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1796 priv->video_cnt++;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1797 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1798 if (ioctl(priv->video_fd, VIDIOC_QBUF, &buf) < 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1799 mp_msg(MSGT_TV, MSGL_ERR, "%s: ioctl queue buffer failed: %s\n",
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1800 info.short_name, strerror(errno));
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1801 return 0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1802 }
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1803 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1804 return NULL;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1805 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1806
16962
bdc218b5a49a Do not hang forever when the card delivers no new data.
reimar
parents: 16536
diff changeset
1807 #define MAX_LOOP 50
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1808 static double grab_video_frame(priv_t *priv, char *buffer, int len)
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1809 {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1810 double interval;
16962
bdc218b5a49a Do not hang forever when the card delivers no new data.
reimar
parents: 16536
diff changeset
1811 int loop_cnt = 0;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1812
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1813 if (priv->first) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1814 pthread_create(&priv->video_grabber_thread, NULL, video_grabber, priv);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1815 priv->first = 0;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1816 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1817
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1818 while (priv->video_cnt == 0) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1819 usleep(10000);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1820 if (loop_cnt++ > MAX_LOOP) return 0;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1821 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1822
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1823 pthread_mutex_lock(&priv->video_buffer_mutex);
23423
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1824 interval = (double)priv->video_ringbuffer[priv->video_head].timestamp*1e-6;
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1825 memcpy(buffer, priv->video_ringbuffer[priv->video_head].data, len);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1826 priv->video_cnt--;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1827 priv->video_head = (priv->video_head+1)%priv->video_buffer_size_current;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1828 pthread_mutex_unlock(&priv->video_buffer_mutex);
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1829
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1830 return interval;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1831 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1832
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1833 static int get_video_framesize(priv_t *priv)
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1834 {
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
1835 /*
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
1836 this routine will be called before grab_video_frame
23423
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1837 thus let's return topmost frame's size
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1838 */
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1839 if (priv->video_cnt)
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1840 return priv->video_ringbuffer[priv->video_head].framesize;
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1841 /*
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1842 no video frames yet available. i don't know what to do in this case,
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1843 thus let's return some fallback result (for compressed format this will be
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1844 maximum allowed frame size.
6b18c979dd45 mjpeg support for v4l2 tv:// driver
voroshil
parents: 23422
diff changeset
1845 */
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1846 return priv->format.fmt.pix.sizeimage;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1847 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1848
10704
1d991eb5cf02 a/v sync cleanups
henry
parents: 10653
diff changeset
1849 //#define DOUBLESPEED
1d991eb5cf02 a/v sync cleanups
henry
parents: 10653
diff changeset
1850 #ifdef DOUBLESPEED
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1851 // for testing purposes only
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1852 static void read_doublespeed(priv_t *priv)
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1853 {
18885
5c8acc972551 rm unnecesary casts from void* - part 4
reynaldo
parents: 18589
diff changeset
1854 char *bufx = calloc(priv->audio_in.blocksize, 2);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1855 short *s;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1856 short *d;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1857 int i;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
1858
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1859 audio_in_read_chunk(&priv->audio_in, bufx);
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1860 audio_in_read_chunk(&priv->audio_in, bufx+priv->audio_in.blocksize);
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1861
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1862 s = bufx;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1863 d = priv->audio_ringbuffer+priv->audio_tail*priv->audio_in.blocksize;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1864 for (i = 0; i < priv->audio_in.blocksize/2; i++) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1865 *d++ = *s++;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1866 *s++;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1867 }
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
1868
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1869 }
10704
1d991eb5cf02 a/v sync cleanups
henry
parents: 10653
diff changeset
1870 #endif
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1871
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1872 static void *audio_grabber(void *data)
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1873 {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1874 priv_t *priv = (priv_t*)data;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1875 int i, audio_skew_ptr = 0;
10653
d9dfbe5e1011 a/v sync improvements
henry
parents: 10538
diff changeset
1876 long long current_time, prev_skew = 0, prev_skew_uncorr = 0;
37126
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
1877 long long start_time_avg, curr_timestamp;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1878
37126
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
1879 start_time_avg = priv->audio_start_time = get_curr_timestamp(priv->clk_id);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1880 audio_in_start_capture(&priv->audio_in);
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1881 for (i = 0; i < priv->aud_skew_cnt; i++)
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1882 priv->audio_skew_buffer[i] = 0;
10653
d9dfbe5e1011 a/v sync improvements
henry
parents: 10538
diff changeset
1883 for (i = 0; i < priv->aud_skew_cnt; i++)
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1884 priv->audio_skew_delta_buffer[i] = 0;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1885
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1886 for (; !priv->shutdown;)
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1887 {
10704
1d991eb5cf02 a/v sync cleanups
henry
parents: 10653
diff changeset
1888 #ifdef DOUBLESPEED
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1889 read_doublespeed(priv);
10704
1d991eb5cf02 a/v sync cleanups
henry
parents: 10653
diff changeset
1890 #else
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1891 if (audio_in_read_chunk(&priv->audio_in, priv->audio_ringbuffer+priv->audio_tail*priv->audio_in.blocksize) < 0)
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1892 continue;
10704
1d991eb5cf02 a/v sync cleanups
henry
parents: 10653
diff changeset
1893 #endif
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1894 pthread_mutex_lock(&priv->skew_mutex);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1895 if (priv->first_frame == 0) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1896 // there is no first frame yet (unlikely to happen)
37126
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
1897 start_time_avg = priv->audio_start_time = get_curr_timestamp(priv->clk_id);
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1898 // fprintf(stderr, "warning - first frame not yet available!\n");
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1899 pthread_mutex_unlock(&priv->skew_mutex);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1900 continue;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1901 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1902 pthread_mutex_unlock(&priv->skew_mutex);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1903
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1904 priv->audio_recv_blocks_total++;
37126
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
1905 curr_timestamp = get_curr_timestamp(priv->clk_id);
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
1906 current_time = curr_timestamp - priv->audio_start_time;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1907
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1908 if (priv->audio_recv_blocks_total < priv->aud_skew_cnt*2) {
37126
6db1f7a10803 Use correct type of timestamps when recording from v4l2. Fix #2176
iive
parents: 35903
diff changeset
1909 start_time_avg += curr_timestamp - priv->audio_usecs_per_block*priv->audio_recv_blocks_total;
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1910 priv->audio_start_time = start_time_avg/(priv->audio_recv_blocks_total+1);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1911 }
10852
henry
parents: 10851
diff changeset
1912
32352
76f94c00a69f 1000l, %lf is not valid format string for printf (only for scanf) and actually
reimar
parents: 32141
diff changeset
1913 // fprintf(stderr, "spb = %f, bs = %d, skew = %f\n", priv->audio_secs_per_block, priv->audio_in.blocksize,
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1914 // (double)(current_time - 1e6*priv->audio_secs_per_block*priv->audio_recv_blocks_total)/1e6);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1915
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1916 // put the current skew into the ring buffer
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1917 priv->audio_skew_total -= priv->audio_skew_buffer[audio_skew_ptr];
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1918 priv->audio_skew_buffer[audio_skew_ptr] = current_time
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1919 - priv->audio_usecs_per_block*priv->audio_recv_blocks_total;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1920 priv->audio_skew_total += priv->audio_skew_buffer[audio_skew_ptr];
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1921
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1922 pthread_mutex_lock(&priv->skew_mutex);
10704
1d991eb5cf02 a/v sync cleanups
henry
parents: 10653
diff changeset
1923
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1924 // skew calculation
10704
1d991eb5cf02 a/v sync cleanups
henry
parents: 10653
diff changeset
1925
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1926 // compute the sliding average of the skews
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1927 if (priv->audio_recv_blocks_total > priv->aud_skew_cnt) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1928 priv->audio_skew = priv->audio_skew_total/priv->aud_skew_cnt;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1929 } else {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1930 priv->audio_skew = priv->audio_skew_total/priv->audio_recv_blocks_total;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1931 }
10653
d9dfbe5e1011 a/v sync improvements
henry
parents: 10538
diff changeset
1932
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1933 // put the current skew change (skew-prev_skew) into the ring buffer
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1934 priv->audio_skew_delta_total -= priv->audio_skew_delta_buffer[audio_skew_ptr];
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1935 priv->audio_skew_delta_buffer[audio_skew_ptr] = priv->audio_skew - prev_skew_uncorr;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1936 priv->audio_skew_delta_total += priv->audio_skew_delta_buffer[audio_skew_ptr];
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1937 prev_skew_uncorr = priv->audio_skew; // remember the _uncorrected_ average value
10704
1d991eb5cf02 a/v sync cleanups
henry
parents: 10653
diff changeset
1938
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1939 audio_skew_ptr = (audio_skew_ptr+1) % priv->aud_skew_cnt; // rotate the buffer pointer
10653
d9dfbe5e1011 a/v sync improvements
henry
parents: 10538
diff changeset
1940
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1941 // sliding average approximates the value in the middle of the interval
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1942 // so interpolate the skew value further to the current time
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1943 priv->audio_skew += priv->audio_skew_delta_total/2;
10653
d9dfbe5e1011 a/v sync improvements
henry
parents: 10538
diff changeset
1944
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1945 // now finally, priv->audio_skew contains fairly good approximation
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
1946 // of the current value
10653
d9dfbe5e1011 a/v sync improvements
henry
parents: 10538
diff changeset
1947
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1948 // current skew factor (assuming linearity)
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1949 // used for further interpolation in video_grabber
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1950 // probably overkill but seems to be necessary for
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1951 // stress testing by dropping half of the audio frames ;)
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1952 // especially when using ALSA with large block sizes
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1953 // where audio_skew remains a long while behind
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1954 if ((priv->audio_skew_measure_time != 0) && (current_time - priv->audio_skew_measure_time != 0)) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1955 priv->audio_skew_factor = (double)(priv->audio_skew-prev_skew)/(current_time - priv->audio_skew_measure_time);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1956 } else {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1957 priv->audio_skew_factor = 0.0;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1958 }
10852
henry
parents: 10851
diff changeset
1959
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1960 priv->audio_skew_measure_time = current_time;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1961 prev_skew = priv->audio_skew;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1962 priv->audio_skew += priv->audio_start_time - priv->first_frame;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1963 pthread_mutex_unlock(&priv->skew_mutex);
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29121
diff changeset
1964
32352
76f94c00a69f 1000l, %lf is not valid format string for printf (only for scanf) and actually
reimar
parents: 32141
diff changeset
1965 // fprintf(stderr, "audio_skew = %f, delta = %f\n", (double)priv->audio_skew/1e6, (double)priv->audio_skew_delta_total/1e6);
10851
41bad7ce4cc9 yet another sync fix
henry
parents: 10810
diff changeset
1966
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1967 pthread_mutex_lock(&priv->audio_mutex);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1968 if ((priv->audio_tail+1) % priv->audio_buffer_size == priv->audio_head) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1969 mp_msg(MSGT_TV, MSGL_ERR, "\ntoo bad - dropping audio frame !\n");
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1970 priv->audio_drop++;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1971 } else {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1972 priv->audio_tail = (priv->audio_tail+1) % priv->audio_buffer_size;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1973 priv->audio_cnt++;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1974 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1975 pthread_mutex_unlock(&priv->audio_mutex);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1976 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1977 return NULL;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1978 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1979
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1980 static double grab_audio_frame(priv_t *priv, char *buffer, int len)
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1981 {
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1982 mp_dbg(MSGT_TV, MSGL_DBG2, "grab_audio_frame(priv=%p, buffer=%p, len=%d)\n",
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1983 priv, buffer, len);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
1984
15449
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
1985 // hack: if grab_audio_frame is called first, it means we are used by mplayer
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
1986 // => switch to the mode which outputs audio immediately, even if
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
1987 // it should be silence
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
1988 if (priv->first) priv->audio_insert_null_samples = 1;
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
1989
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
1990 pthread_mutex_lock(&priv->audio_mutex);
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
1991 while (priv->audio_insert_null_samples
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1992 && priv->dropped_frames_timeshift - priv->dropped_frames_compensated >= priv->audio_usecs_per_block) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1993 // some frames were dropped - drop the corresponding number of audio blocks
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1994 if (priv->audio_drop) {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1995 priv->audio_drop--;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1996 } else {
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1997 if (priv->audio_head == priv->audio_tail) break;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1998 priv->audio_head = (priv->audio_head+1) % priv->audio_buffer_size;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
1999 }
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
2000 priv->dropped_frames_compensated += priv->audio_usecs_per_block;
10776
80402283a017 Fix immediatemode with mplayer (ie playing both sound and video)
albeu
parents: 10735
diff changeset
2001 }
80402283a017 Fix immediatemode with mplayer (ie playing both sound and video)
albeu
parents: 10735
diff changeset
2002
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
2003 // compensate for dropped audio frames
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
2004 if (priv->audio_drop && (priv->audio_head == priv->audio_tail)) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
2005 priv->audio_drop--;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
2006 memset(buffer, 0, len);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
2007 goto out;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
2008 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
2009
15449
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
2010 if (priv->audio_insert_null_samples && (priv->audio_head == priv->audio_tail)) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
2011 // return silence to avoid desync and stuttering
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
2012 memset(buffer, 0, len);
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
2013 priv->audio_null_blocks_inserted++;
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
2014 goto out;
15449
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
2015 }
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
2016
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
2017 pthread_mutex_unlock(&priv->audio_mutex);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
2018 while (priv->audio_head == priv->audio_tail) {
23151
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
2019 // this is mencoder => just wait until some audio is available
d2c6e0c71550 (cosmetics) replace tabs with spaces
voroshil
parents: 22381
diff changeset
2020 usleep(10000);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
2021 }
15451
bad4378c5456 10l forgotten comment
henry
parents: 15449
diff changeset
2022 pthread_mutex_lock(&priv->audio_mutex);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
2023 memcpy(buffer, priv->audio_ringbuffer+priv->audio_head*priv->audio_in.blocksize, len);
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
2024 priv->audio_head = (priv->audio_head+1) % priv->audio_buffer_size;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
2025 priv->audio_cnt--;
15449
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
2026 out:
a7966365a197 improve playback with mplayer -tv immediatemode=0
henry
parents: 15418
diff changeset
2027 pthread_mutex_unlock(&priv->audio_mutex);
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
2028 priv->audio_sent_blocks_total++;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
2029 return (double)priv->audio_sent_blocks_total*priv->audio_secs_per_block;
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
2030 }
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
2031
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
2032 static int get_audio_framesize(priv_t *priv)
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
2033 {
26756
c43ce7268677 cosmetics: Remove useless parentheses from return statements.
diego
parents: 25962
diff changeset
2034 return priv->audio_in.blocksize;
10536
527e978cb0f8 v4l2 support
henry
parents:
diff changeset
2035 }