Line | Branch | Exec | Source |
---|---|---|---|
1 | /* | ||
2 | * This file is part of FFmpeg. | ||
3 | * | ||
4 | * FFmpeg is free software; you can redistribute it and/or | ||
5 | * modify it under the terms of the GNU Lesser General Public | ||
6 | * License as published by the Free Software Foundation; either | ||
7 | * version 2.1 of the License, or (at your option) any later version. | ||
8 | * | ||
9 | * FFmpeg is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
12 | * Lesser General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU Lesser General Public | ||
15 | * License along with FFmpeg; if not, write to the Free Software | ||
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
17 | */ | ||
18 | |||
19 | #include <stdint.h> | ||
20 | #include <string.h> | ||
21 | |||
22 | #include "libavutil/avassert.h" | ||
23 | #include "libavutil/container_fifo.h" | ||
24 | #include "libavutil/error.h" | ||
25 | #include "libavutil/fifo.h" | ||
26 | #include "libavutil/frame.h" | ||
27 | #include "libavutil/intreadwrite.h" | ||
28 | #include "libavutil/mem.h" | ||
29 | #include "libavutil/thread.h" | ||
30 | |||
31 | #include "libavcodec/packet.h" | ||
32 | |||
33 | #include "thread_queue.h" | ||
34 | |||
35 | enum { | ||
36 | FINISHED_SEND = (1 << 0), | ||
37 | FINISHED_RECV = (1 << 1), | ||
38 | }; | ||
39 | |||
40 | struct ThreadQueue { | ||
41 | int *finished; | ||
42 | unsigned int nb_streams; | ||
43 | |||
44 | enum ThreadQueueType type; | ||
45 | |||
46 | AVContainerFifo *fifo; | ||
47 | AVFifo *fifo_stream_index; | ||
48 | |||
49 | pthread_mutex_t lock; | ||
50 | pthread_cond_t cond; | ||
51 | }; | ||
52 | |||
53 | 29932 | void tq_free(ThreadQueue **ptq) | |
54 | { | ||
55 | 29932 | ThreadQueue *tq = *ptq; | |
56 | |||
57 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 29932 times.
|
29932 | if (!tq) |
58 | ✗ | return; | |
59 | |||
60 | 29932 | av_container_fifo_free(&tq->fifo); | |
61 | 29932 | av_fifo_freep2(&tq->fifo_stream_index); | |
62 | |||
63 | 29932 | av_freep(&tq->finished); | |
64 | |||
65 | 29932 | pthread_cond_destroy(&tq->cond); | |
66 | 29932 | pthread_mutex_destroy(&tq->lock); | |
67 | |||
68 | 29932 | av_freep(ptq); | |
69 | } | ||
70 | |||
71 | 29932 | ThreadQueue *tq_alloc(unsigned int nb_streams, size_t queue_size, | |
72 | enum ThreadQueueType type) | ||
73 | { | ||
74 | ThreadQueue *tq; | ||
75 | int ret; | ||
76 | |||
77 | 29932 | tq = av_mallocz(sizeof(*tq)); | |
78 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 29932 times.
|
29932 | if (!tq) |
79 | ✗ | return NULL; | |
80 | |||
81 | 29932 | ret = pthread_cond_init(&tq->cond, NULL); | |
82 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 29932 times.
|
29932 | if (ret) { |
83 | ✗ | av_freep(&tq); | |
84 | ✗ | return NULL; | |
85 | } | ||
86 | |||
87 | 29932 | ret = pthread_mutex_init(&tq->lock, NULL); | |
88 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 29932 times.
|
29932 | if (ret) { |
89 | ✗ | pthread_cond_destroy(&tq->cond); | |
90 | ✗ | av_freep(&tq); | |
91 | ✗ | return NULL; | |
92 | } | ||
93 | |||
94 | 29932 | tq->finished = av_calloc(nb_streams, sizeof(*tq->finished)); | |
95 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 29932 times.
|
29932 | if (!tq->finished) |
96 | ✗ | goto fail; | |
97 | 29932 | tq->nb_streams = nb_streams; | |
98 | |||
99 | 29932 | tq->type = type; | |
100 | |||
101 | 29932 | tq->fifo = (type == THREAD_QUEUE_FRAMES) ? | |
102 |
2/2✓ Branch 0 taken 15250 times.
✓ Branch 1 taken 14682 times.
|
29932 | av_container_fifo_alloc_avframe(0) : av_container_fifo_alloc_avpacket(0); |
103 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 29932 times.
|
29932 | if (!tq->fifo) |
104 | ✗ | goto fail; | |
105 | |||
106 | 29932 | tq->fifo_stream_index = av_fifo_alloc2(queue_size, sizeof(unsigned), 0); | |
107 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 29932 times.
|
29932 | if (!tq->fifo_stream_index) |
108 | ✗ | goto fail; | |
109 | |||
110 | 29932 | return tq; | |
111 | ✗ | fail: | |
112 | ✗ | tq_free(&tq); | |
113 | ✗ | return NULL; | |
114 | } | ||
115 | |||
116 | 1736275 | int tq_send(ThreadQueue *tq, unsigned int stream_idx, void *data) | |
117 | { | ||
118 | int *finished; | ||
119 | int ret; | ||
120 | |||
121 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1736275 times.
|
1736275 | av_assert0(stream_idx < tq->nb_streams); |
122 | 1736275 | finished = &tq->finished[stream_idx]; | |
123 | |||
124 | 1736275 | pthread_mutex_lock(&tq->lock); | |
125 | |||
126 |
2/2✓ Branch 0 taken 1 times.
✓ Branch 1 taken 1736274 times.
|
1736275 | if (*finished & FINISHED_SEND) { |
127 | 1 | ret = AVERROR(EINVAL); | |
128 | 1 | goto finish; | |
129 | } | ||
130 | |||
131 |
4/4✓ Branch 0 taken 2142079 times.
✓ Branch 1 taken 6917 times.
✓ Branch 3 taken 412722 times.
✓ Branch 4 taken 1729357 times.
|
2148996 | while (!(*finished & FINISHED_RECV) && !av_fifo_can_write(tq->fifo_stream_index)) |
132 | 412722 | pthread_cond_wait(&tq->cond, &tq->lock); | |
133 | |||
134 |
2/2✓ Branch 0 taken 6917 times.
✓ Branch 1 taken 1729357 times.
|
1736274 | if (*finished & FINISHED_RECV) { |
135 | 6917 | ret = AVERROR_EOF; | |
136 | 6917 | *finished |= FINISHED_SEND; | |
137 | } else { | ||
138 | 1729357 | ret = av_fifo_write(tq->fifo_stream_index, &stream_idx, 1); | |
139 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1729357 times.
|
1729357 | if (ret < 0) |
140 | ✗ | goto finish; | |
141 | |||
142 | 1729357 | ret = av_container_fifo_write(tq->fifo, data, 0); | |
143 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1729357 times.
|
1729357 | if (ret < 0) |
144 | ✗ | goto finish; | |
145 | |||
146 | 1729357 | pthread_cond_broadcast(&tq->cond); | |
147 | } | ||
148 | |||
149 | 1736275 | finish: | |
150 | 1736275 | pthread_mutex_unlock(&tq->lock); | |
151 | |||
152 | 1736275 | return ret; | |
153 | } | ||
154 | |||
155 | 2480014 | static int receive_locked(ThreadQueue *tq, int *stream_idx, | |
156 | void *data) | ||
157 | { | ||
158 | 2480014 | unsigned int nb_finished = 0; | |
159 | |||
160 |
2/2✓ Branch 1 taken 1675509 times.
✓ Branch 2 taken 804663 times.
|
2480172 | while (av_container_fifo_read(tq->fifo, data, 0) >= 0) { |
161 | unsigned idx; | ||
162 | int ret; | ||
163 | |||
164 | 1675509 | ret = av_fifo_read(tq->fifo_stream_index, &idx, 1); | |
165 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1675509 times.
|
1675509 | av_assert0(ret >= 0); |
166 |
2/2✓ Branch 0 taken 158 times.
✓ Branch 1 taken 1675351 times.
|
1675509 | if (tq->finished[idx] & FINISHED_RECV) { |
167 | 158 | (tq->type == THREAD_QUEUE_FRAMES) ? | |
168 |
2/2✓ Branch 0 taken 7 times.
✓ Branch 1 taken 151 times.
|
158 | av_frame_unref(data) : av_packet_unref(data); |
169 | 158 | continue; | |
170 | } | ||
171 | |||
172 | 1675351 | *stream_idx = idx; | |
173 | 1675351 | return 0; | |
174 | } | ||
175 | |||
176 |
2/2✓ Branch 0 taken 1008297 times.
✓ Branch 1 taken 785281 times.
|
1793578 | for (unsigned int i = 0; i < tq->nb_streams; i++) { |
177 |
2/2✓ Branch 0 taken 973899 times.
✓ Branch 1 taken 34398 times.
|
1008297 | if (!tq->finished[i]) |
178 | 973899 | continue; | |
179 | |||
180 | /* return EOF to the consumer at most once for each stream */ | ||
181 |
2/2✓ Branch 0 taken 19382 times.
✓ Branch 1 taken 15016 times.
|
34398 | if (!(tq->finished[i] & FINISHED_RECV)) { |
182 | 19382 | tq->finished[i] |= FINISHED_RECV; | |
183 | 19382 | *stream_idx = i; | |
184 | 19382 | return AVERROR_EOF; | |
185 | } | ||
186 | |||
187 | 15016 | nb_finished++; | |
188 | } | ||
189 | |||
190 |
2/2✓ Branch 0 taken 7919 times.
✓ Branch 1 taken 777362 times.
|
785281 | return nb_finished == tq->nb_streams ? AVERROR_EOF : AVERROR(EAGAIN); |
191 | } | ||
192 | |||
193 | 1702652 | int tq_receive(ThreadQueue *tq, int *stream_idx, void *data) | |
194 | { | ||
195 | int ret; | ||
196 | |||
197 | 1702652 | *stream_idx = -1; | |
198 | |||
199 | 1702652 | pthread_mutex_lock(&tq->lock); | |
200 | |||
201 | 777362 | while (1) { | |
202 | 2480014 | size_t can_read = av_container_fifo_can_read(tq->fifo); | |
203 | |||
204 | 2480014 | ret = receive_locked(tq, stream_idx, data); | |
205 | |||
206 | // signal other threads if the fifo state changed | ||
207 |
2/2✓ Branch 1 taken 1675379 times.
✓ Branch 2 taken 804635 times.
|
2480014 | if (can_read != av_container_fifo_can_read(tq->fifo)) |
208 | 1675379 | pthread_cond_broadcast(&tq->cond); | |
209 | |||
210 |
2/2✓ Branch 0 taken 777362 times.
✓ Branch 1 taken 1702652 times.
|
2480014 | if (ret == AVERROR(EAGAIN)) { |
211 | 777362 | pthread_cond_wait(&tq->cond, &tq->lock); | |
212 | 777362 | continue; | |
213 | } | ||
214 | |||
215 | 1702652 | break; | |
216 | } | ||
217 | |||
218 | 1702652 | pthread_mutex_unlock(&tq->lock); | |
219 | |||
220 | 1702652 | return ret; | |
221 | } | ||
222 | |||
223 | 44288 | void tq_send_finish(ThreadQueue *tq, unsigned int stream_idx) | |
224 | { | ||
225 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 44288 times.
|
44288 | av_assert0(stream_idx < tq->nb_streams); |
226 | |||
227 | 44288 | pthread_mutex_lock(&tq->lock); | |
228 | |||
229 | /* mark the stream as send-finished; | ||
230 | * next time the consumer thread tries to read this stream it will get | ||
231 | * an EOF and recv-finished flag will be set */ | ||
232 | 44288 | tq->finished[stream_idx] |= FINISHED_SEND; | |
233 | 44288 | pthread_cond_broadcast(&tq->cond); | |
234 | |||
235 | 44288 | pthread_mutex_unlock(&tq->lock); | |
236 | 44288 | } | |
237 | |||
238 | 37394 | void tq_receive_finish(ThreadQueue *tq, unsigned int stream_idx) | |
239 | { | ||
240 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 37394 times.
|
37394 | av_assert0(stream_idx < tq->nb_streams); |
241 | |||
242 | 37394 | pthread_mutex_lock(&tq->lock); | |
243 | |||
244 | /* mark the stream as recv-finished; | ||
245 | * next time the producer thread tries to send for this stream, it will | ||
246 | * get an EOF and send-finished flag will be set */ | ||
247 | 37394 | tq->finished[stream_idx] |= FINISHED_RECV; | |
248 | 37394 | pthread_cond_broadcast(&tq->cond); | |
249 | |||
250 | 37394 | pthread_mutex_unlock(&tq->lock); | |
251 | 37394 | } | |
252 |