Commit | Line | Data |
---|---|---|
01310af2 FB |
1 | /* |
2 | * FFplay : Simple Media Player based on the ffmpeg libraries | |
3 | * Copyright (c) 2003 Fabrice Bellard | |
4 | * | |
b78e7197 DB |
5 | * This file is part of FFmpeg. |
6 | * | |
7 | * FFmpeg is free software; you can redistribute it and/or | |
01310af2 FB |
8 | * modify it under the terms of the GNU Lesser General Public |
9 | * License as published by the Free Software Foundation; either | |
b78e7197 | 10 | * version 2.1 of the License, or (at your option) any later version. |
01310af2 | 11 | * |
b78e7197 | 12 | * FFmpeg is distributed in the hope that it will be useful, |
01310af2 FB |
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 | * Lesser General Public License for more details. | |
16 | * | |
17 | * You should have received a copy of the GNU Lesser General Public | |
b78e7197 | 18 | * License along with FFmpeg; if not, write to the Free Software |
5509bffa | 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
01310af2 | 20 | */ |
364a9607 | 21 | |
0f4e8165 RB |
22 | #include <math.h> |
23 | #include <limits.h> | |
245976da DB |
24 | #include "libavutil/avstring.h" |
25 | #include "libavformat/avformat.h" | |
26 | #include "libavformat/rtsp.h" | |
27 | #include "libavdevice/avdevice.h" | |
28 | #include "libswscale/swscale.h" | |
5a4476e2 | 29 | #include "libavcodec/audioconvert.h" |
01310af2 FB |
30 | |
31 | #include "cmdutils.h" | |
32 | ||
33 | #include <SDL.h> | |
34 | #include <SDL_thread.h> | |
35 | ||
2f30a81d | 36 | #ifdef __MINGW32__ |
31319a8c FB |
37 | #undef main /* We don't want SDL to override our main() */ |
38 | #endif | |
39 | ||
c367d067 MN |
40 | #undef exit |
41 | ||
64555bd9 | 42 | const char program_name[] = "FFplay"; |
ea9c581f | 43 | const int program_birth_year = 2003; |
4cfac5bc | 44 | |
638c9d91 FB |
45 | //#define DEBUG_SYNC |
46 | ||
01310af2 FB |
47 | #define MAX_VIDEOQ_SIZE (5 * 256 * 1024) |
48 | #define MAX_AUDIOQ_SIZE (5 * 16 * 1024) | |
72ce053b | 49 | #define MAX_SUBTITLEQ_SIZE (5 * 16 * 1024) |
01310af2 | 50 | |
638c9d91 FB |
51 | /* SDL audio buffer size, in samples. Should be small to have precise |
52 | A/V sync as SDL does not have hardware buffer fullness info. */ | |
53 | #define SDL_AUDIO_BUFFER_SIZE 1024 | |
54 | ||
55 | /* no AV sync correction is done if below the AV sync threshold */ | |
7e0140cb | 56 | #define AV_SYNC_THRESHOLD 0.01 |
638c9d91 FB |
57 | /* no AV correction is done if too big error */ |
58 | #define AV_NOSYNC_THRESHOLD 10.0 | |
59 | ||
60 | /* maximum audio speed change to get correct sync */ | |
61 | #define SAMPLE_CORRECTION_PERCENT_MAX 10 | |
62 | ||
63 | /* we use about AUDIO_DIFF_AVG_NB A-V differences to make the average */ | |
64 | #define AUDIO_DIFF_AVG_NB 20 | |
65 | ||
01310af2 FB |
66 | /* NOTE: the size must be big enough to compensate the hardware audio buffersize size */ |
67 | #define SAMPLE_ARRAY_SIZE (2*65536) | |
68 | ||
03ae87a3 LA |
69 | static int sws_flags = SWS_BICUBIC; |
70 | ||
01310af2 FB |
71 | typedef struct PacketQueue { |
72 | AVPacketList *first_pkt, *last_pkt; | |
73 | int nb_packets; | |
74 | int size; | |
75 | int abort_request; | |
76 | SDL_mutex *mutex; | |
77 | SDL_cond *cond; | |
78 | } PacketQueue; | |
79 | ||
80 | #define VIDEO_PICTURE_QUEUE_SIZE 1 | |
72ce053b | 81 | #define SUBPICTURE_QUEUE_SIZE 4 |
01310af2 FB |
82 | |
83 | typedef struct VideoPicture { | |
267e9dfa | 84 | double pts; ///<presentation time stamp for this picture |
01310af2 FB |
85 | SDL_Overlay *bmp; |
86 | int width, height; /* source height & width */ | |
87 | int allocated; | |
88 | } VideoPicture; | |
89 | ||
72ce053b IC |
90 | typedef struct SubPicture { |
91 | double pts; /* presentation time stamp for this picture */ | |
92 | AVSubtitle sub; | |
93 | } SubPicture; | |
94 | ||
01310af2 FB |
95 | enum { |
96 | AV_SYNC_AUDIO_MASTER, /* default choice */ | |
97 | AV_SYNC_VIDEO_MASTER, | |
638c9d91 | 98 | AV_SYNC_EXTERNAL_CLOCK, /* synchronize to an external clock */ |
01310af2 FB |
99 | }; |
100 | ||
101 | typedef struct VideoState { | |
102 | SDL_Thread *parse_tid; | |
103 | SDL_Thread *video_tid; | |
638c9d91 | 104 | AVInputFormat *iformat; |
01310af2 FB |
105 | int no_background; |
106 | int abort_request; | |
107 | int paused; | |
416e3508 | 108 | int last_paused; |
72ea344b | 109 | int seek_req; |
3ba1438d | 110 | int seek_flags; |
72ea344b | 111 | int64_t seek_pos; |
01310af2 FB |
112 | AVFormatContext *ic; |
113 | int dtg_active_format; | |
114 | ||
115 | int audio_stream; | |
115329f1 | 116 | |
01310af2 | 117 | int av_sync_type; |
638c9d91 FB |
118 | double external_clock; /* external clock base */ |
119 | int64_t external_clock_time; | |
115329f1 | 120 | |
638c9d91 FB |
121 | double audio_clock; |
122 | double audio_diff_cum; /* used for AV difference average computation */ | |
123 | double audio_diff_avg_coef; | |
124 | double audio_diff_threshold; | |
125 | int audio_diff_avg_count; | |
01310af2 FB |
126 | AVStream *audio_st; |
127 | PacketQueue audioq; | |
128 | int audio_hw_buf_size; | |
129 | /* samples output by the codec. we reserve more space for avsync | |
130 | compensation */ | |
5a4476e2 PR |
131 | DECLARE_ALIGNED(16,uint8_t,audio_buf1[(AVCODEC_MAX_AUDIO_FRAME_SIZE * 3) / 2]); |
132 | DECLARE_ALIGNED(16,uint8_t,audio_buf2[(AVCODEC_MAX_AUDIO_FRAME_SIZE * 3) / 2]); | |
133 | uint8_t *audio_buf; | |
7fea94ce | 134 | unsigned int audio_buf_size; /* in bytes */ |
01310af2 FB |
135 | int audio_buf_index; /* in bytes */ |
136 | AVPacket audio_pkt; | |
137 | uint8_t *audio_pkt_data; | |
138 | int audio_pkt_size; | |
5a4476e2 PR |
139 | enum SampleFormat audio_src_fmt; |
140 | AVAudioConvert *reformat_ctx; | |
115329f1 | 141 | |
01310af2 FB |
142 | int show_audio; /* if true, display audio samples */ |
143 | int16_t sample_array[SAMPLE_ARRAY_SIZE]; | |
144 | int sample_array_index; | |
5e0257e3 | 145 | int last_i_start; |
115329f1 | 146 | |
72ce053b IC |
147 | SDL_Thread *subtitle_tid; |
148 | int subtitle_stream; | |
149 | int subtitle_stream_changed; | |
150 | AVStream *subtitle_st; | |
151 | PacketQueue subtitleq; | |
152 | SubPicture subpq[SUBPICTURE_QUEUE_SIZE]; | |
153 | int subpq_size, subpq_rindex, subpq_windex; | |
154 | SDL_mutex *subpq_mutex; | |
155 | SDL_cond *subpq_cond; | |
115329f1 | 156 | |
638c9d91 FB |
157 | double frame_timer; |
158 | double frame_last_pts; | |
159 | double frame_last_delay; | |
115329f1 | 160 | double video_clock; ///<pts of last decoded frame / predicted pts of next decoded frame |
01310af2 FB |
161 | int video_stream; |
162 | AVStream *video_st; | |
163 | PacketQueue videoq; | |
267e9dfa MN |
164 | double video_current_pts; ///<current displayed pts (different from video_clock if frame fifos are used) |
165 | int64_t video_current_pts_time; ///<time (av_gettime) at which we updated video_current_pts - used to have running video pts | |
01310af2 FB |
166 | VideoPicture pictq[VIDEO_PICTURE_QUEUE_SIZE]; |
167 | int pictq_size, pictq_rindex, pictq_windex; | |
168 | SDL_mutex *pictq_mutex; | |
169 | SDL_cond *pictq_cond; | |
115329f1 | 170 | |
01310af2 FB |
171 | // QETimer *video_timer; |
172 | char filename[1024]; | |
173 | int width, height, xleft, ytop; | |
174 | } VideoState; | |
175 | ||
358061f6 | 176 | static void show_help(void); |
638c9d91 | 177 | static int audio_write_get_buf_size(VideoState *is); |
01310af2 FB |
178 | |
179 | /* options specified by the user */ | |
180 | static AVInputFormat *file_iformat; | |
181 | static const char *input_filename; | |
182 | static int fs_screen_width; | |
183 | static int fs_screen_height; | |
fccb19e3 MN |
184 | static int screen_width = 0; |
185 | static int screen_height = 0; | |
e4b89522 LW |
186 | static int frame_width = 0; |
187 | static int frame_height = 0; | |
188 | static enum PixelFormat frame_pix_fmt = PIX_FMT_NONE; | |
01310af2 FB |
189 | static int audio_disable; |
190 | static int video_disable; | |
a8062103 | 191 | static int wanted_audio_stream= 0; |
4d8243d3 | 192 | static int wanted_video_stream= 0; |
94b594c6 | 193 | static int seek_by_bytes; |
01310af2 FB |
194 | static int display_disable; |
195 | static int show_status; | |
638c9d91 | 196 | static int av_sync_type = AV_SYNC_AUDIO_MASTER; |
72ea344b | 197 | static int64_t start_time = AV_NOPTS_VALUE; |
e26a8335 | 198 | static int debug = 0; |
0c9bbaec | 199 | static int debug_mv = 0; |
bba04f1e | 200 | static int step = 0; |
c62c07d3 | 201 | static int thread_count = 1; |
6387c3e6 | 202 | static int workaround_bugs = 1; |
6fc5b059 | 203 | static int fast = 0; |
30bc6613 | 204 | static int genpts = 0; |
178fcca8 MN |
205 | static int lowres = 0; |
206 | static int idct = FF_IDCT_AUTO; | |
8c3eba7c MN |
207 | static enum AVDiscard skip_frame= AVDISCARD_DEFAULT; |
208 | static enum AVDiscard skip_idct= AVDISCARD_DEFAULT; | |
209 | static enum AVDiscard skip_loop_filter= AVDISCARD_DEFAULT; | |
1471c6c2 | 210 | static int error_resilience = FF_ER_CAREFUL; |
1b51e051 | 211 | static int error_concealment = 3; |
5039185a | 212 | static int decoder_reorder_pts= 0; |
01310af2 FB |
213 | |
214 | /* current context */ | |
215 | static int is_full_screen; | |
216 | static VideoState *cur_stream; | |
5e0257e3 | 217 | static int64_t audio_callback_time; |
01310af2 | 218 | |
39c6a118 MN |
219 | AVPacket flush_pkt; |
220 | ||
01310af2 FB |
221 | #define FF_ALLOC_EVENT (SDL_USEREVENT) |
222 | #define FF_REFRESH_EVENT (SDL_USEREVENT + 1) | |
638c9d91 | 223 | #define FF_QUIT_EVENT (SDL_USEREVENT + 2) |
01310af2 FB |
224 | |
225 | SDL_Surface *screen; | |
226 | ||
227 | /* packet queue handling */ | |
228 | static void packet_queue_init(PacketQueue *q) | |
229 | { | |
230 | memset(q, 0, sizeof(PacketQueue)); | |
231 | q->mutex = SDL_CreateMutex(); | |
232 | q->cond = SDL_CreateCond(); | |
233 | } | |
234 | ||
72ea344b | 235 | static void packet_queue_flush(PacketQueue *q) |
01310af2 FB |
236 | { |
237 | AVPacketList *pkt, *pkt1; | |
238 | ||
687fae2b | 239 | SDL_LockMutex(q->mutex); |
01310af2 FB |
240 | for(pkt = q->first_pkt; pkt != NULL; pkt = pkt1) { |
241 | pkt1 = pkt->next; | |
242 | av_free_packet(&pkt->pkt); | |
da6c4573 | 243 | av_freep(&pkt); |
01310af2 | 244 | } |
72ea344b FB |
245 | q->last_pkt = NULL; |
246 | q->first_pkt = NULL; | |
247 | q->nb_packets = 0; | |
248 | q->size = 0; | |
687fae2b | 249 | SDL_UnlockMutex(q->mutex); |
72ea344b FB |
250 | } |
251 | ||
252 | static void packet_queue_end(PacketQueue *q) | |
253 | { | |
254 | packet_queue_flush(q); | |
01310af2 FB |
255 | SDL_DestroyMutex(q->mutex); |
256 | SDL_DestroyCond(q->cond); | |
257 | } | |
258 | ||
259 | static int packet_queue_put(PacketQueue *q, AVPacket *pkt) | |
260 | { | |
261 | AVPacketList *pkt1; | |
262 | ||
72ea344b | 263 | /* duplicate the packet */ |
39c6a118 | 264 | if (pkt!=&flush_pkt && av_dup_packet(pkt) < 0) |
72ea344b | 265 | return -1; |
115329f1 | 266 | |
01310af2 FB |
267 | pkt1 = av_malloc(sizeof(AVPacketList)); |
268 | if (!pkt1) | |
269 | return -1; | |
270 | pkt1->pkt = *pkt; | |
271 | pkt1->next = NULL; | |
272 | ||
72ea344b | 273 | |
01310af2 FB |
274 | SDL_LockMutex(q->mutex); |
275 | ||
276 | if (!q->last_pkt) | |
277 | ||
278 | q->first_pkt = pkt1; | |
279 | else | |
280 | q->last_pkt->next = pkt1; | |
281 | q->last_pkt = pkt1; | |
282 | q->nb_packets++; | |
283 | q->size += pkt1->pkt.size; | |
284 | /* XXX: should duplicate packet data in DV case */ | |
285 | SDL_CondSignal(q->cond); | |
286 | ||
287 | SDL_UnlockMutex(q->mutex); | |
288 | return 0; | |
289 | } | |
290 | ||
291 | static void packet_queue_abort(PacketQueue *q) | |
292 | { | |
293 | SDL_LockMutex(q->mutex); | |
294 | ||
295 | q->abort_request = 1; | |
115329f1 | 296 | |
01310af2 FB |
297 | SDL_CondSignal(q->cond); |
298 | ||
299 | SDL_UnlockMutex(q->mutex); | |
300 | } | |
301 | ||
302 | /* return < 0 if aborted, 0 if no packet and > 0 if packet. */ | |
303 | static int packet_queue_get(PacketQueue *q, AVPacket *pkt, int block) | |
304 | { | |
305 | AVPacketList *pkt1; | |
306 | int ret; | |
307 | ||
308 | SDL_LockMutex(q->mutex); | |
309 | ||
310 | for(;;) { | |
311 | if (q->abort_request) { | |
312 | ret = -1; | |
313 | break; | |
314 | } | |
115329f1 | 315 | |
01310af2 FB |
316 | pkt1 = q->first_pkt; |
317 | if (pkt1) { | |
318 | q->first_pkt = pkt1->next; | |
319 | if (!q->first_pkt) | |
320 | q->last_pkt = NULL; | |
321 | q->nb_packets--; | |
322 | q->size -= pkt1->pkt.size; | |
323 | *pkt = pkt1->pkt; | |
324 | av_free(pkt1); | |
325 | ret = 1; | |
326 | break; | |
327 | } else if (!block) { | |
328 | ret = 0; | |
329 | break; | |
330 | } else { | |
331 | SDL_CondWait(q->cond, q->mutex); | |
332 | } | |
333 | } | |
334 | SDL_UnlockMutex(q->mutex); | |
335 | return ret; | |
336 | } | |
337 | ||
115329f1 | 338 | static inline void fill_rectangle(SDL_Surface *screen, |
01310af2 FB |
339 | int x, int y, int w, int h, int color) |
340 | { | |
341 | SDL_Rect rect; | |
342 | rect.x = x; | |
343 | rect.y = y; | |
344 | rect.w = w; | |
345 | rect.h = h; | |
346 | SDL_FillRect(screen, &rect, color); | |
347 | } | |
348 | ||
349 | #if 0 | |
350 | /* draw only the border of a rectangle */ | |
351 | void fill_border(VideoState *s, int x, int y, int w, int h, int color) | |
352 | { | |
353 | int w1, w2, h1, h2; | |
354 | ||
355 | /* fill the background */ | |
356 | w1 = x; | |
357 | if (w1 < 0) | |
358 | w1 = 0; | |
359 | w2 = s->width - (x + w); | |
360 | if (w2 < 0) | |
361 | w2 = 0; | |
362 | h1 = y; | |
363 | if (h1 < 0) | |
364 | h1 = 0; | |
365 | h2 = s->height - (y + h); | |
366 | if (h2 < 0) | |
367 | h2 = 0; | |
115329f1 DB |
368 | fill_rectangle(screen, |
369 | s->xleft, s->ytop, | |
370 | w1, s->height, | |
01310af2 | 371 | color); |
115329f1 DB |
372 | fill_rectangle(screen, |
373 | s->xleft + s->width - w2, s->ytop, | |
374 | w2, s->height, | |
01310af2 | 375 | color); |
115329f1 DB |
376 | fill_rectangle(screen, |
377 | s->xleft + w1, s->ytop, | |
378 | s->width - w1 - w2, h1, | |
01310af2 | 379 | color); |
115329f1 | 380 | fill_rectangle(screen, |
01310af2 FB |
381 | s->xleft + w1, s->ytop + s->height - h2, |
382 | s->width - w1 - w2, h2, | |
383 | color); | |
384 | } | |
385 | #endif | |
386 | ||
72ce053b IC |
387 | |
388 | ||
389 | #define SCALEBITS 10 | |
390 | #define ONE_HALF (1 << (SCALEBITS - 1)) | |
391 | #define FIX(x) ((int) ((x) * (1<<SCALEBITS) + 0.5)) | |
392 | ||
393 | #define RGB_TO_Y_CCIR(r, g, b) \ | |
394 | ((FIX(0.29900*219.0/255.0) * (r) + FIX(0.58700*219.0/255.0) * (g) + \ | |
395 | FIX(0.11400*219.0/255.0) * (b) + (ONE_HALF + (16 << SCALEBITS))) >> SCALEBITS) | |
396 | ||
397 | #define RGB_TO_U_CCIR(r1, g1, b1, shift)\ | |
398 | (((- FIX(0.16874*224.0/255.0) * r1 - FIX(0.33126*224.0/255.0) * g1 + \ | |
399 | FIX(0.50000*224.0/255.0) * b1 + (ONE_HALF << shift) - 1) >> (SCALEBITS + shift)) + 128) | |
400 | ||
401 | #define RGB_TO_V_CCIR(r1, g1, b1, shift)\ | |
402 | (((FIX(0.50000*224.0/255.0) * r1 - FIX(0.41869*224.0/255.0) * g1 - \ | |
403 | FIX(0.08131*224.0/255.0) * b1 + (ONE_HALF << shift) - 1) >> (SCALEBITS + shift)) + 128) | |
404 | ||
405 | #define ALPHA_BLEND(a, oldp, newp, s)\ | |
406 | ((((oldp << s) * (255 - (a))) + (newp * (a))) / (255 << s)) | |
407 | ||
408 | #define RGBA_IN(r, g, b, a, s)\ | |
409 | {\ | |
410 | unsigned int v = ((const uint32_t *)(s))[0];\ | |
411 | a = (v >> 24) & 0xff;\ | |
412 | r = (v >> 16) & 0xff;\ | |
413 | g = (v >> 8) & 0xff;\ | |
414 | b = v & 0xff;\ | |
415 | } | |
416 | ||
417 | #define YUVA_IN(y, u, v, a, s, pal)\ | |
418 | {\ | |
57cf99f2 | 419 | unsigned int val = ((const uint32_t *)(pal))[*(const uint8_t*)(s)];\ |
72ce053b IC |
420 | a = (val >> 24) & 0xff;\ |
421 | y = (val >> 16) & 0xff;\ | |
422 | u = (val >> 8) & 0xff;\ | |
423 | v = val & 0xff;\ | |
424 | } | |
425 | ||
426 | #define YUVA_OUT(d, y, u, v, a)\ | |
427 | {\ | |
428 | ((uint32_t *)(d))[0] = (a << 24) | (y << 16) | (u << 8) | v;\ | |
429 | } | |
430 | ||
431 | ||
432 | #define BPP 1 | |
433 | ||
0a8cd696 | 434 | static void blend_subrect(AVPicture *dst, const AVSubtitleRect *rect, int imgw, int imgh) |
72ce053b IC |
435 | { |
436 | int wrap, wrap3, width2, skip2; | |
437 | int y, u, v, a, u1, v1, a1, w, h; | |
438 | uint8_t *lum, *cb, *cr; | |
439 | const uint8_t *p; | |
440 | const uint32_t *pal; | |
9cb5a11e RD |
441 | int dstx, dsty, dstw, dsth; |
442 | ||
0a8cd696 | 443 | dstx = FFMIN(FFMAX(rect->x, 0), imgw); |
9cb5a11e | 444 | dstw = FFMIN(FFMAX(rect->w, 0), imgw - dstx); |
0a8cd696 | 445 | dsty = FFMIN(FFMAX(rect->y, 0), imgh); |
9cb5a11e RD |
446 | dsth = FFMIN(FFMAX(rect->h, 0), imgh - dsty); |
447 | lum = dst->data[0] + dsty * dst->linesize[0]; | |
448 | cb = dst->data[1] + (dsty >> 1) * dst->linesize[1]; | |
449 | cr = dst->data[2] + (dsty >> 1) * dst->linesize[2]; | |
450 | ||
451 | width2 = (dstw + 1) >> 1; | |
452 | skip2 = dstx >> 1; | |
72ce053b IC |
453 | wrap = dst->linesize[0]; |
454 | wrap3 = rect->linesize; | |
455 | p = rect->bitmap; | |
456 | pal = rect->rgba_palette; /* Now in YCrCb! */ | |
115329f1 | 457 | |
9cb5a11e RD |
458 | if (dsty & 1) { |
459 | lum += dstx; | |
72ce053b IC |
460 | cb += skip2; |
461 | cr += skip2; | |
115329f1 | 462 | |
9cb5a11e | 463 | if (dstx & 1) { |
72ce053b IC |
464 | YUVA_IN(y, u, v, a, p, pal); |
465 | lum[0] = ALPHA_BLEND(a, lum[0], y, 0); | |
466 | cb[0] = ALPHA_BLEND(a >> 2, cb[0], u, 0); | |
467 | cr[0] = ALPHA_BLEND(a >> 2, cr[0], v, 0); | |
468 | cb++; | |
469 | cr++; | |
470 | lum++; | |
471 | p += BPP; | |
472 | } | |
9cb5a11e | 473 | for(w = dstw - (dstx & 1); w >= 2; w -= 2) { |
72ce053b IC |
474 | YUVA_IN(y, u, v, a, p, pal); |
475 | u1 = u; | |
476 | v1 = v; | |
477 | a1 = a; | |
478 | lum[0] = ALPHA_BLEND(a, lum[0], y, 0); | |
479 | ||
480 | YUVA_IN(y, u, v, a, p + BPP, pal); | |
481 | u1 += u; | |
482 | v1 += v; | |
483 | a1 += a; | |
484 | lum[1] = ALPHA_BLEND(a, lum[1], y, 0); | |
485 | cb[0] = ALPHA_BLEND(a1 >> 2, cb[0], u1, 1); | |
486 | cr[0] = ALPHA_BLEND(a1 >> 2, cr[0], v1, 1); | |
487 | cb++; | |
488 | cr++; | |
489 | p += 2 * BPP; | |
490 | lum += 2; | |
491 | } | |
492 | if (w) { | |
493 | YUVA_IN(y, u, v, a, p, pal); | |
494 | lum[0] = ALPHA_BLEND(a, lum[0], y, 0); | |
495 | cb[0] = ALPHA_BLEND(a >> 2, cb[0], u, 0); | |
496 | cr[0] = ALPHA_BLEND(a >> 2, cr[0], v, 0); | |
497 | } | |
9cb5a11e RD |
498 | p += wrap3 + (wrap3 - dstw * BPP); |
499 | lum += wrap + (wrap - dstw - dstx); | |
72ce053b IC |
500 | cb += dst->linesize[1] - width2 - skip2; |
501 | cr += dst->linesize[2] - width2 - skip2; | |
502 | } | |
9cb5a11e RD |
503 | for(h = dsth - (dsty & 1); h >= 2; h -= 2) { |
504 | lum += dstx; | |
72ce053b IC |
505 | cb += skip2; |
506 | cr += skip2; | |
115329f1 | 507 | |
9cb5a11e | 508 | if (dstx & 1) { |
72ce053b IC |
509 | YUVA_IN(y, u, v, a, p, pal); |
510 | u1 = u; | |
511 | v1 = v; | |
512 | a1 = a; | |
513 | lum[0] = ALPHA_BLEND(a, lum[0], y, 0); | |
514 | p += wrap3; | |
515 | lum += wrap; | |
516 | YUVA_IN(y, u, v, a, p, pal); | |
517 | u1 += u; | |
518 | v1 += v; | |
519 | a1 += a; | |
520 | lum[0] = ALPHA_BLEND(a, lum[0], y, 0); | |
521 | cb[0] = ALPHA_BLEND(a1 >> 2, cb[0], u1, 1); | |
522 | cr[0] = ALPHA_BLEND(a1 >> 2, cr[0], v1, 1); | |
523 | cb++; | |
524 | cr++; | |
525 | p += -wrap3 + BPP; | |
526 | lum += -wrap + 1; | |
527 | } | |
9cb5a11e | 528 | for(w = dstw - (dstx & 1); w >= 2; w -= 2) { |
72ce053b IC |
529 | YUVA_IN(y, u, v, a, p, pal); |
530 | u1 = u; | |
531 | v1 = v; | |
532 | a1 = a; | |
533 | lum[0] = ALPHA_BLEND(a, lum[0], y, 0); | |
534 | ||
535 | YUVA_IN(y, u, v, a, p, pal); | |
536 | u1 += u; | |
537 | v1 += v; | |
538 | a1 += a; | |
539 | lum[1] = ALPHA_BLEND(a, lum[1], y, 0); | |
540 | p += wrap3; | |
541 | lum += wrap; | |
542 | ||
543 | YUVA_IN(y, u, v, a, p, pal); | |
544 | u1 += u; | |
545 | v1 += v; | |
546 | a1 += a; | |
547 | lum[0] = ALPHA_BLEND(a, lum[0], y, 0); | |
548 | ||
549 | YUVA_IN(y, u, v, a, p, pal); | |
550 | u1 += u; | |
551 | v1 += v; | |
552 | a1 += a; | |
553 | lum[1] = ALPHA_BLEND(a, lum[1], y, 0); | |
554 | ||
555 | cb[0] = ALPHA_BLEND(a1 >> 2, cb[0], u1, 2); | |
556 | cr[0] = ALPHA_BLEND(a1 >> 2, cr[0], v1, 2); | |
557 | ||
558 | cb++; | |
559 | cr++; | |
560 | p += -wrap3 + 2 * BPP; | |
561 | lum += -wrap + 2; | |
562 | } | |
563 | if (w) { | |
564 | YUVA_IN(y, u, v, a, p, pal); | |
565 | u1 = u; | |
566 | v1 = v; | |
567 | a1 = a; | |
568 | lum[0] = ALPHA_BLEND(a, lum[0], y, 0); | |
569 | p += wrap3; | |
570 | lum += wrap; | |
571 | YUVA_IN(y, u, v, a, p, pal); | |
572 | u1 += u; | |
573 | v1 += v; | |
574 | a1 += a; | |
575 | lum[0] = ALPHA_BLEND(a, lum[0], y, 0); | |
576 | cb[0] = ALPHA_BLEND(a1 >> 2, cb[0], u1, 1); | |
577 | cr[0] = ALPHA_BLEND(a1 >> 2, cr[0], v1, 1); | |
578 | cb++; | |
579 | cr++; | |
580 | p += -wrap3 + BPP; | |
581 | lum += -wrap + 1; | |
582 | } | |
9cb5a11e RD |
583 | p += wrap3 + (wrap3 - dstw * BPP); |
584 | lum += wrap + (wrap - dstw - dstx); | |
72ce053b IC |
585 | cb += dst->linesize[1] - width2 - skip2; |
586 | cr += dst->linesize[2] - width2 - skip2; | |
587 | } | |
588 | /* handle odd height */ | |
589 | if (h) { | |
9cb5a11e | 590 | lum += dstx; |
72ce053b IC |
591 | cb += skip2; |
592 | cr += skip2; | |
115329f1 | 593 | |
9cb5a11e | 594 | if (dstx & 1) { |
72ce053b IC |
595 | YUVA_IN(y, u, v, a, p, pal); |
596 | lum[0] = ALPHA_BLEND(a, lum[0], y, 0); | |
597 | cb[0] = ALPHA_BLEND(a >> 2, cb[0], u, 0); | |
598 | cr[0] = ALPHA_BLEND(a >> 2, cr[0], v, 0); | |
599 | cb++; | |
600 | cr++; | |
601 | lum++; | |
602 | p += BPP; | |
603 | } | |
9cb5a11e | 604 | for(w = dstw - (dstx & 1); w >= 2; w -= 2) { |
72ce053b IC |
605 | YUVA_IN(y, u, v, a, p, pal); |
606 | u1 = u; | |
607 | v1 = v; | |
608 | a1 = a; | |
609 | lum[0] = ALPHA_BLEND(a, lum[0], y, 0); | |
610 | ||
611 | YUVA_IN(y, u, v, a, p + BPP, pal); | |
612 | u1 += u; | |
613 | v1 += v; | |
614 | a1 += a; | |
615 | lum[1] = ALPHA_BLEND(a, lum[1], y, 0); | |
616 | cb[0] = ALPHA_BLEND(a1 >> 2, cb[0], u, 1); | |
617 | cr[0] = ALPHA_BLEND(a1 >> 2, cr[0], v, 1); | |
618 | cb++; | |
619 | cr++; | |
620 | p += 2 * BPP; | |
621 | lum += 2; | |
622 | } | |
623 | if (w) { | |
624 | YUVA_IN(y, u, v, a, p, pal); | |
625 | lum[0] = ALPHA_BLEND(a, lum[0], y, 0); | |
626 | cb[0] = ALPHA_BLEND(a >> 2, cb[0], u, 0); | |
627 | cr[0] = ALPHA_BLEND(a >> 2, cr[0], v, 0); | |
628 | } | |
629 | } | |
630 | } | |
631 | ||
632 | static void free_subpicture(SubPicture *sp) | |
633 | { | |
634 | int i; | |
115329f1 | 635 | |
72ce053b IC |
636 | for (i = 0; i < sp->sub.num_rects; i++) |
637 | { | |
638 | av_free(sp->sub.rects[i].bitmap); | |
639 | av_free(sp->sub.rects[i].rgba_palette); | |
640 | } | |
115329f1 | 641 | |
72ce053b | 642 | av_free(sp->sub.rects); |
115329f1 | 643 | |
72ce053b IC |
644 | memset(&sp->sub, 0, sizeof(AVSubtitle)); |
645 | } | |
646 | ||
01310af2 FB |
647 | static void video_image_display(VideoState *is) |
648 | { | |
649 | VideoPicture *vp; | |
72ce053b IC |
650 | SubPicture *sp; |
651 | AVPicture pict; | |
01310af2 FB |
652 | float aspect_ratio; |
653 | int width, height, x, y; | |
654 | SDL_Rect rect; | |
72ce053b | 655 | int i; |
01310af2 FB |
656 | |
657 | vp = &is->pictq[is->pictq_rindex]; | |
658 | if (vp->bmp) { | |
659 | /* XXX: use variable in the frame */ | |
115329f1 | 660 | if (is->video_st->codec->sample_aspect_ratio.num == 0) |
72ea344b FB |
661 | aspect_ratio = 0; |
662 | else | |
115329f1 | 663 | aspect_ratio = av_q2d(is->video_st->codec->sample_aspect_ratio) |
cea96420 | 664 | * is->video_st->codec->width / is->video_st->codec->height; |
01310af2 | 665 | if (aspect_ratio <= 0.0) |
115329f1 | 666 | aspect_ratio = (float)is->video_st->codec->width / |
01f4895c | 667 | (float)is->video_st->codec->height; |
01310af2 FB |
668 | /* if an active format is indicated, then it overrides the |
669 | mpeg format */ | |
670 | #if 0 | |
01f4895c MN |
671 | if (is->video_st->codec->dtg_active_format != is->dtg_active_format) { |
672 | is->dtg_active_format = is->video_st->codec->dtg_active_format; | |
01310af2 FB |
673 | printf("dtg_active_format=%d\n", is->dtg_active_format); |
674 | } | |
675 | #endif | |
676 | #if 0 | |
01f4895c | 677 | switch(is->video_st->codec->dtg_active_format) { |
01310af2 FB |
678 | case FF_DTG_AFD_SAME: |
679 | default: | |
680 | /* nothing to do */ | |
681 | break; | |
682 | case FF_DTG_AFD_4_3: | |
683 | aspect_ratio = 4.0 / 3.0; | |
684 | break; | |
685 | case FF_DTG_AFD_16_9: | |
686 | aspect_ratio = 16.0 / 9.0; | |
687 | break; | |
688 | case FF_DTG_AFD_14_9: | |
689 | aspect_ratio = 14.0 / 9.0; | |
690 | break; | |
691 | case FF_DTG_AFD_4_3_SP_14_9: | |
692 | aspect_ratio = 14.0 / 9.0; | |
693 | break; | |
694 | case FF_DTG_AFD_16_9_SP_14_9: | |
695 | aspect_ratio = 14.0 / 9.0; | |
696 | break; | |
697 | case FF_DTG_AFD_SP_4_3: | |
698 | aspect_ratio = 4.0 / 3.0; | |
699 | break; | |
700 | } | |
701 | #endif | |
702 | ||
72ce053b IC |
703 | if (is->subtitle_st) |
704 | { | |
705 | if (is->subpq_size > 0) | |
706 | { | |
707 | sp = &is->subpq[is->subpq_rindex]; | |
708 | ||
709 | if (vp->pts >= sp->pts + ((float) sp->sub.start_display_time / 1000)) | |
710 | { | |
711 | SDL_LockYUVOverlay (vp->bmp); | |
712 | ||
713 | pict.data[0] = vp->bmp->pixels[0]; | |
714 | pict.data[1] = vp->bmp->pixels[2]; | |
715 | pict.data[2] = vp->bmp->pixels[1]; | |
716 | ||
717 | pict.linesize[0] = vp->bmp->pitches[0]; | |
718 | pict.linesize[1] = vp->bmp->pitches[2]; | |
719 | pict.linesize[2] = vp->bmp->pitches[1]; | |
720 | ||
721 | for (i = 0; i < sp->sub.num_rects; i++) | |
9cb5a11e | 722 | blend_subrect(&pict, &sp->sub.rects[i], |
0a8cd696 | 723 | vp->bmp->w, vp->bmp->h); |
72ce053b IC |
724 | |
725 | SDL_UnlockYUVOverlay (vp->bmp); | |
726 | } | |
727 | } | |
728 | } | |
729 | ||
730 | ||
01310af2 FB |
731 | /* XXX: we suppose the screen has a 1.0 pixel ratio */ |
732 | height = is->height; | |
733 | width = ((int)rint(height * aspect_ratio)) & -3; | |
734 | if (width > is->width) { | |
735 | width = is->width; | |
736 | height = ((int)rint(width / aspect_ratio)) & -3; | |
737 | } | |
738 | x = (is->width - width) / 2; | |
739 | y = (is->height - height) / 2; | |
740 | if (!is->no_background) { | |
741 | /* fill the background */ | |
742 | // fill_border(is, x, y, width, height, QERGB(0x00, 0x00, 0x00)); | |
743 | } else { | |
744 | is->no_background = 0; | |
745 | } | |
746 | rect.x = is->xleft + x; | |
2f6547fb | 747 | rect.y = is->ytop + y; |
01310af2 FB |
748 | rect.w = width; |
749 | rect.h = height; | |
750 | SDL_DisplayYUVOverlay(vp->bmp, &rect); | |
751 | } else { | |
752 | #if 0 | |
115329f1 DB |
753 | fill_rectangle(screen, |
754 | is->xleft, is->ytop, is->width, is->height, | |
01310af2 FB |
755 | QERGB(0x00, 0x00, 0x00)); |
756 | #endif | |
757 | } | |
758 | } | |
759 | ||
760 | static inline int compute_mod(int a, int b) | |
761 | { | |
762 | a = a % b; | |
115329f1 | 763 | if (a >= 0) |
01310af2 FB |
764 | return a; |
765 | else | |
766 | return a + b; | |
767 | } | |
768 | ||
769 | static void video_audio_display(VideoState *s) | |
770 | { | |
771 | int i, i_start, x, y1, y, ys, delay, n, nb_display_channels; | |
772 | int ch, channels, h, h2, bgcolor, fgcolor; | |
773 | int16_t time_diff; | |
115329f1 | 774 | |
01310af2 | 775 | /* compute display index : center on currently output samples */ |
01f4895c | 776 | channels = s->audio_st->codec->channels; |
01310af2 | 777 | nb_display_channels = channels; |
5e0257e3 FB |
778 | if (!s->paused) { |
779 | n = 2 * channels; | |
780 | delay = audio_write_get_buf_size(s); | |
781 | delay /= n; | |
115329f1 | 782 | |
5e0257e3 FB |
783 | /* to be more precise, we take into account the time spent since |
784 | the last buffer computation */ | |
785 | if (audio_callback_time) { | |
786 | time_diff = av_gettime() - audio_callback_time; | |
01f4895c | 787 | delay += (time_diff * s->audio_st->codec->sample_rate) / 1000000; |
5e0257e3 | 788 | } |
115329f1 | 789 | |
5e0257e3 FB |
790 | delay -= s->width / 2; |
791 | if (delay < s->width) | |
792 | delay = s->width; | |
ac50bcc8 MN |
793 | |
794 | i_start= x = compute_mod(s->sample_array_index - delay * channels, SAMPLE_ARRAY_SIZE); | |
795 | ||
796 | h= INT_MIN; | |
797 | for(i=0; i<1000; i+=channels){ | |
798 | int idx= (SAMPLE_ARRAY_SIZE + x - i) % SAMPLE_ARRAY_SIZE; | |
799 | int a= s->sample_array[idx]; | |
800 | int b= s->sample_array[(idx + 4*channels)%SAMPLE_ARRAY_SIZE]; | |
801 | int c= s->sample_array[(idx + 5*channels)%SAMPLE_ARRAY_SIZE]; | |
802 | int d= s->sample_array[(idx + 9*channels)%SAMPLE_ARRAY_SIZE]; | |
803 | int score= a-d; | |
804 | if(h<score && (b^c)<0){ | |
805 | h= score; | |
806 | i_start= idx; | |
807 | } | |
808 | } | |
809 | ||
5e0257e3 FB |
810 | s->last_i_start = i_start; |
811 | } else { | |
812 | i_start = s->last_i_start; | |
01310af2 FB |
813 | } |
814 | ||
01310af2 | 815 | bgcolor = SDL_MapRGB(screen->format, 0x00, 0x00, 0x00); |
115329f1 DB |
816 | fill_rectangle(screen, |
817 | s->xleft, s->ytop, s->width, s->height, | |
01310af2 FB |
818 | bgcolor); |
819 | ||
820 | fgcolor = SDL_MapRGB(screen->format, 0xff, 0xff, 0xff); | |
821 | ||
822 | /* total height for one channel */ | |
823 | h = s->height / nb_display_channels; | |
824 | /* graph height / 2 */ | |
825 | h2 = (h * 9) / 20; | |
826 | for(ch = 0;ch < nb_display_channels; ch++) { | |
827 | i = i_start + ch; | |
828 | y1 = s->ytop + ch * h + (h / 2); /* position of center line */ | |
829 | for(x = 0; x < s->width; x++) { | |
830 | y = (s->sample_array[i] * h2) >> 15; | |
831 | if (y < 0) { | |
832 | y = -y; | |
833 | ys = y1 - y; | |
834 | } else { | |
835 | ys = y1; | |
836 | } | |
115329f1 DB |
837 | fill_rectangle(screen, |
838 | s->xleft + x, ys, 1, y, | |
01310af2 FB |
839 | fgcolor); |
840 | i += channels; | |
841 | if (i >= SAMPLE_ARRAY_SIZE) | |
842 | i -= SAMPLE_ARRAY_SIZE; | |
843 | } | |
844 | } | |
845 | ||
846 | fgcolor = SDL_MapRGB(screen->format, 0x00, 0x00, 0xff); | |
847 | ||
848 | for(ch = 1;ch < nb_display_channels; ch++) { | |
849 | y = s->ytop + ch * h; | |
115329f1 DB |
850 | fill_rectangle(screen, |
851 | s->xleft, y, s->width, 1, | |
01310af2 FB |
852 | fgcolor); |
853 | } | |
854 | SDL_UpdateRect(screen, s->xleft, s->ytop, s->width, s->height); | |
855 | } | |
856 | ||
990c8438 MN |
857 | static int video_open(VideoState *is){ |
858 | int flags = SDL_HWSURFACE|SDL_ASYNCBLIT|SDL_HWACCEL; | |
859 | int w,h; | |
860 | ||
fb84155b MN |
861 | if(is_full_screen) flags |= SDL_FULLSCREEN; |
862 | else flags |= SDL_RESIZABLE; | |
863 | ||
990c8438 MN |
864 | if (is_full_screen && fs_screen_width) { |
865 | w = fs_screen_width; | |
866 | h = fs_screen_height; | |
fb84155b MN |
867 | } else if(!is_full_screen && screen_width){ |
868 | w = screen_width; | |
869 | h = screen_height; | |
870 | }else if (is->video_st && is->video_st->codec->width){ | |
871 | w = is->video_st->codec->width; | |
872 | h = is->video_st->codec->height; | |
990c8438 | 873 | } else { |
fb84155b MN |
874 | w = 640; |
875 | h = 480; | |
990c8438 | 876 | } |
c97f5402 | 877 | #ifndef __APPLE__ |
990c8438 MN |
878 | screen = SDL_SetVideoMode(w, h, 0, flags); |
879 | #else | |
880 | /* setting bits_per_pixel = 0 or 32 causes blank video on OS X */ | |
881 | screen = SDL_SetVideoMode(w, h, 24, flags); | |
882 | #endif | |
883 | if (!screen) { | |
884 | fprintf(stderr, "SDL: could not set video mode - exiting\n"); | |
885 | return -1; | |
886 | } | |
887 | SDL_WM_SetCaption("FFplay", "FFplay"); | |
888 | ||
889 | is->width = screen->w; | |
890 | is->height = screen->h; | |
891 | ||
892 | return 0; | |
893 | } | |
8c982c5d | 894 | |
01310af2 FB |
895 | /* display the current picture, if any */ |
896 | static void video_display(VideoState *is) | |
897 | { | |
8c982c5d MN |
898 | if(!screen) |
899 | video_open(cur_stream); | |
115329f1 | 900 | if (is->audio_st && is->show_audio) |
01310af2 FB |
901 | video_audio_display(is); |
902 | else if (is->video_st) | |
903 | video_image_display(is); | |
904 | } | |
905 | ||
906 | static Uint32 sdl_refresh_timer_cb(Uint32 interval, void *opaque) | |
907 | { | |
908 | SDL_Event event; | |
909 | event.type = FF_REFRESH_EVENT; | |
910 | event.user.data1 = opaque; | |
911 | SDL_PushEvent(&event); | |
912 | return 0; /* 0 means stop timer */ | |
913 | } | |
914 | ||
915 | /* schedule a video refresh in 'delay' ms */ | |
916 | static void schedule_refresh(VideoState *is, int delay) | |
917 | { | |
918 | SDL_AddTimer(delay, sdl_refresh_timer_cb, is); | |
919 | } | |
920 | ||
638c9d91 FB |
921 | /* get the current audio clock value */ |
922 | static double get_audio_clock(VideoState *is) | |
923 | { | |
924 | double pts; | |
925 | int hw_buf_size, bytes_per_sec; | |
926 | pts = is->audio_clock; | |
927 | hw_buf_size = audio_write_get_buf_size(is); | |
928 | bytes_per_sec = 0; | |
929 | if (is->audio_st) { | |
115329f1 | 930 | bytes_per_sec = is->audio_st->codec->sample_rate * |
01f4895c | 931 | 2 * is->audio_st->codec->channels; |
638c9d91 FB |
932 | } |
933 | if (bytes_per_sec) | |
934 | pts -= (double)hw_buf_size / bytes_per_sec; | |
935 | return pts; | |
936 | } | |
937 | ||
938 | /* get the current video clock value */ | |
939 | static double get_video_clock(VideoState *is) | |
940 | { | |
941 | double delta; | |
04108619 | 942 | if (is->paused) { |
72ea344b FB |
943 | delta = 0; |
944 | } else { | |
945 | delta = (av_gettime() - is->video_current_pts_time) / 1000000.0; | |
946 | } | |
638c9d91 FB |
947 | return is->video_current_pts + delta; |
948 | } | |
949 | ||
950 | /* get the current external clock value */ | |
951 | static double get_external_clock(VideoState *is) | |
952 | { | |
953 | int64_t ti; | |
954 | ti = av_gettime(); | |
955 | return is->external_clock + ((ti - is->external_clock_time) * 1e-6); | |
956 | } | |
957 | ||
958 | /* get the current master clock value */ | |
959 | static double get_master_clock(VideoState *is) | |
960 | { | |
961 | double val; | |
962 | ||
72ea344b FB |
963 | if (is->av_sync_type == AV_SYNC_VIDEO_MASTER) { |
964 | if (is->video_st) | |
965 | val = get_video_clock(is); | |
966 | else | |
967 | val = get_audio_clock(is); | |
968 | } else if (is->av_sync_type == AV_SYNC_AUDIO_MASTER) { | |
969 | if (is->audio_st) | |
970 | val = get_audio_clock(is); | |
971 | else | |
972 | val = get_video_clock(is); | |
973 | } else { | |
638c9d91 | 974 | val = get_external_clock(is); |
72ea344b | 975 | } |
638c9d91 FB |
976 | return val; |
977 | } | |
978 | ||
72ea344b | 979 | /* seek in the stream */ |
3ba1438d | 980 | static void stream_seek(VideoState *is, int64_t pos, int rel) |
72ea344b | 981 | { |
687fae2b IW |
982 | if (!is->seek_req) { |
983 | is->seek_pos = pos; | |
984 | is->seek_flags = rel < 0 ? AVSEEK_FLAG_BACKWARD : 0; | |
94b594c6 SH |
985 | if (seek_by_bytes) |
986 | is->seek_flags |= AVSEEK_FLAG_BYTE; | |
687fae2b IW |
987 | is->seek_req = 1; |
988 | } | |
72ea344b FB |
989 | } |
990 | ||
991 | /* pause or resume the video */ | |
992 | static void stream_pause(VideoState *is) | |
993 | { | |
994 | is->paused = !is->paused; | |
917fa192 | 995 | if (!is->paused) { |
72ea344b | 996 | is->video_current_pts = get_video_clock(is); |
917fa192 | 997 | is->frame_timer += (av_gettime() - is->video_current_pts_time) / 1000000.0; |
72ea344b FB |
998 | } |
999 | } | |
1000 | ||
01310af2 FB |
1001 | /* called to display each frame */ |
1002 | static void video_refresh_timer(void *opaque) | |
1003 | { | |
1004 | VideoState *is = opaque; | |
1005 | VideoPicture *vp; | |
638c9d91 FB |
1006 | double actual_delay, delay, sync_threshold, ref_clock, diff; |
1007 | ||
72ce053b | 1008 | SubPicture *sp, *sp2; |
01310af2 FB |
1009 | |
1010 | if (is->video_st) { | |
1011 | if (is->pictq_size == 0) { | |
1012 | /* if no picture, need to wait */ | |
7e0140cb | 1013 | schedule_refresh(is, 1); |
01310af2 | 1014 | } else { |
638c9d91 | 1015 | /* dequeue the picture */ |
01310af2 | 1016 | vp = &is->pictq[is->pictq_rindex]; |
638c9d91 FB |
1017 | |
1018 | /* update current video pts */ | |
1019 | is->video_current_pts = vp->pts; | |
1020 | is->video_current_pts_time = av_gettime(); | |
1021 | ||
1022 | /* compute nominal delay */ | |
1023 | delay = vp->pts - is->frame_last_pts; | |
ec2fc00d | 1024 | if (delay <= 0 || delay >= 2.0) { |
638c9d91 FB |
1025 | /* if incorrect delay, use previous one */ |
1026 | delay = is->frame_last_delay; | |
1027 | } | |
1028 | is->frame_last_delay = delay; | |
1029 | is->frame_last_pts = vp->pts; | |
1030 | ||
1031 | /* update delay to follow master synchronisation source */ | |
1032 | if (((is->av_sync_type == AV_SYNC_AUDIO_MASTER && is->audio_st) || | |
1033 | is->av_sync_type == AV_SYNC_EXTERNAL_CLOCK)) { | |
1034 | /* if video is slave, we try to correct big delays by | |
1035 | duplicating or deleting a frame */ | |
1036 | ref_clock = get_master_clock(is); | |
1037 | diff = vp->pts - ref_clock; | |
115329f1 | 1038 | |
638c9d91 FB |
1039 | /* skip or repeat frame. We take into account the |
1040 | delay to compute the threshold. I still don't know | |
1041 | if it is the best guess */ | |
8a9d72a0 | 1042 | sync_threshold = FFMAX(AV_SYNC_THRESHOLD, delay); |
638c9d91 FB |
1043 | if (fabs(diff) < AV_NOSYNC_THRESHOLD) { |
1044 | if (diff <= -sync_threshold) | |
1045 | delay = 0; | |
1046 | else if (diff >= sync_threshold) | |
1047 | delay = 2 * delay; | |
1048 | } | |
1049 | } | |
1050 | ||
1051 | is->frame_timer += delay; | |
1052 | /* compute the REAL delay (we need to do that to avoid | |
1053 | long term errors */ | |
1054 | actual_delay = is->frame_timer - (av_gettime() / 1000000.0); | |
1055 | if (actual_delay < 0.010) { | |
1056 | /* XXX: should skip picture */ | |
1057 | actual_delay = 0.010; | |
1058 | } | |
01310af2 | 1059 | /* launch timer for next picture */ |
638c9d91 FB |
1060 | schedule_refresh(is, (int)(actual_delay * 1000 + 0.5)); |
1061 | ||
1062 | #if defined(DEBUG_SYNC) | |
115329f1 | 1063 | printf("video: delay=%0.3f actual_delay=%0.3f pts=%0.3f A-V=%f\n", |
638c9d91 FB |
1064 | delay, actual_delay, vp->pts, -diff); |
1065 | #endif | |
01310af2 | 1066 | |
72ce053b IC |
1067 | if(is->subtitle_st) { |
1068 | if (is->subtitle_stream_changed) { | |
1069 | SDL_LockMutex(is->subpq_mutex); | |
115329f1 | 1070 | |
72ce053b IC |
1071 | while (is->subpq_size) { |
1072 | free_subpicture(&is->subpq[is->subpq_rindex]); | |
115329f1 | 1073 | |
72ce053b IC |
1074 | /* update queue size and signal for next picture */ |
1075 | if (++is->subpq_rindex == SUBPICTURE_QUEUE_SIZE) | |
1076 | is->subpq_rindex = 0; | |
115329f1 | 1077 | |
72ce053b IC |
1078 | is->subpq_size--; |
1079 | } | |
1080 | is->subtitle_stream_changed = 0; | |
1081 | ||
1082 | SDL_CondSignal(is->subpq_cond); | |
1083 | SDL_UnlockMutex(is->subpq_mutex); | |
1084 | } else { | |
1085 | if (is->subpq_size > 0) { | |
1086 | sp = &is->subpq[is->subpq_rindex]; | |
1087 | ||
1088 | if (is->subpq_size > 1) | |
1089 | sp2 = &is->subpq[(is->subpq_rindex + 1) % SUBPICTURE_QUEUE_SIZE]; | |
1090 | else | |
1091 | sp2 = NULL; | |
1092 | ||
1093 | if ((is->video_current_pts > (sp->pts + ((float) sp->sub.end_display_time / 1000))) | |
1094 | || (sp2 && is->video_current_pts > (sp2->pts + ((float) sp2->sub.start_display_time / 1000)))) | |
1095 | { | |
1096 | free_subpicture(sp); | |
1097 | ||
1098 | /* update queue size and signal for next picture */ | |
1099 | if (++is->subpq_rindex == SUBPICTURE_QUEUE_SIZE) | |
1100 | is->subpq_rindex = 0; | |
1101 | ||
1102 | SDL_LockMutex(is->subpq_mutex); | |
1103 | is->subpq_size--; | |
1104 | SDL_CondSignal(is->subpq_cond); | |
1105 | SDL_UnlockMutex(is->subpq_mutex); | |
1106 | } | |
1107 | } | |
1108 | } | |
1109 | } | |
1110 | ||
01310af2 FB |
1111 | /* display picture */ |
1112 | video_display(is); | |
115329f1 | 1113 | |
01310af2 FB |
1114 | /* update queue size and signal for next picture */ |
1115 | if (++is->pictq_rindex == VIDEO_PICTURE_QUEUE_SIZE) | |
1116 | is->pictq_rindex = 0; | |
115329f1 | 1117 | |
01310af2 FB |
1118 | SDL_LockMutex(is->pictq_mutex); |
1119 | is->pictq_size--; | |
1120 | SDL_CondSignal(is->pictq_cond); | |
1121 | SDL_UnlockMutex(is->pictq_mutex); | |
1122 | } | |
1123 | } else if (is->audio_st) { | |
1124 | /* draw the next audio frame */ | |
1125 | ||
1126 | schedule_refresh(is, 40); | |
1127 | ||
1128 | /* if only audio stream, then display the audio bars (better | |
1129 | than nothing, just to test the implementation */ | |
115329f1 | 1130 | |
01310af2 FB |
1131 | /* display picture */ |
1132 | video_display(is); | |
1133 | } else { | |
1134 | schedule_refresh(is, 100); | |
1135 | } | |
1136 | if (show_status) { | |
1137 | static int64_t last_time; | |
1138 | int64_t cur_time; | |
72ce053b | 1139 | int aqsize, vqsize, sqsize; |
638c9d91 | 1140 | double av_diff; |
115329f1 | 1141 | |
01310af2 FB |
1142 | cur_time = av_gettime(); |
1143 | if (!last_time || (cur_time - last_time) >= 500 * 1000) { | |
1144 | aqsize = 0; | |
1145 | vqsize = 0; | |
72ce053b | 1146 | sqsize = 0; |
01310af2 FB |
1147 | if (is->audio_st) |
1148 | aqsize = is->audioq.size; | |
1149 | if (is->video_st) | |
1150 | vqsize = is->videoq.size; | |
72ce053b IC |
1151 | if (is->subtitle_st) |
1152 | sqsize = is->subtitleq.size; | |
638c9d91 FB |
1153 | av_diff = 0; |
1154 | if (is->audio_st && is->video_st) | |
1155 | av_diff = get_audio_clock(is) - get_video_clock(is); | |
115329f1 | 1156 | printf("%7.2f A-V:%7.3f aq=%5dKB vq=%5dKB sq=%5dB \r", |
72ce053b | 1157 | get_master_clock(is), av_diff, aqsize / 1024, vqsize / 1024, sqsize); |
01310af2 FB |
1158 | fflush(stdout); |
1159 | last_time = cur_time; | |
1160 | } | |
1161 | } | |
1162 | } | |
1163 | ||
1164 | /* allocate a picture (needs to do that in main thread to avoid | |
1165 | potential locking problems */ | |
1166 | static void alloc_picture(void *opaque) | |
1167 | { | |
1168 | VideoState *is = opaque; | |
1169 | VideoPicture *vp; | |
01310af2 FB |
1170 | |
1171 | vp = &is->pictq[is->pictq_windex]; | |
1172 | ||
1173 | if (vp->bmp) | |
1174 | SDL_FreeYUVOverlay(vp->bmp); | |
1175 | ||
61890b02 | 1176 | #if 0 |
01310af2 | 1177 | /* XXX: use generic function */ |
61890b02 | 1178 | /* XXX: disable overlay if no hardware acceleration or if RGB format */ |
01f4895c | 1179 | switch(is->video_st->codec->pix_fmt) { |
01310af2 FB |
1180 | case PIX_FMT_YUV420P: |
1181 | case PIX_FMT_YUV422P: | |
1182 | case PIX_FMT_YUV444P: | |
71e445fc | 1183 | case PIX_FMT_YUYV422: |
01310af2 FB |
1184 | case PIX_FMT_YUV410P: |
1185 | case PIX_FMT_YUV411P: | |
1186 | is_yuv = 1; | |
1187 | break; | |
1188 | default: | |
1189 | is_yuv = 0; | |
1190 | break; | |
1191 | } | |
01310af2 | 1192 | #endif |
01f4895c MN |
1193 | vp->bmp = SDL_CreateYUVOverlay(is->video_st->codec->width, |
1194 | is->video_st->codec->height, | |
115329f1 | 1195 | SDL_YV12_OVERLAY, |
61890b02 | 1196 | screen); |
01f4895c MN |
1197 | vp->width = is->video_st->codec->width; |
1198 | vp->height = is->video_st->codec->height; | |
01310af2 FB |
1199 | |
1200 | SDL_LockMutex(is->pictq_mutex); | |
1201 | vp->allocated = 1; | |
1202 | SDL_CondSignal(is->pictq_cond); | |
1203 | SDL_UnlockMutex(is->pictq_mutex); | |
1204 | } | |
1205 | ||
267e9dfa MN |
1206 | /** |
1207 | * | |
1208 | * @param pts the dts of the pkt / pts of the frame and guessed if not known | |
1209 | */ | |
638c9d91 | 1210 | static int queue_picture(VideoState *is, AVFrame *src_frame, double pts) |
01310af2 FB |
1211 | { |
1212 | VideoPicture *vp; | |
1213 | int dst_pix_fmt; | |
1214 | AVPicture pict; | |
03ae87a3 | 1215 | static struct SwsContext *img_convert_ctx; |
115329f1 | 1216 | |
01310af2 FB |
1217 | /* wait until we have space to put a new picture */ |
1218 | SDL_LockMutex(is->pictq_mutex); | |
1219 | while (is->pictq_size >= VIDEO_PICTURE_QUEUE_SIZE && | |
1220 | !is->videoq.abort_request) { | |
1221 | SDL_CondWait(is->pictq_cond, is->pictq_mutex); | |
1222 | } | |
1223 | SDL_UnlockMutex(is->pictq_mutex); | |
115329f1 | 1224 | |
01310af2 FB |
1225 | if (is->videoq.abort_request) |
1226 | return -1; | |
1227 | ||
1228 | vp = &is->pictq[is->pictq_windex]; | |
1229 | ||
1230 | /* alloc or resize hardware picture buffer */ | |
115329f1 | 1231 | if (!vp->bmp || |
01f4895c MN |
1232 | vp->width != is->video_st->codec->width || |
1233 | vp->height != is->video_st->codec->height) { | |
01310af2 FB |
1234 | SDL_Event event; |
1235 | ||
1236 | vp->allocated = 0; | |
1237 | ||
1238 | /* the allocation must be done in the main thread to avoid | |
1239 | locking problems */ | |
1240 | event.type = FF_ALLOC_EVENT; | |
1241 | event.user.data1 = is; | |
1242 | SDL_PushEvent(&event); | |
115329f1 | 1243 | |
01310af2 FB |
1244 | /* wait until the picture is allocated */ |
1245 | SDL_LockMutex(is->pictq_mutex); | |
1246 | while (!vp->allocated && !is->videoq.abort_request) { | |
1247 | SDL_CondWait(is->pictq_cond, is->pictq_mutex); | |
1248 | } | |
1249 | SDL_UnlockMutex(is->pictq_mutex); | |
1250 | ||
1251 | if (is->videoq.abort_request) | |
1252 | return -1; | |
1253 | } | |
1254 | ||
638c9d91 | 1255 | /* if the frame is not skipped, then display it */ |
01310af2 FB |
1256 | if (vp->bmp) { |
1257 | /* get a pointer on the bitmap */ | |
1258 | SDL_LockYUVOverlay (vp->bmp); | |
1259 | ||
1260 | dst_pix_fmt = PIX_FMT_YUV420P; | |
1261 | pict.data[0] = vp->bmp->pixels[0]; | |
1262 | pict.data[1] = vp->bmp->pixels[2]; | |
1263 | pict.data[2] = vp->bmp->pixels[1]; | |
1264 | ||
1265 | pict.linesize[0] = vp->bmp->pitches[0]; | |
1266 | pict.linesize[1] = vp->bmp->pitches[2]; | |
1267 | pict.linesize[2] = vp->bmp->pitches[1]; | |
feb7bc67 AB |
1268 | img_convert_ctx = sws_getCachedContext(img_convert_ctx, |
1269 | is->video_st->codec->width, is->video_st->codec->height, | |
1270 | is->video_st->codec->pix_fmt, | |
1271 | is->video_st->codec->width, is->video_st->codec->height, | |
1272 | dst_pix_fmt, sws_flags, NULL, NULL, NULL); | |
26ba8235 AB |
1273 | if (img_convert_ctx == NULL) { |
1274 | fprintf(stderr, "Cannot initialize the conversion context\n"); | |
1275 | exit(1); | |
1276 | } | |
03ae87a3 LA |
1277 | sws_scale(img_convert_ctx, src_frame->data, src_frame->linesize, |
1278 | 0, is->video_st->codec->height, pict.data, pict.linesize); | |
01310af2 FB |
1279 | /* update the bitmap content */ |
1280 | SDL_UnlockYUVOverlay(vp->bmp); | |
1281 | ||
638c9d91 | 1282 | vp->pts = pts; |
01310af2 FB |
1283 | |
1284 | /* now we can update the picture count */ | |
1285 | if (++is->pictq_windex == VIDEO_PICTURE_QUEUE_SIZE) | |
1286 | is->pictq_windex = 0; | |
1287 | SDL_LockMutex(is->pictq_mutex); | |
1288 | is->pictq_size++; | |
1289 | SDL_UnlockMutex(is->pictq_mutex); | |
1290 | } | |
638c9d91 FB |
1291 | return 0; |
1292 | } | |
1293 | ||
115329f1 DB |
1294 | /** |
1295 | * compute the exact PTS for the picture if it is omitted in the stream | |
267e9dfa MN |
1296 | * @param pts1 the dts of the pkt / pts of the frame |
1297 | */ | |
638c9d91 FB |
1298 | static int output_picture2(VideoState *is, AVFrame *src_frame, double pts1) |
1299 | { | |
1300 | double frame_delay, pts; | |
115329f1 | 1301 | |
638c9d91 FB |
1302 | pts = pts1; |
1303 | ||
01310af2 | 1304 | if (pts != 0) { |
638c9d91 | 1305 | /* update video clock with pts, if present */ |
01310af2 FB |
1306 | is->video_clock = pts; |
1307 | } else { | |
72ea344b FB |
1308 | pts = is->video_clock; |
1309 | } | |
1310 | /* update video clock for next frame */ | |
01f4895c | 1311 | frame_delay = av_q2d(is->video_st->codec->time_base); |
72ea344b FB |
1312 | /* for MPEG2, the frame can be repeated, so we update the |
1313 | clock accordingly */ | |
267e9dfa | 1314 | frame_delay += src_frame->repeat_pict * (frame_delay * 0.5); |
72ea344b | 1315 | is->video_clock += frame_delay; |
638c9d91 FB |
1316 | |
1317 | #if defined(DEBUG_SYNC) && 0 | |
1318 | { | |
1319 | int ftype; | |
1320 | if (src_frame->pict_type == FF_B_TYPE) | |
1321 | ftype = 'B'; | |
1322 | else if (src_frame->pict_type == FF_I_TYPE) | |
1323 | ftype = 'I'; | |
1324 | else | |
1325 | ftype = 'P'; | |
115329f1 | 1326 | printf("frame_type=%c clock=%0.3f pts=%0.3f\n", |
72ea344b | 1327 | ftype, pts, pts1); |
638c9d91 FB |
1328 | } |
1329 | #endif | |
72ea344b | 1330 | return queue_picture(is, src_frame, pts); |
01310af2 FB |
1331 | } |
1332 | ||
1333 | static int video_thread(void *arg) | |
1334 | { | |
1335 | VideoState *is = arg; | |
1336 | AVPacket pkt1, *pkt = &pkt1; | |
72ea344b | 1337 | int len1, got_picture; |
c6b1edc9 | 1338 | AVFrame *frame= avcodec_alloc_frame(); |
01310af2 FB |
1339 | double pts; |
1340 | ||
1341 | for(;;) { | |
1342 | while (is->paused && !is->videoq.abort_request) { | |
1343 | SDL_Delay(10); | |
1344 | } | |
1345 | if (packet_queue_get(&is->videoq, pkt, 1) < 0) | |
1346 | break; | |
39c6a118 MN |
1347 | |
1348 | if(pkt->data == flush_pkt.data){ | |
1349 | avcodec_flush_buffers(is->video_st->codec); | |
1350 | continue; | |
1351 | } | |
1352 | ||
638c9d91 FB |
1353 | /* NOTE: ipts is the PTS of the _first_ picture beginning in |
1354 | this packet, if any */ | |
7fb262b5 | 1355 | is->video_st->codec->reordered_opaque= pkt->pts; |
620e8baf MN |
1356 | len1 = avcodec_decode_video(is->video_st->codec, |
1357 | frame, &got_picture, | |
1358 | pkt->data, pkt->size); | |
1359 | ||
1360 | if( (decoder_reorder_pts || pkt->dts == AV_NOPTS_VALUE) | |
7fb262b5 MN |
1361 | && frame->reordered_opaque != AV_NOPTS_VALUE) |
1362 | pts= frame->reordered_opaque; | |
620e8baf MN |
1363 | else if(pkt->dts != AV_NOPTS_VALUE) |
1364 | pts= pkt->dts; | |
1365 | else | |
1366 | pts= 0; | |
1367 | pts *= av_q2d(is->video_st->time_base); | |
5039185a | 1368 | |
fb966f99 MN |
1369 | // if (len1 < 0) |
1370 | // break; | |
620e8baf MN |
1371 | if (got_picture) { |
1372 | if (output_picture2(is, frame, pts) < 0) | |
1373 | goto the_end; | |
1374 | } | |
01310af2 | 1375 | av_free_packet(pkt); |
115329f1 | 1376 | if (step) |
bba04f1e WH |
1377 | if (cur_stream) |
1378 | stream_pause(cur_stream); | |
01310af2 FB |
1379 | } |
1380 | the_end: | |
c6b1edc9 | 1381 | av_free(frame); |
01310af2 FB |
1382 | return 0; |
1383 | } | |
1384 | ||
72ce053b IC |
1385 | static int subtitle_thread(void *arg) |
1386 | { | |
1387 | VideoState *is = arg; | |
1388 | SubPicture *sp; | |
1389 | AVPacket pkt1, *pkt = &pkt1; | |
1390 | int len1, got_subtitle; | |
1391 | double pts; | |
1392 | int i, j; | |
1393 | int r, g, b, y, u, v, a; | |
1394 | ||
1395 | for(;;) { | |
1396 | while (is->paused && !is->subtitleq.abort_request) { | |
1397 | SDL_Delay(10); | |
1398 | } | |
1399 | if (packet_queue_get(&is->subtitleq, pkt, 1) < 0) | |
1400 | break; | |
115329f1 | 1401 | |
39c6a118 MN |
1402 | if(pkt->data == flush_pkt.data){ |
1403 | avcodec_flush_buffers(is->subtitle_st->codec); | |
1404 | continue; | |
1405 | } | |
72ce053b IC |
1406 | SDL_LockMutex(is->subpq_mutex); |
1407 | while (is->subpq_size >= SUBPICTURE_QUEUE_SIZE && | |
1408 | !is->subtitleq.abort_request) { | |
1409 | SDL_CondWait(is->subpq_cond, is->subpq_mutex); | |
1410 | } | |
1411 | SDL_UnlockMutex(is->subpq_mutex); | |
115329f1 | 1412 | |
72ce053b IC |
1413 | if (is->subtitleq.abort_request) |
1414 | goto the_end; | |
115329f1 | 1415 | |
72ce053b IC |
1416 | sp = &is->subpq[is->subpq_windex]; |
1417 | ||
1418 | /* NOTE: ipts is the PTS of the _first_ picture beginning in | |
1419 | this packet, if any */ | |
1420 | pts = 0; | |
1421 | if (pkt->pts != AV_NOPTS_VALUE) | |
1422 | pts = av_q2d(is->subtitle_st->time_base)*pkt->pts; | |
1423 | ||
115329f1 DB |
1424 | len1 = avcodec_decode_subtitle(is->subtitle_st->codec, |
1425 | &sp->sub, &got_subtitle, | |
72ce053b | 1426 | pkt->data, pkt->size); |
72ce053b IC |
1427 | // if (len1 < 0) |
1428 | // break; | |
1429 | if (got_subtitle && sp->sub.format == 0) { | |
1430 | sp->pts = pts; | |
115329f1 | 1431 | |
72ce053b IC |
1432 | for (i = 0; i < sp->sub.num_rects; i++) |
1433 | { | |
1434 | for (j = 0; j < sp->sub.rects[i].nb_colors; j++) | |
1435 | { | |
1436 | RGBA_IN(r, g, b, a, sp->sub.rects[i].rgba_palette + j); | |
1437 | y = RGB_TO_Y_CCIR(r, g, b); | |
1438 | u = RGB_TO_U_CCIR(r, g, b, 0); | |
1439 | v = RGB_TO_V_CCIR(r, g, b, 0); | |
1440 | YUVA_OUT(sp->sub.rects[i].rgba_palette + j, y, u, v, a); | |
1441 | } | |
1442 | } | |
1443 | ||
1444 | /* now we can update the picture count */ | |
1445 | if (++is->subpq_windex == SUBPICTURE_QUEUE_SIZE) | |
1446 | is->subpq_windex = 0; | |
1447 | SDL_LockMutex(is->subpq_mutex); | |
1448 | is->subpq_size++; | |
1449 | SDL_UnlockMutex(is->subpq_mutex); | |
1450 | } | |
1451 | av_free_packet(pkt); | |
115329f1 | 1452 | // if (step) |
72ce053b IC |
1453 | // if (cur_stream) |
1454 | // stream_pause(cur_stream); | |
1455 | } | |
1456 | the_end: | |
1457 | return 0; | |
1458 | } | |
1459 | ||
01310af2 FB |
1460 | /* copy samples for viewing in editor window */ |
1461 | static void update_sample_display(VideoState *is, short *samples, int samples_size) | |
1462 | { | |
1463 | int size, len, channels; | |
1464 | ||
01f4895c | 1465 | channels = is->audio_st->codec->channels; |
01310af2 FB |
1466 | |
1467 | size = samples_size / sizeof(short); | |
1468 | while (size > 0) { | |
1469 | len = SAMPLE_ARRAY_SIZE - is->sample_array_index; | |
1470 | if (len > size) | |
1471 | len = size; | |
1472 | memcpy(is->sample_array + is->sample_array_index, samples, len * sizeof(short)); | |
1473 | samples += len; | |
1474 | is->sample_array_index += len; | |
1475 | if (is->sample_array_index >= SAMPLE_ARRAY_SIZE) | |
1476 | is->sample_array_index = 0; | |
1477 | size -= len; | |
1478 | } | |
1479 | } | |
1480 | ||
01310af2 FB |
1481 | /* return the new audio buffer size (samples can be added or deleted |
1482 | to get better sync if video or external master clock) */ | |
115329f1 | 1483 | static int synchronize_audio(VideoState *is, short *samples, |
638c9d91 | 1484 | int samples_size1, double pts) |
01310af2 | 1485 | { |
638c9d91 | 1486 | int n, samples_size; |
01310af2 | 1487 | double ref_clock; |
115329f1 | 1488 | |
01f4895c | 1489 | n = 2 * is->audio_st->codec->channels; |
638c9d91 | 1490 | samples_size = samples_size1; |
01310af2 | 1491 | |
01310af2 | 1492 | /* if not master, then we try to remove or add samples to correct the clock */ |
01310af2 | 1493 | if (((is->av_sync_type == AV_SYNC_VIDEO_MASTER && is->video_st) || |
638c9d91 FB |
1494 | is->av_sync_type == AV_SYNC_EXTERNAL_CLOCK)) { |
1495 | double diff, avg_diff; | |
01310af2 | 1496 | int wanted_size, min_size, max_size, nb_samples; |
115329f1 | 1497 | |
638c9d91 FB |
1498 | ref_clock = get_master_clock(is); |
1499 | diff = get_audio_clock(is) - ref_clock; | |
115329f1 | 1500 | |
638c9d91 FB |
1501 | if (diff < AV_NOSYNC_THRESHOLD) { |
1502 | is->audio_diff_cum = diff + is->audio_diff_avg_coef * is->audio_diff_cum; | |
1503 | if (is->audio_diff_avg_count < AUDIO_DIFF_AVG_NB) { | |
1504 | /* not enough measures to have a correct estimate */ | |
1505 | is->audio_diff_avg_count++; | |
1506 | } else { | |
1507 | /* estimate the A-V difference */ | |
1508 | avg_diff = is->audio_diff_cum * (1.0 - is->audio_diff_avg_coef); | |
1509 | ||
1510 | if (fabs(avg_diff) >= is->audio_diff_threshold) { | |
01f4895c | 1511 | wanted_size = samples_size + ((int)(diff * is->audio_st->codec->sample_rate) * n); |
638c9d91 | 1512 | nb_samples = samples_size / n; |
115329f1 | 1513 | |
638c9d91 FB |
1514 | min_size = ((nb_samples * (100 - SAMPLE_CORRECTION_PERCENT_MAX)) / 100) * n; |
1515 | max_size = ((nb_samples * (100 + SAMPLE_CORRECTION_PERCENT_MAX)) / 100) * n; | |
1516 | if (wanted_size < min_size) | |
1517 | wanted_size = min_size; | |
1518 | else if (wanted_size > max_size) | |
1519 | wanted_size = max_size; | |
115329f1 | 1520 | |
638c9d91 FB |
1521 | /* add or remove samples to correction the synchro */ |
1522 | if (wanted_size < samples_size) { | |
1523 | /* remove samples */ | |
1524 | samples_size = wanted_size; | |
1525 | } else if (wanted_size > samples_size) { | |
1526 | uint8_t *samples_end, *q; | |
1527 | int nb; | |
115329f1 | 1528 | |
638c9d91 FB |
1529 | /* add samples */ |
1530 | nb = (samples_size - wanted_size); | |
1531 | samples_end = (uint8_t *)samples + samples_size - n; | |
1532 | q = samples_end + n; | |
1533 | while (nb > 0) { | |
1534 | memcpy(q, samples_end, n); | |
1535 | q += n; | |
1536 | nb -= n; | |
1537 | } | |
1538 | samples_size = wanted_size; | |
1539 | } | |
1540 | } | |
1541 | #if 0 | |
115329f1 DB |
1542 | printf("diff=%f adiff=%f sample_diff=%d apts=%0.3f vpts=%0.3f %f\n", |
1543 | diff, avg_diff, samples_size - samples_size1, | |
638c9d91 FB |
1544 | is->audio_clock, is->video_clock, is->audio_diff_threshold); |
1545 | #endif | |
01310af2 | 1546 | } |
638c9d91 FB |
1547 | } else { |
1548 | /* too big difference : may be initial PTS errors, so | |
1549 | reset A-V filter */ | |
1550 | is->audio_diff_avg_count = 0; | |
1551 | is->audio_diff_cum = 0; | |
01310af2 FB |
1552 | } |
1553 | } | |
1554 | ||
01310af2 FB |
1555 | return samples_size; |
1556 | } | |
1557 | ||
1558 | /* decode one audio frame and returns its uncompressed size */ | |
5a4476e2 | 1559 | static int audio_decode_frame(VideoState *is, double *pts_ptr) |
01310af2 FB |
1560 | { |
1561 | AVPacket *pkt = &is->audio_pkt; | |
abdff646 | 1562 | AVCodecContext *dec= is->audio_st->codec; |
72ea344b | 1563 | int n, len1, data_size; |
01310af2 FB |
1564 | double pts; |
1565 | ||
1566 | for(;;) { | |
72ea344b | 1567 | /* NOTE: the audio packet can contain several frames */ |
01310af2 | 1568 | while (is->audio_pkt_size > 0) { |
5a4476e2 | 1569 | data_size = sizeof(is->audio_buf1); |
abdff646 | 1570 | len1 = avcodec_decode_audio2(dec, |
5a4476e2 | 1571 | (int16_t *)is->audio_buf1, &data_size, |
01310af2 | 1572 | is->audio_pkt_data, is->audio_pkt_size); |
72ea344b FB |
1573 | if (len1 < 0) { |
1574 | /* if error, we skip the frame */ | |
1575 | is->audio_pkt_size = 0; | |
01310af2 | 1576 | break; |
72ea344b | 1577 | } |
115329f1 | 1578 | |
01310af2 FB |
1579 | is->audio_pkt_data += len1; |
1580 | is->audio_pkt_size -= len1; | |
72ea344b FB |
1581 | if (data_size <= 0) |
1582 | continue; | |
5a4476e2 PR |
1583 | |
1584 | if (dec->sample_fmt != is->audio_src_fmt) { | |
1585 | if (is->reformat_ctx) | |
1586 | av_audio_convert_free(is->reformat_ctx); | |
1587 | is->reformat_ctx= av_audio_convert_alloc(SAMPLE_FMT_S16, 1, | |
1588 | dec->sample_fmt, 1, NULL, 0); | |
1589 | if (!is->reformat_ctx) { | |
1590 | fprintf(stderr, "Cannot convert %s sample format to %s sample format\n", | |
1591 | avcodec_get_sample_fmt_name(dec->sample_fmt), | |
1592 | avcodec_get_sample_fmt_name(SAMPLE_FMT_S16)); | |
1593 | break; | |
1594 | } | |
1595 | is->audio_src_fmt= dec->sample_fmt; | |
1596 | } | |
1597 | ||
1598 | if (is->reformat_ctx) { | |
1599 | const void *ibuf[6]= {is->audio_buf1}; | |
1600 | void *obuf[6]= {is->audio_buf2}; | |
1601 | int istride[6]= {av_get_bits_per_sample_format(dec->sample_fmt)/8}; | |
1602 | int ostride[6]= {2}; | |
1603 | int len= data_size/istride[0]; | |
1604 | if (av_audio_convert(is->reformat_ctx, obuf, ostride, ibuf, istride, len)<0) { | |
1605 | printf("av_audio_convert() failed\n"); | |
1606 | break; | |
1607 | } | |
1608 | is->audio_buf= is->audio_buf2; | |
1609 | /* FIXME: existing code assume that data_size equals framesize*channels*2 | |
1610 | remove this legacy cruft */ | |
1611 | data_size= len*2; | |
1612 | }else{ | |
1613 | is->audio_buf= is->audio_buf1; | |
1614 | } | |
1615 | ||
72ea344b FB |
1616 | /* if no pts, then compute it */ |
1617 | pts = is->audio_clock; | |
1618 | *pts_ptr = pts; | |
abdff646 | 1619 | n = 2 * dec->channels; |
115329f1 | 1620 | is->audio_clock += (double)data_size / |
abdff646 | 1621 | (double)(n * dec->sample_rate); |
638c9d91 | 1622 | #if defined(DEBUG_SYNC) |
72ea344b FB |
1623 | { |
1624 | static double last_clock; | |
1625 | printf("audio: delay=%0.3f clock=%0.3f pts=%0.3f\n", | |
1626 | is->audio_clock - last_clock, | |
1627 | is->audio_clock, pts); | |
1628 | last_clock = is->audio_clock; | |
01310af2 | 1629 | } |
72ea344b FB |
1630 | #endif |
1631 | return data_size; | |
01310af2 FB |
1632 | } |
1633 | ||
72ea344b FB |
1634 | /* free the current packet */ |
1635 | if (pkt->data) | |
01310af2 | 1636 | av_free_packet(pkt); |
115329f1 | 1637 | |
72ea344b FB |
1638 | if (is->paused || is->audioq.abort_request) { |
1639 | return -1; | |
1640 | } | |
115329f1 | 1641 | |
01310af2 FB |
1642 | /* read next packet */ |
1643 | if (packet_queue_get(&is->audioq, pkt, 1) < 0) | |
1644 | return -1; | |
39c6a118 | 1645 | if(pkt->data == flush_pkt.data){ |
abdff646 | 1646 | avcodec_flush_buffers(dec); |
39c6a118 MN |
1647 | continue; |
1648 | } | |
1649 | ||
01310af2 FB |
1650 | is->audio_pkt_data = pkt->data; |
1651 | is->audio_pkt_size = pkt->size; | |
115329f1 | 1652 | |
72ea344b FB |
1653 | /* if update the audio clock with the pts */ |
1654 | if (pkt->pts != AV_NOPTS_VALUE) { | |
c0df9d75 | 1655 | is->audio_clock = av_q2d(is->audio_st->time_base)*pkt->pts; |
72ea344b | 1656 | } |
01310af2 FB |
1657 | } |
1658 | } | |
1659 | ||
638c9d91 FB |
1660 | /* get the current audio output buffer size, in samples. With SDL, we |
1661 | cannot have a precise information */ | |
1662 | static int audio_write_get_buf_size(VideoState *is) | |
01310af2 | 1663 | { |
b09b580b | 1664 | return is->audio_buf_size - is->audio_buf_index; |
01310af2 FB |
1665 | } |
1666 | ||
1667 | ||
1668 | /* prepare a new audio buffer */ | |
358061f6 | 1669 | static void sdl_audio_callback(void *opaque, Uint8 *stream, int len) |
01310af2 FB |
1670 | { |
1671 | VideoState *is = opaque; | |
1672 | int audio_size, len1; | |
1673 | double pts; | |
1674 | ||
1675 | audio_callback_time = av_gettime(); | |
115329f1 | 1676 | |
01310af2 FB |
1677 | while (len > 0) { |
1678 | if (is->audio_buf_index >= is->audio_buf_size) { | |
5a4476e2 | 1679 | audio_size = audio_decode_frame(is, &pts); |
01310af2 FB |
1680 | if (audio_size < 0) { |
1681 | /* if error, just output silence */ | |
1682 | is->audio_buf_size = 1024; | |
1683 | memset(is->audio_buf, 0, is->audio_buf_size); | |
1684 | } else { | |
1685 | if (is->show_audio) | |
1686 | update_sample_display(is, (int16_t *)is->audio_buf, audio_size); | |
115329f1 | 1687 | audio_size = synchronize_audio(is, (int16_t *)is->audio_buf, audio_size, |
01310af2 FB |
1688 | pts); |
1689 | is->audio_buf_size = audio_size; | |
1690 | } | |
1691 | is->audio_buf_index = 0; | |
1692 | } | |
1693 | len1 = is->audio_buf_size - is->audio_buf_index; | |
1694 | if (len1 > len) | |
1695 | len1 = len; | |
1696 | memcpy(stream, (uint8_t *)is->audio_buf + is->audio_buf_index, len1); | |
1697 | len -= len1; | |
1698 | stream += len1; | |
1699 | is->audio_buf_index += len1; | |
1700 | } | |
1701 | } | |
1702 | ||
01310af2 FB |
1703 | /* open a given stream. Return 0 if OK */ |
1704 | static int stream_component_open(VideoState *is, int stream_index) | |
1705 | { | |
1706 | AVFormatContext *ic = is->ic; | |
1707 | AVCodecContext *enc; | |
1708 | AVCodec *codec; | |
1709 | SDL_AudioSpec wanted_spec, spec; | |
1710 | ||
1711 | if (stream_index < 0 || stream_index >= ic->nb_streams) | |
1712 | return -1; | |
01f4895c | 1713 | enc = ic->streams[stream_index]->codec; |
115329f1 | 1714 | |
01310af2 FB |
1715 | /* prepare audio output */ |
1716 | if (enc->codec_type == CODEC_TYPE_AUDIO) { | |
51b73087 JR |
1717 | if (enc->channels > 0) { |
1718 | enc->request_channels = FFMIN(2, enc->channels); | |
94eadc8b | 1719 | } else { |
51b73087 | 1720 | enc->request_channels = 2; |
638c9d91 | 1721 | } |
01310af2 FB |
1722 | } |
1723 | ||
1724 | codec = avcodec_find_decoder(enc->codec_id); | |
13d1512c MN |
1725 | enc->debug_mv = debug_mv; |
1726 | enc->debug = debug; | |
6387c3e6 | 1727 | enc->workaround_bugs = workaround_bugs; |
178fcca8 | 1728 | enc->lowres = lowres; |
61846e9a | 1729 | if(lowres) enc->flags |= CODEC_FLAG_EMU_EDGE; |
178fcca8 | 1730 | enc->idct_algo= idct; |
6fc5b059 | 1731 | if(fast) enc->flags2 |= CODEC_FLAG2_FAST; |
8c3eba7c MN |
1732 | enc->skip_frame= skip_frame; |
1733 | enc->skip_idct= skip_idct; | |
1734 | enc->skip_loop_filter= skip_loop_filter; | |
1b51e051 MN |
1735 | enc->error_resilience= error_resilience; |
1736 | enc->error_concealment= error_concealment; | |
01310af2 FB |
1737 | if (!codec || |
1738 | avcodec_open(enc, codec) < 0) | |
1739 | return -1; | |
51b73087 JR |
1740 | |
1741 | /* prepare audio output */ | |
1742 | if (enc->codec_type == CODEC_TYPE_AUDIO) { | |
1743 | wanted_spec.freq = enc->sample_rate; | |
1744 | wanted_spec.format = AUDIO_S16SYS; | |
1745 | wanted_spec.channels = enc->channels; | |
1746 | wanted_spec.silence = 0; | |
1747 | wanted_spec.samples = SDL_AUDIO_BUFFER_SIZE; | |
1748 | wanted_spec.callback = sdl_audio_callback; | |
1749 | wanted_spec.userdata = is; | |
1750 | if (SDL_OpenAudio(&wanted_spec, &spec) < 0) { | |
1751 | fprintf(stderr, "SDL_OpenAudio: %s\n", SDL_GetError()); | |
1752 | return -1; | |
1753 | } | |
1754 | is->audio_hw_buf_size = spec.size; | |
5a4476e2 | 1755 | is->audio_src_fmt= SAMPLE_FMT_S16; |
51b73087 JR |
1756 | } |
1757 | ||
c62c07d3 MN |
1758 | if(thread_count>1) |
1759 | avcodec_thread_init(enc, thread_count); | |
c62c07d3 | 1760 | enc->thread_count= thread_count; |
3f3fe38d | 1761 | ic->streams[stream_index]->discard = AVDISCARD_DEFAULT; |
638c9d91 | 1762 | switch(enc->codec_type) { |
01310af2 FB |
1763 | case CODEC_TYPE_AUDIO: |
1764 | is->audio_stream = stream_index; | |
1765 | is->audio_st = ic->streams[stream_index]; | |
1766 | is->audio_buf_size = 0; | |
1767 | is->audio_buf_index = 0; | |
638c9d91 FB |
1768 | |
1769 | /* init averaging filter */ | |
1770 | is->audio_diff_avg_coef = exp(log(0.01) / AUDIO_DIFF_AVG_NB); | |
1771 | is->audio_diff_avg_count = 0; | |
1772 | /* since we do not have a precise anough audio fifo fullness, | |
1773 | we correct audio sync only if larger than this threshold */ | |
1774 | is->audio_diff_threshold = 2.0 * SDL_AUDIO_BUFFER_SIZE / enc->sample_rate; | |
1775 | ||
01310af2 FB |
1776 | memset(&is->audio_pkt, 0, sizeof(is->audio_pkt)); |
1777 | packet_queue_init(&is->audioq); | |
bb270c08 | 1778 | SDL_PauseAudio(0); |
01310af2 FB |
1779 | break; |
1780 | case CODEC_TYPE_VIDEO: | |
1781 | is->video_stream = stream_index; | |
1782 | is->video_st = ic->streams[stream_index]; | |
1783 | ||
638c9d91 FB |
1784 | is->frame_last_delay = 40e-3; |
1785 | is->frame_timer = (double)av_gettime() / 1000000.0; | |
638c9d91 FB |
1786 | is->video_current_pts_time = av_gettime(); |
1787 | ||
01310af2 FB |
1788 | packet_queue_init(&is->videoq); |
1789 | is->video_tid = SDL_CreateThread(video_thread, is); | |
1790 | break; | |
72ce053b IC |
1791 | case CODEC_TYPE_SUBTITLE: |
1792 | is->subtitle_stream = stream_index; | |
1793 | is->subtitle_st = ic->streams[stream_index]; | |
1794 | packet_queue_init(&is->subtitleq); | |
115329f1 | 1795 | |
72ce053b IC |
1796 | is->subtitle_tid = SDL_CreateThread(subtitle_thread, is); |
1797 | break; | |
01310af2 FB |
1798 | default: |
1799 | break; | |
1800 | } | |
1801 | return 0; | |
1802 | } | |
1803 | ||
1804 | static void stream_component_close(VideoState *is, int stream_index) | |
1805 | { | |
1806 | AVFormatContext *ic = is->ic; | |
1807 | AVCodecContext *enc; | |
115329f1 | 1808 | |
72ce053b IC |
1809 | if (stream_index < 0 || stream_index >= ic->nb_streams) |
1810 | return; | |
01f4895c | 1811 | enc = ic->streams[stream_index]->codec; |
01310af2 FB |
1812 | |
1813 | switch(enc->codec_type) { | |
1814 | case CODEC_TYPE_AUDIO: | |
1815 | packet_queue_abort(&is->audioq); | |
1816 | ||
1817 | SDL_CloseAudio(); | |
1818 | ||
1819 | packet_queue_end(&is->audioq); | |
5a4476e2 PR |
1820 | if (is->reformat_ctx) |
1821 | av_audio_convert_free(is->reformat_ctx); | |
01310af2 FB |
1822 | break; |
1823 | case CODEC_TYPE_VIDEO: | |
1824 | packet_queue_abort(&is->videoq); | |
1825 | ||
1826 | /* note: we also signal this mutex to make sure we deblock the | |
1827 | video thread in all cases */ | |
1828 | SDL_LockMutex(is->pictq_mutex); | |
1829 | SDL_CondSignal(is->pictq_cond); | |
1830 | SDL_UnlockMutex(is->pictq_mutex); | |
1831 | ||
1832 | SDL_WaitThread(is->video_tid, NULL); | |
1833 | ||
1834 | packet_queue_end(&is->videoq); | |
1835 | break; | |
72ce053b IC |
1836 | case CODEC_TYPE_SUBTITLE: |
1837 | packet_queue_abort(&is->subtitleq); | |
115329f1 | 1838 | |
72ce053b IC |
1839 | /* note: we also signal this mutex to make sure we deblock the |
1840 | video thread in all cases */ | |
1841 | SDL_LockMutex(is->subpq_mutex); | |
1842 | is->subtitle_stream_changed = 1; | |
115329f1 | 1843 | |
72ce053b IC |
1844 | SDL_CondSignal(is->subpq_cond); |
1845 | SDL_UnlockMutex(is->subpq_mutex); | |
1846 | ||
1847 | SDL_WaitThread(is->subtitle_tid, NULL); | |
1848 | ||
1849 | packet_queue_end(&is->subtitleq); | |
1850 | break; | |
01310af2 FB |
1851 | default: |
1852 | break; | |
1853 | } | |
1854 | ||
3f3fe38d | 1855 | ic->streams[stream_index]->discard = AVDISCARD_ALL; |
01310af2 FB |
1856 | avcodec_close(enc); |
1857 | switch(enc->codec_type) { | |
1858 | case CODEC_TYPE_AUDIO: | |
1859 | is->audio_st = NULL; | |
1860 | is->audio_stream = -1; | |
1861 | break; | |
1862 | case CODEC_TYPE_VIDEO: | |
1863 | is->video_st = NULL; | |
1864 | is->video_stream = -1; | |
1865 | break; | |
72ce053b IC |
1866 | case CODEC_TYPE_SUBTITLE: |
1867 | is->subtitle_st = NULL; | |
1868 | is->subtitle_stream = -1; | |
1869 | break; | |
01310af2 FB |
1870 | default: |
1871 | break; | |
1872 | } | |
1873 | } | |
1874 | ||
7b49ce2e | 1875 | static void dump_stream_info(const AVFormatContext *s) |
d0526ecf FB |
1876 | { |
1877 | if (s->track != 0) | |
1878 | fprintf(stderr, "Track: %d\n", s->track); | |
1879 | if (s->title[0] != '\0') | |
1880 | fprintf(stderr, "Title: %s\n", s->title); | |
1881 | if (s->author[0] != '\0') | |
1882 | fprintf(stderr, "Author: %s\n", s->author); | |
f0861f46 PI |
1883 | if (s->copyright[0] != '\0') |
1884 | fprintf(stderr, "Copyright: %s\n", s->copyright); | |
1885 | if (s->comment[0] != '\0') | |
1886 | fprintf(stderr, "Comment: %s\n", s->comment); | |
d0526ecf FB |
1887 | if (s->album[0] != '\0') |
1888 | fprintf(stderr, "Album: %s\n", s->album); | |
1889 | if (s->year != 0) | |
1890 | fprintf(stderr, "Year: %d\n", s->year); | |
1891 | if (s->genre[0] != '\0') | |
1892 | fprintf(stderr, "Genre: %s\n", s->genre); | |
1893 | } | |
1894 | ||
416e3508 FB |
1895 | /* since we have only one decoding thread, we can use a global |
1896 | variable instead of a thread local variable */ | |
1897 | static VideoState *global_video_state; | |
1898 | ||
1899 | static int decode_interrupt_cb(void) | |
1900 | { | |
1901 | return (global_video_state && global_video_state->abort_request); | |
1902 | } | |
01310af2 FB |
1903 | |
1904 | /* this thread gets the stream from the disk or the network */ | |
1905 | static int decode_thread(void *arg) | |
1906 | { | |
1907 | VideoState *is = arg; | |
1908 | AVFormatContext *ic; | |
b2e6799b | 1909 | int err, i, ret, video_index, audio_index; |
01310af2 | 1910 | AVPacket pkt1, *pkt = &pkt1; |
61890b02 | 1911 | AVFormatParameters params, *ap = ¶ms; |
01310af2 FB |
1912 | |
1913 | video_index = -1; | |
1914 | audio_index = -1; | |
1915 | is->video_stream = -1; | |
1916 | is->audio_stream = -1; | |
72ce053b | 1917 | is->subtitle_stream = -1; |
01310af2 | 1918 | |
416e3508 FB |
1919 | global_video_state = is; |
1920 | url_set_interrupt_cb(decode_interrupt_cb); | |
1921 | ||
61890b02 | 1922 | memset(ap, 0, sizeof(*ap)); |
115329f1 | 1923 | |
e4b89522 LW |
1924 | ap->width = frame_width; |
1925 | ap->height= frame_height; | |
7e042912 | 1926 | ap->time_base= (AVRational){1, 25}; |
e4b89522 | 1927 | ap->pix_fmt = frame_pix_fmt; |
7e042912 | 1928 | |
61890b02 | 1929 | err = av_open_input_file(&ic, is->filename, is->iformat, 0, ap); |
638c9d91 FB |
1930 | if (err < 0) { |
1931 | print_error(is->filename, err); | |
1932 | ret = -1; | |
1933 | goto fail; | |
1934 | } | |
01310af2 | 1935 | is->ic = ic; |
30bc6613 MN |
1936 | |
1937 | if(genpts) | |
1938 | ic->flags |= AVFMT_FLAG_GENPTS; | |
1939 | ||
24c07998 LA |
1940 | err = av_find_stream_info(ic); |
1941 | if (err < 0) { | |
1942 | fprintf(stderr, "%s: could not find codec parameters\n", is->filename); | |
1943 | ret = -1; | |
1944 | goto fail; | |
1945 | } | |
899681cd BA |
1946 | if(ic->pb) |
1947 | ic->pb->eof_reached= 0; //FIXME hack, ffplay maybe should not use url_feof() to test for the end | |
72ea344b FB |
1948 | |
1949 | /* if seeking requested, we execute it */ | |
1950 | if (start_time != AV_NOPTS_VALUE) { | |
1951 | int64_t timestamp; | |
1952 | ||
1953 | timestamp = start_time; | |
1954 | /* add the stream start time */ | |
1955 | if (ic->start_time != AV_NOPTS_VALUE) | |
1956 | timestamp += ic->start_time; | |
3ba1438d | 1957 | ret = av_seek_frame(ic, -1, timestamp, AVSEEK_FLAG_BACKWARD); |
72ea344b | 1958 | if (ret < 0) { |
115329f1 | 1959 | fprintf(stderr, "%s: could not seek to position %0.3f\n", |
72ea344b FB |
1960 | is->filename, (double)timestamp / AV_TIME_BASE); |
1961 | } | |
1962 | } | |
72ea344b | 1963 | |
01310af2 | 1964 | for(i = 0; i < ic->nb_streams; i++) { |
01f4895c | 1965 | AVCodecContext *enc = ic->streams[i]->codec; |
3f3fe38d | 1966 | ic->streams[i]->discard = AVDISCARD_ALL; |
01310af2 FB |
1967 | switch(enc->codec_type) { |
1968 | case CODEC_TYPE_AUDIO: | |
a8062103 | 1969 | if ((audio_index < 0 || wanted_audio_stream-- > 0) && !audio_disable) |
01310af2 FB |
1970 | audio_index = i; |
1971 | break; | |
1972 | case CODEC_TYPE_VIDEO: | |
4d8243d3 | 1973 | if ((video_index < 0 || wanted_video_stream-- > 0) && !video_disable) |
01310af2 FB |
1974 | video_index = i; |
1975 | break; | |
1976 | default: | |
1977 | break; | |
1978 | } | |
1979 | } | |
1980 | if (show_status) { | |
1981 | dump_format(ic, 0, is->filename, 0); | |
d0526ecf | 1982 | dump_stream_info(ic); |
01310af2 FB |
1983 | } |
1984 | ||
1985 | /* open the streams */ | |
1986 | if (audio_index >= 0) { | |
1987 | stream_component_open(is, audio_index); | |
1988 | } | |
1989 | ||
1990 | if (video_index >= 0) { | |
1991 | stream_component_open(is, video_index); | |
1992 | } else { | |
1993 | if (!display_disable) | |
1994 | is->show_audio = 1; | |
1995 | } | |
1996 | ||
1997 | if (is->video_stream < 0 && is->audio_stream < 0) { | |
638c9d91 FB |
1998 | fprintf(stderr, "%s: could not open codecs\n", is->filename); |
1999 | ret = -1; | |
01310af2 FB |
2000 | goto fail; |
2001 | } | |
2002 | ||
2003 | for(;;) { | |
2004 | if (is->abort_request) | |
2005 | break; | |
416e3508 FB |
2006 | if (is->paused != is->last_paused) { |
2007 | is->last_paused = is->paused; | |
72ea344b FB |
2008 | if (is->paused) |
2009 | av_read_pause(ic); | |
2010 | else | |
2011 | av_read_play(ic); | |
416e3508 | 2012 | } |
c03af894 BA |
2013 | #if defined(CONFIG_RTSP_DEMUXER) || defined(CONFIG_MMSH_PROTOCOL) |
2014 | if (is->paused && | |
2015 | (!strcmp(ic->iformat->name, "rtsp") || | |
899681cd | 2016 | (ic->pb && !strcmp(url_fileno(ic->pb)->prot->name, "mmsh")))) { |
416e3508 FB |
2017 | /* wait 10 ms to avoid trying to get another packet */ |
2018 | /* XXX: horrible */ | |
2019 | SDL_Delay(10); | |
2020 | continue; | |
2021 | } | |
400738b1 | 2022 | #endif |
72ea344b | 2023 | if (is->seek_req) { |
8e606cc8 MN |
2024 | int stream_index= -1; |
2025 | int64_t seek_target= is->seek_pos; | |
2026 | ||
2027 | if (is-> video_stream >= 0) stream_index= is-> video_stream; | |
2028 | else if(is-> audio_stream >= 0) stream_index= is-> audio_stream; | |
2029 | else if(is->subtitle_stream >= 0) stream_index= is->subtitle_stream; | |
2030 | ||
2031 | if(stream_index>=0){ | |
2032 | seek_target= av_rescale_q(seek_target, AV_TIME_BASE_Q, ic->streams[stream_index]->time_base); | |
2033 | } | |
2034 | ||
2035 | ret = av_seek_frame(is->ic, stream_index, seek_target, is->seek_flags); | |
72ea344b FB |
2036 | if (ret < 0) { |
2037 | fprintf(stderr, "%s: error while seeking\n", is->ic->filename); | |
e6c0297f MN |
2038 | }else{ |
2039 | if (is->audio_stream >= 0) { | |
2040 | packet_queue_flush(&is->audioq); | |
39c6a118 | 2041 | packet_queue_put(&is->audioq, &flush_pkt); |
e6c0297f | 2042 | } |
72ce053b IC |
2043 | if (is->subtitle_stream >= 0) { |
2044 | packet_queue_flush(&is->subtitleq); | |
39c6a118 | 2045 | packet_queue_put(&is->subtitleq, &flush_pkt); |
72ce053b | 2046 | } |
e6c0297f MN |
2047 | if (is->video_stream >= 0) { |
2048 | packet_queue_flush(&is->videoq); | |
39c6a118 | 2049 | packet_queue_put(&is->videoq, &flush_pkt); |
e6c0297f | 2050 | } |
72ea344b FB |
2051 | } |
2052 | is->seek_req = 0; | |
2053 | } | |
416e3508 | 2054 | |
01310af2 FB |
2055 | /* if the queue are full, no need to read more */ |
2056 | if (is->audioq.size > MAX_AUDIOQ_SIZE || | |
115329f1 DB |
2057 | is->videoq.size > MAX_VIDEOQ_SIZE || |
2058 | is->subtitleq.size > MAX_SUBTITLEQ_SIZE || | |
899681cd | 2059 | url_feof(ic->pb)) { |
01310af2 FB |
2060 | /* wait 10 ms */ |
2061 | SDL_Delay(10); | |
2062 | continue; | |
2063 | } | |
72ea344b | 2064 | ret = av_read_frame(ic, pkt); |
01310af2 | 2065 | if (ret < 0) { |
899681cd | 2066 | if (url_ferror(ic->pb) == 0) { |
6e1f8725 | 2067 | SDL_Delay(100); /* wait for user event */ |
bb270c08 DB |
2068 | continue; |
2069 | } else | |
2070 | break; | |
01310af2 FB |
2071 | } |
2072 | if (pkt->stream_index == is->audio_stream) { | |
2073 | packet_queue_put(&is->audioq, pkt); | |
2074 | } else if (pkt->stream_index == is->video_stream) { | |
2075 | packet_queue_put(&is->videoq, pkt); | |
72ce053b IC |
2076 | } else if (pkt->stream_index == is->subtitle_stream) { |
2077 | packet_queue_put(&is->subtitleq, pkt); | |
01310af2 FB |
2078 | } else { |
2079 | av_free_packet(pkt); | |
2080 | } | |
2081 | } | |
2082 | /* wait until the end */ | |
2083 | while (!is->abort_request) { | |
2084 | SDL_Delay(100); | |
2085 | } | |
2086 | ||
638c9d91 | 2087 | ret = 0; |
01310af2 | 2088 | fail: |
416e3508 FB |
2089 | /* disable interrupting */ |
2090 | global_video_state = NULL; | |
2091 | ||
01310af2 FB |
2092 | /* close each stream */ |
2093 | if (is->audio_stream >= 0) | |
2094 | stream_component_close(is, is->audio_stream); | |
2095 | if (is->video_stream >= 0) | |
2096 | stream_component_close(is, is->video_stream); | |
72ce053b IC |
2097 | if (is->subtitle_stream >= 0) |
2098 | stream_component_close(is, is->subtitle_stream); | |
638c9d91 FB |
2099 | if (is->ic) { |
2100 | av_close_input_file(is->ic); | |
2101 | is->ic = NULL; /* safety */ | |
2102 | } | |
416e3508 FB |
2103 | url_set_interrupt_cb(NULL); |
2104 | ||
638c9d91 FB |
2105 | if (ret != 0) { |
2106 | SDL_Event event; | |
115329f1 | 2107 | |
638c9d91 FB |
2108 | event.type = FF_QUIT_EVENT; |
2109 | event.user.data1 = is; | |
2110 | SDL_PushEvent(&event); | |
2111 | } | |
01310af2 FB |
2112 | return 0; |
2113 | } | |
2114 | ||
638c9d91 | 2115 | static VideoState *stream_open(const char *filename, AVInputFormat *iformat) |
01310af2 FB |
2116 | { |
2117 | VideoState *is; | |
2118 | ||
2119 | is = av_mallocz(sizeof(VideoState)); | |
2120 | if (!is) | |
2121 | return NULL; | |
f7d78f36 | 2122 | av_strlcpy(is->filename, filename, sizeof(is->filename)); |
638c9d91 | 2123 | is->iformat = iformat; |
01310af2 FB |
2124 | is->ytop = 0; |
2125 | is->xleft = 0; | |
2126 | ||
2127 | /* start video display */ | |
2128 | is->pictq_mutex = SDL_CreateMutex(); | |
2129 | is->pictq_cond = SDL_CreateCond(); | |
115329f1 | 2130 | |
72ce053b IC |
2131 | is->subpq_mutex = SDL_CreateMutex(); |
2132 | is->subpq_cond = SDL_CreateCond(); | |
115329f1 | 2133 | |
01310af2 FB |
2134 | /* add the refresh timer to draw the picture */ |
2135 | schedule_refresh(is, 40); | |
2136 | ||
638c9d91 | 2137 | is->av_sync_type = av_sync_type; |
01310af2 FB |
2138 | is->parse_tid = SDL_CreateThread(decode_thread, is); |
2139 | if (!is->parse_tid) { | |
2140 | av_free(is); | |
2141 | return NULL; | |
2142 | } | |
2143 | return is; | |
2144 | } | |
2145 | ||
2146 | static void stream_close(VideoState *is) | |
2147 | { | |
2148 | VideoPicture *vp; | |
2149 | int i; | |
2150 | /* XXX: use a special url_shutdown call to abort parse cleanly */ | |
2151 | is->abort_request = 1; | |
2152 | SDL_WaitThread(is->parse_tid, NULL); | |
2153 | ||
2154 | /* free all pictures */ | |
2155 | for(i=0;i<VIDEO_PICTURE_QUEUE_SIZE; i++) { | |
2156 | vp = &is->pictq[i]; | |
2157 | if (vp->bmp) { | |
2158 | SDL_FreeYUVOverlay(vp->bmp); | |
2159 | vp->bmp = NULL; | |
2160 | } | |
2161 | } | |
2162 | SDL_DestroyMutex(is->pictq_mutex); | |
2163 | SDL_DestroyCond(is->pictq_cond); | |
72ce053b IC |
2164 | SDL_DestroyMutex(is->subpq_mutex); |
2165 | SDL_DestroyCond(is->subpq_cond); | |
01310af2 FB |
2166 | } |
2167 | ||
7b49ce2e | 2168 | static void stream_cycle_channel(VideoState *is, int codec_type) |
638c9d91 FB |
2169 | { |
2170 | AVFormatContext *ic = is->ic; | |
2171 | int start_index, stream_index; | |
2172 | AVStream *st; | |
2173 | ||
2174 | if (codec_type == CODEC_TYPE_VIDEO) | |
2175 | start_index = is->video_stream; | |
72ce053b | 2176 | else if (codec_type == CODEC_TYPE_AUDIO) |
638c9d91 | 2177 | start_index = is->audio_stream; |
72ce053b IC |
2178 | else |
2179 | start_index = is->subtitle_stream; | |
2180 | if (start_index < (codec_type == CODEC_TYPE_SUBTITLE ? -1 : 0)) | |
638c9d91 FB |
2181 | return; |
2182 | stream_index = start_index; | |
2183 | for(;;) { | |
2184 | if (++stream_index >= is->ic->nb_streams) | |
72ce053b IC |
2185 | { |
2186 | if (codec_type == CODEC_TYPE_SUBTITLE) | |
2187 | { | |
2188 | stream_index = -1; | |
2189 | goto the_end; | |
2190 | } else | |
2191 | stream_index = 0; | |
2192 | } | |
638c9d91 FB |
2193 | if (stream_index == start_index) |
2194 | return; | |
2195 | st = ic->streams[stream_index]; | |
01f4895c | 2196 | if (st->codec->codec_type == codec_type) { |
638c9d91 FB |
2197 | /* check that parameters are OK */ |
2198 | switch(codec_type) { | |
2199 | case CODEC_TYPE_AUDIO: | |
01f4895c MN |
2200 | if (st->codec->sample_rate != 0 && |
2201 | st->codec->channels != 0) | |
638c9d91 FB |
2202 | goto the_end; |
2203 | break; | |
2204 | case CODEC_TYPE_VIDEO: | |
72ce053b | 2205 | case CODEC_TYPE_SUBTITLE: |
638c9d91 FB |
2206 | goto the_end; |
2207 | default: | |
2208 | break; | |
2209 | } | |
2210 | } | |
2211 | } | |
2212 | the_end: | |
2213 | stream_component_close(is, start_index); | |
2214 | stream_component_open(is, stream_index); | |
2215 | } | |
2216 | ||
2217 | ||
7b49ce2e | 2218 | static void toggle_full_screen(void) |
01310af2 | 2219 | { |
01310af2 | 2220 | is_full_screen = !is_full_screen; |
29f3b38a MR |
2221 | if (!fs_screen_width) { |
2222 | /* use default SDL method */ | |
fb84155b | 2223 | // SDL_WM_ToggleFullScreen(screen); |
01310af2 | 2224 | } |
fb84155b | 2225 | video_open(cur_stream); |
01310af2 FB |
2226 | } |
2227 | ||
7b49ce2e | 2228 | static void toggle_pause(void) |
01310af2 FB |
2229 | { |
2230 | if (cur_stream) | |
2231 | stream_pause(cur_stream); | |
bba04f1e WH |
2232 | step = 0; |
2233 | } | |
2234 | ||
7b49ce2e | 2235 | static void step_to_next_frame(void) |
bba04f1e WH |
2236 | { |
2237 | if (cur_stream) { | |
19cc524a | 2238 | /* if the stream is paused unpause it, then step */ |
bba04f1e | 2239 | if (cur_stream->paused) |
19cc524a | 2240 | stream_pause(cur_stream); |
bba04f1e WH |
2241 | } |
2242 | step = 1; | |
01310af2 FB |
2243 | } |
2244 | ||
7b49ce2e | 2245 | static void do_exit(void) |
01310af2 FB |
2246 | { |
2247 | if (cur_stream) { | |
2248 | stream_close(cur_stream); | |
2249 | cur_stream = NULL; | |
2250 | } | |
2251 | if (show_status) | |
2252 | printf("\n"); | |
2253 | SDL_Quit(); | |
2254 | exit(0); | |
2255 | } | |
2256 | ||
7b49ce2e | 2257 | static void toggle_audio_display(void) |
01310af2 FB |
2258 | { |
2259 | if (cur_stream) { | |
2260 | cur_stream->show_audio = !cur_stream->show_audio; | |
2261 | } | |
2262 | } | |
2263 | ||
2264 | /* handle an event sent by the GUI */ | |
7b49ce2e | 2265 | static void event_loop(void) |
01310af2 FB |
2266 | { |
2267 | SDL_Event event; | |
a11d11aa | 2268 | double incr, pos, frac; |
01310af2 FB |
2269 | |
2270 | for(;;) { | |
2271 | SDL_WaitEvent(&event); | |
2272 | switch(event.type) { | |
2273 | case SDL_KEYDOWN: | |
2274 | switch(event.key.keysym.sym) { | |
2275 | case SDLK_ESCAPE: | |
2276 | case SDLK_q: | |
2277 | do_exit(); | |
2278 | break; | |
2279 | case SDLK_f: | |
2280 | toggle_full_screen(); | |
2281 | break; | |
2282 | case SDLK_p: | |
2283 | case SDLK_SPACE: | |
2284 | toggle_pause(); | |
2285 | break; | |
bba04f1e WH |
2286 | case SDLK_s: //S: Step to next frame |
2287 | step_to_next_frame(); | |
2288 | break; | |
01310af2 | 2289 | case SDLK_a: |
115329f1 | 2290 | if (cur_stream) |
638c9d91 FB |
2291 | stream_cycle_channel(cur_stream, CODEC_TYPE_AUDIO); |
2292 | break; | |
2293 | case SDLK_v: | |
115329f1 | 2294 | if (cur_stream) |
638c9d91 FB |
2295 | stream_cycle_channel(cur_stream, CODEC_TYPE_VIDEO); |
2296 | break; | |
72ce053b | 2297 | case SDLK_t: |
115329f1 | 2298 | if (cur_stream) |
72ce053b IC |
2299 | stream_cycle_channel(cur_stream, CODEC_TYPE_SUBTITLE); |
2300 | break; | |
638c9d91 | 2301 | case SDLK_w: |
01310af2 FB |
2302 | toggle_audio_display(); |
2303 | break; | |
72ea344b FB |
2304 | case SDLK_LEFT: |
2305 | incr = -10.0; | |
2306 | goto do_seek; | |
2307 | case SDLK_RIGHT: | |
2308 | incr = 10.0; | |
2309 | goto do_seek; | |
2310 | case SDLK_UP: | |
2311 | incr = 60.0; | |
2312 | goto do_seek; | |
2313 | case SDLK_DOWN: | |
2314 | incr = -60.0; | |
2315 | do_seek: | |
2316 | if (cur_stream) { | |
94b594c6 | 2317 | if (seek_by_bytes) { |
899681cd | 2318 | pos = url_ftell(cur_stream->ic->pb); |
94b594c6 SH |
2319 | if (cur_stream->ic->bit_rate) |
2320 | incr *= cur_stream->ic->bit_rate / 60.0; | |
2321 | else | |
2322 | incr *= 180000.0; | |
2323 | pos += incr; | |
2324 | stream_seek(cur_stream, pos, incr); | |
2325 | } else { | |
2326 | pos = get_master_clock(cur_stream); | |
2327 | pos += incr; | |
2328 | stream_seek(cur_stream, (int64_t)(pos * AV_TIME_BASE), incr); | |
2329 | } | |
72ea344b FB |
2330 | } |
2331 | break; | |
01310af2 FB |
2332 | default: |
2333 | break; | |
2334 | } | |
2335 | break; | |
a11d11aa | 2336 | case SDL_MOUSEBUTTONDOWN: |
bb270c08 DB |
2337 | if (cur_stream) { |
2338 | int ns, hh, mm, ss; | |
2339 | int tns, thh, tmm, tss; | |
2340 | tns = cur_stream->ic->duration/1000000LL; | |
2341 | thh = tns/3600; | |
2342 | tmm = (tns%3600)/60; | |
2343 | tss = (tns%60); | |
2344 | frac = (double)event.button.x/(double)cur_stream->width; | |
2345 | ns = frac*tns; | |
2346 | hh = ns/3600; | |
2347 | mm = (ns%3600)/60; | |
2348 | ss = (ns%60); | |
2349 | fprintf(stderr, "Seek to %2.0f%% (%2d:%02d:%02d) of total duration (%2d:%02d:%02d) \n", frac*100, | |
2350 | hh, mm, ss, thh, tmm, tss); | |
2351 | stream_seek(cur_stream, (int64_t)(cur_stream->ic->start_time+frac*cur_stream->ic->duration), 0); | |
2352 | } | |
2353 | break; | |
01310af2 FB |
2354 | case SDL_VIDEORESIZE: |
2355 | if (cur_stream) { | |
115329f1 | 2356 | screen = SDL_SetVideoMode(event.resize.w, event.resize.h, 0, |
01310af2 | 2357 | SDL_HWSURFACE|SDL_RESIZABLE|SDL_ASYNCBLIT|SDL_HWACCEL); |
c57d3469 MN |
2358 | screen_width = cur_stream->width = event.resize.w; |
2359 | screen_height= cur_stream->height= event.resize.h; | |
01310af2 FB |
2360 | } |
2361 | break; | |
2362 | case SDL_QUIT: | |
638c9d91 | 2363 | case FF_QUIT_EVENT: |
01310af2 FB |
2364 | do_exit(); |
2365 | break; | |
2366 | case FF_ALLOC_EVENT: | |
fccb19e3 | 2367 | video_open(event.user.data1); |
01310af2 FB |
2368 | alloc_picture(event.user.data1); |
2369 | break; | |
2370 | case FF_REFRESH_EVENT: | |
2371 | video_refresh_timer(event.user.data1); | |
2372 | break; | |
2373 | default: | |
2374 | break; | |
2375 | } | |
2376 | } | |
2377 | } | |
2378 | ||
e4b89522 LW |
2379 | static void opt_frame_size(const char *arg) |
2380 | { | |
b33ece16 | 2381 | if (av_parse_video_frame_size(&frame_width, &frame_height, arg) < 0) { |
e4b89522 LW |
2382 | fprintf(stderr, "Incorrect frame size\n"); |
2383 | exit(1); | |
2384 | } | |
2385 | if ((frame_width % 2) != 0 || (frame_height % 2) != 0) { | |
2386 | fprintf(stderr, "Frame size must be a multiple of 2\n"); | |
2387 | exit(1); | |
2388 | } | |
2389 | } | |
2390 | ||
a5b3b5f6 | 2391 | static int opt_width(const char *opt, const char *arg) |
01310af2 | 2392 | { |
a5b3b5f6 SS |
2393 | screen_width = parse_number_or_die(opt, arg, OPT_INT64, 1, INT_MAX); |
2394 | return 0; | |
01310af2 FB |
2395 | } |
2396 | ||
a5b3b5f6 | 2397 | static int opt_height(const char *opt, const char *arg) |
01310af2 | 2398 | { |
a5b3b5f6 SS |
2399 | screen_height = parse_number_or_die(opt, arg, OPT_INT64, 1, INT_MAX); |
2400 | return 0; | |
01310af2 FB |
2401 | } |
2402 | ||
2403 | static void opt_format(const char *arg) | |
2404 | { | |
2405 | file_iformat = av_find_input_format(arg); | |
2406 | if (!file_iformat) { | |
2407 | fprintf(stderr, "Unknown input format: %s\n", arg); | |
2408 | exit(1); | |
2409 | } | |
2410 | } | |
61890b02 | 2411 | |
e4b89522 LW |
2412 | static void opt_frame_pix_fmt(const char *arg) |
2413 | { | |
2414 | frame_pix_fmt = avcodec_get_pix_fmt(arg); | |
2415 | } | |
2416 | ||
b81d6235 | 2417 | static int opt_sync(const char *opt, const char *arg) |
638c9d91 FB |
2418 | { |
2419 | if (!strcmp(arg, "audio")) | |
2420 | av_sync_type = AV_SYNC_AUDIO_MASTER; | |
2421 | else if (!strcmp(arg, "video")) | |
2422 | av_sync_type = AV_SYNC_VIDEO_MASTER; | |
2423 | else if (!strcmp(arg, "ext")) | |
2424 | av_sync_type = AV_SYNC_EXTERNAL_CLOCK; | |
aab1b7e5 | 2425 | else { |
b81d6235 | 2426 | fprintf(stderr, "Unknown value for %s: %s\n", opt, arg); |
aab1b7e5 SS |
2427 | exit(1); |
2428 | } | |
b81d6235 | 2429 | return 0; |
638c9d91 FB |
2430 | } |
2431 | ||
e11bc2c6 | 2432 | static int opt_seek(const char *opt, const char *arg) |
72ea344b | 2433 | { |
e11bc2c6 SS |
2434 | start_time = parse_time_or_die(opt, arg, 1); |
2435 | return 0; | |
72ea344b FB |
2436 | } |
2437 | ||
a5b3b5f6 | 2438 | static int opt_debug(const char *opt, const char *arg) |
e26a8335 | 2439 | { |
a309073b | 2440 | av_log_set_level(99); |
a5b3b5f6 SS |
2441 | debug = parse_number_or_die(opt, arg, OPT_INT64, 0, INT_MAX); |
2442 | return 0; | |
e26a8335 | 2443 | } |
115329f1 | 2444 | |
a5b3b5f6 | 2445 | static int opt_vismv(const char *opt, const char *arg) |
0c9bbaec | 2446 | { |
a5b3b5f6 SS |
2447 | debug_mv = parse_number_or_die(opt, arg, OPT_INT64, INT_MIN, INT_MAX); |
2448 | return 0; | |
0c9bbaec | 2449 | } |
c62c07d3 | 2450 | |
a5b3b5f6 | 2451 | static int opt_thread_count(const char *opt, const char *arg) |
c62c07d3 | 2452 | { |
a5b3b5f6 | 2453 | thread_count= parse_number_or_die(opt, arg, OPT_INT64, 0, INT_MAX); |
2450cff2 | 2454 | #if !defined(HAVE_THREADS) |
c62c07d3 MN |
2455 | fprintf(stderr, "Warning: not compiled with thread support, using thread emulation\n"); |
2456 | #endif | |
a5b3b5f6 | 2457 | return 0; |
c62c07d3 | 2458 | } |
115329f1 | 2459 | |
358061f6 | 2460 | static const OptionDef options[] = { |
20176cbc MN |
2461 | { "h", OPT_EXIT, {(void*)show_help}, "show help" }, |
2462 | { "version", OPT_EXIT, {(void*)show_version}, "show version" }, | |
8fdea204 | 2463 | { "L", OPT_EXIT, {(void*)show_license}, "show license" }, |
a28b7ed4 | 2464 | { "formats", OPT_EXIT, {(void*)show_formats}, "show available formats, codecs, protocols, ..." }, |
a5b3b5f6 SS |
2465 | { "x", HAS_ARG | OPT_FUNC2, {(void*)opt_width}, "force displayed width", "width" }, |
2466 | { "y", HAS_ARG | OPT_FUNC2, {(void*)opt_height}, "force displayed height", "height" }, | |
e4b89522 | 2467 | { "s", HAS_ARG | OPT_VIDEO, {(void*)opt_frame_size}, "set frame size (WxH or abbreviation)", "size" }, |
638c9d91 | 2468 | { "fs", OPT_BOOL, {(void*)&is_full_screen}, "force full screen" }, |
01310af2 FB |
2469 | { "an", OPT_BOOL, {(void*)&audio_disable}, "disable audio" }, |
2470 | { "vn", OPT_BOOL, {(void*)&video_disable}, "disable video" }, | |
a8062103 | 2471 | { "ast", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&wanted_audio_stream}, "", "" }, |
4d8243d3 | 2472 | { "vst", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&wanted_video_stream}, "", "" }, |
e11bc2c6 | 2473 | { "ss", HAS_ARG | OPT_FUNC2, {(void*)&opt_seek}, "seek to a given position in seconds", "pos" }, |
94b594c6 | 2474 | { "bytes", OPT_BOOL, {(void*)&seek_by_bytes}, "seek by bytes" }, |
01310af2 FB |
2475 | { "nodisp", OPT_BOOL, {(void*)&display_disable}, "disable graphical display" }, |
2476 | { "f", HAS_ARG, {(void*)opt_format}, "force format", "fmt" }, | |
e4b89522 | 2477 | { "pix_fmt", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_frame_pix_fmt}, "set pixel format", "format" }, |
01310af2 | 2478 | { "stats", OPT_BOOL | OPT_EXPERT, {(void*)&show_status}, "show status", "" }, |
a5b3b5f6 | 2479 | { "debug", HAS_ARG | OPT_FUNC2 | OPT_EXPERT, {(void*)opt_debug}, "print specific debug info", "" }, |
6387c3e6 | 2480 | { "bug", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&workaround_bugs}, "workaround bugs", "" }, |
a5b3b5f6 | 2481 | { "vismv", HAS_ARG | OPT_FUNC2 | OPT_EXPERT, {(void*)opt_vismv}, "visualize motion vectors", "" }, |
6fc5b059 | 2482 | { "fast", OPT_BOOL | OPT_EXPERT, {(void*)&fast}, "non spec compliant optimizations", "" }, |
30bc6613 | 2483 | { "genpts", OPT_BOOL | OPT_EXPERT, {(void*)&genpts}, "generate pts", "" }, |
5039185a | 2484 | { "drp", OPT_BOOL |OPT_EXPERT, {(void*)&decoder_reorder_pts}, "let decoder reorder pts", ""}, |
178fcca8 | 2485 | { "lowres", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&lowres}, "", "" }, |
8c3eba7c MN |
2486 | { "skiploop", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&skip_loop_filter}, "", "" }, |
2487 | { "skipframe", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&skip_frame}, "", "" }, | |
2488 | { "skipidct", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&skip_idct}, "", "" }, | |
178fcca8 | 2489 | { "idct", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&idct}, "set idct algo", "algo" }, |
1b51e051 MN |
2490 | { "er", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&error_resilience}, "set error detection threshold (0-4)", "threshold" }, |
2491 | { "ec", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&error_concealment}, "set error concealment options", "bit_mask" }, | |
b81d6235 | 2492 | { "sync", HAS_ARG | OPT_FUNC2 | OPT_EXPERT, {(void*)opt_sync}, "set audio-video sync. type (type=audio/video/ext)", "type" }, |
a5b3b5f6 | 2493 | { "threads", HAS_ARG | OPT_FUNC2 | OPT_EXPERT, {(void*)opt_thread_count}, "thread count", "count" }, |
01310af2 FB |
2494 | { NULL, }, |
2495 | }; | |
2496 | ||
358061f6 | 2497 | static void show_help(void) |
01310af2 | 2498 | { |
9c5755ee | 2499 | printf("usage: ffplay [options] input_file\n" |
01310af2 FB |
2500 | "Simple media player\n"); |
2501 | printf("\n"); | |
02d504a7 FB |
2502 | show_help_options(options, "Main options:\n", |
2503 | OPT_EXPERT, 0); | |
2504 | show_help_options(options, "\nAdvanced options:\n", | |
2505 | OPT_EXPERT, OPT_EXPERT); | |
01310af2 FB |
2506 | printf("\nWhile playing:\n" |
2507 | "q, ESC quit\n" | |
2508 | "f toggle full screen\n" | |
2509 | "p, SPC pause\n" | |
638c9d91 FB |
2510 | "a cycle audio channel\n" |
2511 | "v cycle video channel\n" | |
72ce053b | 2512 | "t cycle subtitle channel\n" |
638c9d91 | 2513 | "w show audio waves\n" |
72ea344b FB |
2514 | "left/right seek backward/forward 10 seconds\n" |
2515 | "down/up seek backward/forward 1 minute\n" | |
a11d11aa | 2516 | "mouse click seek to percentage in file corresponding to fraction of width\n" |
01310af2 | 2517 | ); |
01310af2 FB |
2518 | } |
2519 | ||
358061f6 | 2520 | static void opt_input_file(const char *filename) |
01310af2 | 2521 | { |
e8d83e1c | 2522 | if (!strcmp(filename, "-")) |
9fcfc0b7 | 2523 | filename = "pipe:"; |
01310af2 FB |
2524 | input_filename = filename; |
2525 | } | |
2526 | ||
2527 | /* Called from the main */ | |
2528 | int main(int argc, char **argv) | |
2529 | { | |
fccb19e3 | 2530 | int flags; |
115329f1 | 2531 | |
01310af2 | 2532 | /* register all codecs, demux and protocols */ |
c721d803 LA |
2533 | avcodec_register_all(); |
2534 | avdevice_register_all(); | |
01310af2 FB |
2535 | av_register_all(); |
2536 | ||
ea9c581f | 2537 | show_banner(); |
4cfac5bc | 2538 | |
f5da5c93 | 2539 | parse_options(argc, argv, options, opt_input_file); |
01310af2 | 2540 | |
aab1b7e5 | 2541 | if (!input_filename) { |
01310af2 | 2542 | show_help(); |
aab1b7e5 SS |
2543 | exit(1); |
2544 | } | |
01310af2 FB |
2545 | |
2546 | if (display_disable) { | |
2547 | video_disable = 1; | |
2548 | } | |
31319a8c | 2549 | flags = SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_TIMER; |
c97f5402 DB |
2550 | #if !defined(__MINGW32__) && !defined(__APPLE__) |
2551 | flags |= SDL_INIT_EVENTTHREAD; /* Not supported on Windows or Mac OS X */ | |
31319a8c | 2552 | #endif |
01310af2 | 2553 | if (SDL_Init (flags)) { |
05ab0b76 | 2554 | fprintf(stderr, "Could not initialize SDL - %s\n", SDL_GetError()); |
01310af2 FB |
2555 | exit(1); |
2556 | } | |
2557 | ||
2558 | if (!display_disable) { | |
29f3b38a | 2559 | #ifdef HAVE_SDL_VIDEO_SIZE |
3ef17d62 MR |
2560 | const SDL_VideoInfo *vi = SDL_GetVideoInfo(); |
2561 | fs_screen_width = vi->current_w; | |
2562 | fs_screen_height = vi->current_h; | |
29f3b38a | 2563 | #endif |
01310af2 FB |
2564 | } |
2565 | ||
2566 | SDL_EventState(SDL_ACTIVEEVENT, SDL_IGNORE); | |
2567 | SDL_EventState(SDL_MOUSEMOTION, SDL_IGNORE); | |
2568 | SDL_EventState(SDL_SYSWMEVENT, SDL_IGNORE); | |
2569 | SDL_EventState(SDL_USEREVENT, SDL_IGNORE); | |
2570 | ||
39c6a118 MN |
2571 | av_init_packet(&flush_pkt); |
2572 | flush_pkt.data= "FLUSH"; | |
2573 | ||
638c9d91 | 2574 | cur_stream = stream_open(input_filename, file_iformat); |
01310af2 FB |
2575 | |
2576 | event_loop(); | |
2577 | ||
2578 | /* never returns */ | |
2579 | ||
2580 | return 0; | |
2581 | } |