2 * FFplay : Simple Media Player based on the ffmpeg libraries
3 * Copyright (c) 2003 Fabrice Bellard
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 #define HAVE_AV_CONFIG_H
26 #include <SDL_thread.h>
29 #undef main /* We don't want SDL to override our main() */
42 DosGetInfoBlocks(&tib
, &pib
);
44 // Change flag from VIO to PM:
45 if (pib
->pib_ultype
==2) pib
->pib_ultype
= 3;
51 #define MAX_VIDEOQ_SIZE (5 * 256 * 1024)
52 #define MAX_AUDIOQ_SIZE (5 * 16 * 1024)
53 #define MAX_SUBTITLEQ_SIZE (5 * 16 * 1024)
55 /* SDL audio buffer size, in samples. Should be small to have precise
56 A/V sync as SDL does not have hardware buffer fullness info. */
57 #define SDL_AUDIO_BUFFER_SIZE 1024
59 /* no AV sync correction is done if below the AV sync threshold */
60 #define AV_SYNC_THRESHOLD 0.01
61 /* no AV correction is done if too big error */
62 #define AV_NOSYNC_THRESHOLD 10.0
64 /* maximum audio speed change to get correct sync */
65 #define SAMPLE_CORRECTION_PERCENT_MAX 10
67 /* we use about AUDIO_DIFF_AVG_NB A-V differences to make the average */
68 #define AUDIO_DIFF_AVG_NB 20
70 /* NOTE: the size must be big enough to compensate the hardware audio buffersize size */
71 #define SAMPLE_ARRAY_SIZE (2*65536)
73 typedef struct PacketQueue
{
74 AVPacketList
*first_pkt
, *last_pkt
;
82 #define VIDEO_PICTURE_QUEUE_SIZE 1
83 #define SUBPICTURE_QUEUE_SIZE 4
85 typedef struct VideoPicture
{
86 double pts
; ///<presentation time stamp for this picture
88 int width
, height
; /* source height & width */
92 typedef struct SubPicture
{
93 double pts
; /* presentation time stamp for this picture */
98 AV_SYNC_AUDIO_MASTER
, /* default choice */
100 AV_SYNC_EXTERNAL_CLOCK
, /* synchronize to an external clock */
103 typedef struct VideoState
{
104 SDL_Thread
*parse_tid
;
105 SDL_Thread
*video_tid
;
106 AVInputFormat
*iformat
;
115 int dtg_active_format
;
120 double external_clock
; /* external clock base */
121 int64_t external_clock_time
;
124 double audio_diff_cum
; /* used for AV difference average computation */
125 double audio_diff_avg_coef
;
126 double audio_diff_threshold
;
127 int audio_diff_avg_count
;
130 int audio_hw_buf_size
;
131 /* samples output by the codec. we reserve more space for avsync
133 uint8_t audio_buf
[(AVCODEC_MAX_AUDIO_FRAME_SIZE
* 3) / 2];
134 unsigned int audio_buf_size
; /* in bytes */
135 int audio_buf_index
; /* in bytes */
137 uint8_t *audio_pkt_data
;
140 int show_audio
; /* if true, display audio samples */
141 int16_t sample_array
[SAMPLE_ARRAY_SIZE
];
142 int sample_array_index
;
145 SDL_Thread
*subtitle_tid
;
147 int subtitle_stream_changed
;
148 AVStream
*subtitle_st
;
149 PacketQueue subtitleq
;
150 SubPicture subpq
[SUBPICTURE_QUEUE_SIZE
];
151 int subpq_size
, subpq_rindex
, subpq_windex
;
152 SDL_mutex
*subpq_mutex
;
153 SDL_cond
*subpq_cond
;
156 double frame_last_pts
;
157 double frame_last_delay
;
158 double video_clock
; ///<pts of last decoded frame / predicted pts of next decoded frame
162 double video_current_pts
; ///<current displayed pts (different from video_clock if frame fifos are used)
163 int64_t video_current_pts_time
; ///<time (av_gettime) at which we updated video_current_pts - used to have running video pts
164 VideoPicture pictq
[VIDEO_PICTURE_QUEUE_SIZE
];
165 int pictq_size
, pictq_rindex
, pictq_windex
;
166 SDL_mutex
*pictq_mutex
;
167 SDL_cond
*pictq_cond
;
169 SDL_mutex
*video_decoder_mutex
;
170 SDL_mutex
*audio_decoder_mutex
;
171 SDL_mutex
*subtitle_decoder_mutex
;
173 // QETimer *video_timer;
175 int width
, height
, xleft
, ytop
;
178 void show_help(void);
179 static int audio_write_get_buf_size(VideoState
*is
);
181 /* options specified by the user */
182 static AVInputFormat
*file_iformat
;
183 static AVImageFormat
*image_format
;
184 static const char *input_filename
;
185 static int fs_screen_width
;
186 static int fs_screen_height
;
187 static int screen_width
= 640;
188 static int screen_height
= 480;
189 static int audio_disable
;
190 static int video_disable
;
191 static int display_disable
;
192 static int show_status
;
193 static int av_sync_type
= AV_SYNC_AUDIO_MASTER
;
194 static int64_t start_time
= AV_NOPTS_VALUE
;
195 static int debug
= 0;
196 static int debug_mv
= 0;
198 static int thread_count
= 1;
199 static int workaround_bugs
= 1;
201 static int genpts
= 0;
202 static int lowres
= 0;
203 static int idct
= FF_IDCT_AUTO
;
204 static enum AVDiscard skip_frame
= AVDISCARD_DEFAULT
;
205 static enum AVDiscard skip_idct
= AVDISCARD_DEFAULT
;
206 static enum AVDiscard skip_loop_filter
= AVDISCARD_DEFAULT
;
207 static int error_resilience
= FF_ER_CAREFUL
;
208 static int error_concealment
= 3;
210 /* current context */
211 static int is_full_screen
;
212 static VideoState
*cur_stream
;
213 static int64_t audio_callback_time
;
215 #define FF_ALLOC_EVENT (SDL_USEREVENT)
216 #define FF_REFRESH_EVENT (SDL_USEREVENT + 1)
217 #define FF_QUIT_EVENT (SDL_USEREVENT + 2)
221 /* packet queue handling */
222 static void packet_queue_init(PacketQueue
*q
)
224 memset(q
, 0, sizeof(PacketQueue
));
225 q
->mutex
= SDL_CreateMutex();
226 q
->cond
= SDL_CreateCond();
229 static void packet_queue_flush(PacketQueue
*q
)
231 AVPacketList
*pkt
, *pkt1
;
233 SDL_LockMutex(q
->mutex
);
234 for(pkt
= q
->first_pkt
; pkt
!= NULL
; pkt
= pkt1
) {
236 av_free_packet(&pkt
->pkt
);
243 SDL_UnlockMutex(q
->mutex
);
246 static void packet_queue_end(PacketQueue
*q
)
248 packet_queue_flush(q
);
249 SDL_DestroyMutex(q
->mutex
);
250 SDL_DestroyCond(q
->cond
);
253 static int packet_queue_put(PacketQueue
*q
, AVPacket
*pkt
)
257 /* duplicate the packet */
258 if (av_dup_packet(pkt
) < 0)
261 pkt1
= av_malloc(sizeof(AVPacketList
));
268 SDL_LockMutex(q
->mutex
);
274 q
->last_pkt
->next
= pkt1
;
277 q
->size
+= pkt1
->pkt
.size
;
278 /* XXX: should duplicate packet data in DV case */
279 SDL_CondSignal(q
->cond
);
281 SDL_UnlockMutex(q
->mutex
);
285 static void packet_queue_abort(PacketQueue
*q
)
287 SDL_LockMutex(q
->mutex
);
289 q
->abort_request
= 1;
291 SDL_CondSignal(q
->cond
);
293 SDL_UnlockMutex(q
->mutex
);
296 /* return < 0 if aborted, 0 if no packet and > 0 if packet. */
297 static int packet_queue_get(PacketQueue
*q
, AVPacket
*pkt
, int block
)
302 SDL_LockMutex(q
->mutex
);
305 if (q
->abort_request
) {
312 q
->first_pkt
= pkt1
->next
;
316 q
->size
-= pkt1
->pkt
.size
;
325 SDL_CondWait(q
->cond
, q
->mutex
);
328 SDL_UnlockMutex(q
->mutex
);
332 static inline void fill_rectangle(SDL_Surface
*screen
,
333 int x
, int y
, int w
, int h
, int color
)
340 SDL_FillRect(screen
, &rect
, color
);
344 /* draw only the border of a rectangle */
345 void fill_border(VideoState
*s
, int x
, int y
, int w
, int h
, int color
)
349 /* fill the background */
353 w2
= s
->width
- (x
+ w
);
359 h2
= s
->height
- (y
+ h
);
362 fill_rectangle(screen
,
366 fill_rectangle(screen
,
367 s
->xleft
+ s
->width
- w2
, s
->ytop
,
370 fill_rectangle(screen
,
371 s
->xleft
+ w1
, s
->ytop
,
372 s
->width
- w1
- w2
, h1
,
374 fill_rectangle(screen
,
375 s
->xleft
+ w1
, s
->ytop
+ s
->height
- h2
,
376 s
->width
- w1
- w2
, h2
,
384 #define ONE_HALF (1 << (SCALEBITS - 1))
385 #define FIX(x) ((int) ((x) * (1<<SCALEBITS) + 0.5))
387 #define RGB_TO_Y_CCIR(r, g, b) \
388 ((FIX(0.29900*219.0/255.0) * (r) + FIX(0.58700*219.0/255.0) * (g) + \
389 FIX(0.11400*219.0/255.0) * (b) + (ONE_HALF + (16 << SCALEBITS))) >> SCALEBITS)
391 #define RGB_TO_U_CCIR(r1, g1, b1, shift)\
392 (((- FIX(0.16874*224.0/255.0) * r1 - FIX(0.33126*224.0/255.0) * g1 + \
393 FIX(0.50000*224.0/255.0) * b1 + (ONE_HALF << shift) - 1) >> (SCALEBITS + shift)) + 128)
395 #define RGB_TO_V_CCIR(r1, g1, b1, shift)\
396 (((FIX(0.50000*224.0/255.0) * r1 - FIX(0.41869*224.0/255.0) * g1 - \
397 FIX(0.08131*224.0/255.0) * b1 + (ONE_HALF << shift) - 1) >> (SCALEBITS + shift)) + 128)
399 #define ALPHA_BLEND(a, oldp, newp, s)\
400 ((((oldp << s) * (255 - (a))) + (newp * (a))) / (255 << s))
402 #define RGBA_IN(r, g, b, a, s)\
404 unsigned int v = ((const uint32_t *)(s))[0];\
405 a = (v >> 24) & 0xff;\
406 r = (v >> 16) & 0xff;\
407 g = (v >> 8) & 0xff;\
411 #define YUVA_IN(y, u, v, a, s, pal)\
413 unsigned int val = ((const uint32_t *)(pal))[*(const uint8_t*)s];\
414 a = (val >> 24) & 0xff;\
415 y = (val >> 16) & 0xff;\
416 u = (val >> 8) & 0xff;\
420 #define YUVA_OUT(d, y, u, v, a)\
422 ((uint32_t *)(d))[0] = (a << 24) | (y << 16) | (u << 8) | v;\
428 static void blend_subrect(AVPicture
*dst
, const AVSubtitleRect
*rect
)
430 int wrap
, wrap3
, width2
, skip2
;
431 int y
, u
, v
, a
, u1
, v1
, a1
, w
, h
;
432 uint8_t *lum
, *cb
, *cr
;
436 lum
= dst
->data
[0] + rect
->y
* dst
->linesize
[0];
437 cb
= dst
->data
[1] + (rect
->y
>> 1) * dst
->linesize
[1];
438 cr
= dst
->data
[2] + (rect
->y
>> 1) * dst
->linesize
[2];
440 width2
= (rect
->w
+ 1) >> 1;
441 skip2
= rect
->x
>> 1;
442 wrap
= dst
->linesize
[0];
443 wrap3
= rect
->linesize
;
445 pal
= rect
->rgba_palette
; /* Now in YCrCb! */
453 YUVA_IN(y
, u
, v
, a
, p
, pal
);
454 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
455 cb
[0] = ALPHA_BLEND(a
>> 2, cb
[0], u
, 0);
456 cr
[0] = ALPHA_BLEND(a
>> 2, cr
[0], v
, 0);
462 for(w
= rect
->w
- (rect
->x
& 1); w
>= 2; w
-= 2) {
463 YUVA_IN(y
, u
, v
, a
, p
, pal
);
467 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
469 YUVA_IN(y
, u
, v
, a
, p
+ BPP
, pal
);
473 lum
[1] = ALPHA_BLEND(a
, lum
[1], y
, 0);
474 cb
[0] = ALPHA_BLEND(a1
>> 2, cb
[0], u1
, 1);
475 cr
[0] = ALPHA_BLEND(a1
>> 2, cr
[0], v1
, 1);
482 YUVA_IN(y
, u
, v
, a
, p
, pal
);
483 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
484 cb
[0] = ALPHA_BLEND(a
>> 2, cb
[0], u
, 0);
485 cr
[0] = ALPHA_BLEND(a
>> 2, cr
[0], v
, 0);
487 p
+= wrap3
+ (wrap3
- rect
->w
* BPP
);
488 lum
+= wrap
+ (wrap
- rect
->w
- rect
->x
);
489 cb
+= dst
->linesize
[1] - width2
- skip2
;
490 cr
+= dst
->linesize
[2] - width2
- skip2
;
492 for(h
= rect
->h
- (rect
->y
& 1); h
>= 2; h
-= 2) {
498 YUVA_IN(y
, u
, v
, a
, p
, pal
);
502 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
505 YUVA_IN(y
, u
, v
, a
, p
, pal
);
509 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
510 cb
[0] = ALPHA_BLEND(a1
>> 2, cb
[0], u1
, 1);
511 cr
[0] = ALPHA_BLEND(a1
>> 2, cr
[0], v1
, 1);
517 for(w
= rect
->w
- (rect
->x
& 1); w
>= 2; w
-= 2) {
518 YUVA_IN(y
, u
, v
, a
, p
, pal
);
522 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
524 YUVA_IN(y
, u
, v
, a
, p
, pal
);
528 lum
[1] = ALPHA_BLEND(a
, lum
[1], y
, 0);
532 YUVA_IN(y
, u
, v
, a
, p
, pal
);
536 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
538 YUVA_IN(y
, u
, v
, a
, p
, pal
);
542 lum
[1] = ALPHA_BLEND(a
, lum
[1], y
, 0);
544 cb
[0] = ALPHA_BLEND(a1
>> 2, cb
[0], u1
, 2);
545 cr
[0] = ALPHA_BLEND(a1
>> 2, cr
[0], v1
, 2);
549 p
+= -wrap3
+ 2 * BPP
;
553 YUVA_IN(y
, u
, v
, a
, p
, pal
);
557 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
560 YUVA_IN(y
, u
, v
, a
, p
, pal
);
564 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
565 cb
[0] = ALPHA_BLEND(a1
>> 2, cb
[0], u1
, 1);
566 cr
[0] = ALPHA_BLEND(a1
>> 2, cr
[0], v1
, 1);
572 p
+= wrap3
+ (wrap3
- rect
->w
* BPP
);
573 lum
+= wrap
+ (wrap
- rect
->w
- rect
->x
);
574 cb
+= dst
->linesize
[1] - width2
- skip2
;
575 cr
+= dst
->linesize
[2] - width2
- skip2
;
577 /* handle odd height */
584 YUVA_IN(y
, u
, v
, a
, p
, pal
);
585 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
586 cb
[0] = ALPHA_BLEND(a
>> 2, cb
[0], u
, 0);
587 cr
[0] = ALPHA_BLEND(a
>> 2, cr
[0], v
, 0);
593 for(w
= rect
->w
- (rect
->x
& 1); w
>= 2; w
-= 2) {
594 YUVA_IN(y
, u
, v
, a
, p
, pal
);
598 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
600 YUVA_IN(y
, u
, v
, a
, p
+ BPP
, pal
);
604 lum
[1] = ALPHA_BLEND(a
, lum
[1], y
, 0);
605 cb
[0] = ALPHA_BLEND(a1
>> 2, cb
[0], u
, 1);
606 cr
[0] = ALPHA_BLEND(a1
>> 2, cr
[0], v
, 1);
613 YUVA_IN(y
, u
, v
, a
, p
, pal
);
614 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
615 cb
[0] = ALPHA_BLEND(a
>> 2, cb
[0], u
, 0);
616 cr
[0] = ALPHA_BLEND(a
>> 2, cr
[0], v
, 0);
621 static void free_subpicture(SubPicture
*sp
)
625 for (i
= 0; i
< sp
->sub
.num_rects
; i
++)
627 av_free(sp
->sub
.rects
[i
].bitmap
);
628 av_free(sp
->sub
.rects
[i
].rgba_palette
);
631 av_free(sp
->sub
.rects
);
633 memset(&sp
->sub
, 0, sizeof(AVSubtitle
));
636 static void video_image_display(VideoState
*is
)
642 int width
, height
, x
, y
;
646 vp
= &is
->pictq
[is
->pictq_rindex
];
648 /* XXX: use variable in the frame */
649 if (is
->video_st
->codec
->sample_aspect_ratio
.num
== 0)
652 aspect_ratio
= av_q2d(is
->video_st
->codec
->sample_aspect_ratio
)
653 * is
->video_st
->codec
->width
/ is
->video_st
->codec
->height
;;
654 if (aspect_ratio
<= 0.0)
655 aspect_ratio
= (float)is
->video_st
->codec
->width
/
656 (float)is
->video_st
->codec
->height
;
657 /* if an active format is indicated, then it overrides the
660 if (is
->video_st
->codec
->dtg_active_format
!= is
->dtg_active_format
) {
661 is
->dtg_active_format
= is
->video_st
->codec
->dtg_active_format
;
662 printf("dtg_active_format=%d\n", is
->dtg_active_format
);
666 switch(is
->video_st
->codec
->dtg_active_format
) {
667 case FF_DTG_AFD_SAME
:
672 aspect_ratio
= 4.0 / 3.0;
674 case FF_DTG_AFD_16_9
:
675 aspect_ratio
= 16.0 / 9.0;
677 case FF_DTG_AFD_14_9
:
678 aspect_ratio
= 14.0 / 9.0;
680 case FF_DTG_AFD_4_3_SP_14_9
:
681 aspect_ratio
= 14.0 / 9.0;
683 case FF_DTG_AFD_16_9_SP_14_9
:
684 aspect_ratio
= 14.0 / 9.0;
686 case FF_DTG_AFD_SP_4_3
:
687 aspect_ratio
= 4.0 / 3.0;
694 if (is
->subpq_size
> 0)
696 sp
= &is
->subpq
[is
->subpq_rindex
];
698 if (vp
->pts
>= sp
->pts
+ ((float) sp
->sub
.start_display_time
/ 1000))
700 SDL_LockYUVOverlay (vp
->bmp
);
702 pict
.data
[0] = vp
->bmp
->pixels
[0];
703 pict
.data
[1] = vp
->bmp
->pixels
[2];
704 pict
.data
[2] = vp
->bmp
->pixels
[1];
706 pict
.linesize
[0] = vp
->bmp
->pitches
[0];
707 pict
.linesize
[1] = vp
->bmp
->pitches
[2];
708 pict
.linesize
[2] = vp
->bmp
->pitches
[1];
710 for (i
= 0; i
< sp
->sub
.num_rects
; i
++)
711 blend_subrect(&pict
, &sp
->sub
.rects
[i
]);
713 SDL_UnlockYUVOverlay (vp
->bmp
);
719 /* XXX: we suppose the screen has a 1.0 pixel ratio */
721 width
= ((int)rint(height
* aspect_ratio
)) & -3;
722 if (width
> is
->width
) {
724 height
= ((int)rint(width
/ aspect_ratio
)) & -3;
726 x
= (is
->width
- width
) / 2;
727 y
= (is
->height
- height
) / 2;
728 if (!is
->no_background
) {
729 /* fill the background */
730 // fill_border(is, x, y, width, height, QERGB(0x00, 0x00, 0x00));
732 is
->no_background
= 0;
734 rect
.x
= is
->xleft
+ x
;
735 rect
.y
= is
->xleft
+ y
;
738 SDL_DisplayYUVOverlay(vp
->bmp
, &rect
);
741 fill_rectangle(screen
,
742 is
->xleft
, is
->ytop
, is
->width
, is
->height
,
743 QERGB(0x00, 0x00, 0x00));
748 static inline int compute_mod(int a
, int b
)
757 static void video_audio_display(VideoState
*s
)
759 int i
, i_start
, x
, y1
, y
, ys
, delay
, n
, nb_display_channels
;
760 int ch
, channels
, h
, h2
, bgcolor
, fgcolor
;
763 /* compute display index : center on currently output samples */
764 channels
= s
->audio_st
->codec
->channels
;
765 nb_display_channels
= channels
;
768 delay
= audio_write_get_buf_size(s
);
771 /* to be more precise, we take into account the time spent since
772 the last buffer computation */
773 if (audio_callback_time
) {
774 time_diff
= av_gettime() - audio_callback_time
;
775 delay
+= (time_diff
* s
->audio_st
->codec
->sample_rate
) / 1000000;
778 delay
-= s
->width
/ 2;
779 if (delay
< s
->width
)
781 i_start
= compute_mod(s
->sample_array_index
- delay
* channels
, SAMPLE_ARRAY_SIZE
);
782 s
->last_i_start
= i_start
;
784 i_start
= s
->last_i_start
;
787 bgcolor
= SDL_MapRGB(screen
->format
, 0x00, 0x00, 0x00);
788 fill_rectangle(screen
,
789 s
->xleft
, s
->ytop
, s
->width
, s
->height
,
792 fgcolor
= SDL_MapRGB(screen
->format
, 0xff, 0xff, 0xff);
794 /* total height for one channel */
795 h
= s
->height
/ nb_display_channels
;
796 /* graph height / 2 */
798 for(ch
= 0;ch
< nb_display_channels
; ch
++) {
800 y1
= s
->ytop
+ ch
* h
+ (h
/ 2); /* position of center line */
801 for(x
= 0; x
< s
->width
; x
++) {
802 y
= (s
->sample_array
[i
] * h2
) >> 15;
809 fill_rectangle(screen
,
810 s
->xleft
+ x
, ys
, 1, y
,
813 if (i
>= SAMPLE_ARRAY_SIZE
)
814 i
-= SAMPLE_ARRAY_SIZE
;
818 fgcolor
= SDL_MapRGB(screen
->format
, 0x00, 0x00, 0xff);
820 for(ch
= 1;ch
< nb_display_channels
; ch
++) {
821 y
= s
->ytop
+ ch
* h
;
822 fill_rectangle(screen
,
823 s
->xleft
, y
, s
->width
, 1,
826 SDL_UpdateRect(screen
, s
->xleft
, s
->ytop
, s
->width
, s
->height
);
829 /* display the current picture, if any */
830 static void video_display(VideoState
*is
)
832 if (is
->audio_st
&& is
->show_audio
)
833 video_audio_display(is
);
834 else if (is
->video_st
)
835 video_image_display(is
);
838 static Uint32
sdl_refresh_timer_cb(Uint32 interval
, void *opaque
)
841 event
.type
= FF_REFRESH_EVENT
;
842 event
.user
.data1
= opaque
;
843 SDL_PushEvent(&event
);
844 return 0; /* 0 means stop timer */
847 /* schedule a video refresh in 'delay' ms */
848 static void schedule_refresh(VideoState
*is
, int delay
)
850 SDL_AddTimer(delay
, sdl_refresh_timer_cb
, is
);
853 /* get the current audio clock value */
854 static double get_audio_clock(VideoState
*is
)
857 int hw_buf_size
, bytes_per_sec
;
858 pts
= is
->audio_clock
;
859 hw_buf_size
= audio_write_get_buf_size(is
);
862 bytes_per_sec
= is
->audio_st
->codec
->sample_rate
*
863 2 * is
->audio_st
->codec
->channels
;
866 pts
-= (double)hw_buf_size
/ bytes_per_sec
;
870 /* get the current video clock value */
871 static double get_video_clock(VideoState
*is
)
877 delta
= (av_gettime() - is
->video_current_pts_time
) / 1000000.0;
879 return is
->video_current_pts
+ delta
;
882 /* get the current external clock value */
883 static double get_external_clock(VideoState
*is
)
887 return is
->external_clock
+ ((ti
- is
->external_clock_time
) * 1e-6);
890 /* get the current master clock value */
891 static double get_master_clock(VideoState
*is
)
895 if (is
->av_sync_type
== AV_SYNC_VIDEO_MASTER
) {
897 val
= get_video_clock(is
);
899 val
= get_audio_clock(is
);
900 } else if (is
->av_sync_type
== AV_SYNC_AUDIO_MASTER
) {
902 val
= get_audio_clock(is
);
904 val
= get_video_clock(is
);
906 val
= get_external_clock(is
);
911 /* seek in the stream */
912 static void stream_seek(VideoState
*is
, int64_t pos
, int rel
)
916 is
->seek_flags
= rel
< 0 ? AVSEEK_FLAG_BACKWARD
: 0;
921 /* pause or resume the video */
922 static void stream_pause(VideoState
*is
)
924 is
->paused
= !is
->paused
;
926 is
->video_current_pts
= get_video_clock(is
);
930 /* called to display each frame */
931 static void video_refresh_timer(void *opaque
)
933 VideoState
*is
= opaque
;
935 double actual_delay
, delay
, sync_threshold
, ref_clock
, diff
;
937 SubPicture
*sp
, *sp2
;
940 if (is
->pictq_size
== 0) {
941 /* if no picture, need to wait */
942 schedule_refresh(is
, 1);
944 /* dequeue the picture */
945 vp
= &is
->pictq
[is
->pictq_rindex
];
947 /* update current video pts */
948 is
->video_current_pts
= vp
->pts
;
949 is
->video_current_pts_time
= av_gettime();
951 /* compute nominal delay */
952 delay
= vp
->pts
- is
->frame_last_pts
;
953 if (delay
<= 0 || delay
>= 1.0) {
954 /* if incorrect delay, use previous one */
955 delay
= is
->frame_last_delay
;
957 is
->frame_last_delay
= delay
;
958 is
->frame_last_pts
= vp
->pts
;
960 /* update delay to follow master synchronisation source */
961 if (((is
->av_sync_type
== AV_SYNC_AUDIO_MASTER
&& is
->audio_st
) ||
962 is
->av_sync_type
== AV_SYNC_EXTERNAL_CLOCK
)) {
963 /* if video is slave, we try to correct big delays by
964 duplicating or deleting a frame */
965 ref_clock
= get_master_clock(is
);
966 diff
= vp
->pts
- ref_clock
;
968 /* skip or repeat frame. We take into account the
969 delay to compute the threshold. I still don't know
970 if it is the best guess */
971 sync_threshold
= AV_SYNC_THRESHOLD
;
972 if (delay
> sync_threshold
)
973 sync_threshold
= delay
;
974 if (fabs(diff
) < AV_NOSYNC_THRESHOLD
) {
975 if (diff
<= -sync_threshold
)
977 else if (diff
>= sync_threshold
)
982 is
->frame_timer
+= delay
;
983 /* compute the REAL delay (we need to do that to avoid
985 actual_delay
= is
->frame_timer
- (av_gettime() / 1000000.0);
986 if (actual_delay
< 0.010) {
987 /* XXX: should skip picture */
988 actual_delay
= 0.010;
990 /* launch timer for next picture */
991 schedule_refresh(is
, (int)(actual_delay
* 1000 + 0.5));
993 #if defined(DEBUG_SYNC)
994 printf("video: delay=%0.3f actual_delay=%0.3f pts=%0.3f A-V=%f\n",
995 delay
, actual_delay
, vp
->pts
, -diff
);
998 if(is
->subtitle_st
) {
999 if (is
->subtitle_stream_changed
) {
1000 SDL_LockMutex(is
->subpq_mutex
);
1002 while (is
->subpq_size
) {
1003 free_subpicture(&is
->subpq
[is
->subpq_rindex
]);
1005 /* update queue size and signal for next picture */
1006 if (++is
->subpq_rindex
== SUBPICTURE_QUEUE_SIZE
)
1007 is
->subpq_rindex
= 0;
1011 is
->subtitle_stream_changed
= 0;
1013 SDL_CondSignal(is
->subpq_cond
);
1014 SDL_UnlockMutex(is
->subpq_mutex
);
1016 if (is
->subpq_size
> 0) {
1017 sp
= &is
->subpq
[is
->subpq_rindex
];
1019 if (is
->subpq_size
> 1)
1020 sp2
= &is
->subpq
[(is
->subpq_rindex
+ 1) % SUBPICTURE_QUEUE_SIZE
];
1024 if ((is
->video_current_pts
> (sp
->pts
+ ((float) sp
->sub
.end_display_time
/ 1000)))
1025 || (sp2
&& is
->video_current_pts
> (sp2
->pts
+ ((float) sp2
->sub
.start_display_time
/ 1000))))
1027 free_subpicture(sp
);
1029 /* update queue size and signal for next picture */
1030 if (++is
->subpq_rindex
== SUBPICTURE_QUEUE_SIZE
)
1031 is
->subpq_rindex
= 0;
1033 SDL_LockMutex(is
->subpq_mutex
);
1035 SDL_CondSignal(is
->subpq_cond
);
1036 SDL_UnlockMutex(is
->subpq_mutex
);
1042 /* display picture */
1045 /* update queue size and signal for next picture */
1046 if (++is
->pictq_rindex
== VIDEO_PICTURE_QUEUE_SIZE
)
1047 is
->pictq_rindex
= 0;
1049 SDL_LockMutex(is
->pictq_mutex
);
1051 SDL_CondSignal(is
->pictq_cond
);
1052 SDL_UnlockMutex(is
->pictq_mutex
);
1054 } else if (is
->audio_st
) {
1055 /* draw the next audio frame */
1057 schedule_refresh(is
, 40);
1059 /* if only audio stream, then display the audio bars (better
1060 than nothing, just to test the implementation */
1062 /* display picture */
1065 schedule_refresh(is
, 100);
1068 static int64_t last_time
;
1070 int aqsize
, vqsize
, sqsize
;
1073 cur_time
= av_gettime();
1074 if (!last_time
|| (cur_time
- last_time
) >= 500 * 1000) {
1079 aqsize
= is
->audioq
.size
;
1081 vqsize
= is
->videoq
.size
;
1082 if (is
->subtitle_st
)
1083 sqsize
= is
->subtitleq
.size
;
1085 if (is
->audio_st
&& is
->video_st
)
1086 av_diff
= get_audio_clock(is
) - get_video_clock(is
);
1087 printf("%7.2f A-V:%7.3f aq=%5dKB vq=%5dKB sq=%5dB \r",
1088 get_master_clock(is
), av_diff
, aqsize
/ 1024, vqsize
/ 1024, sqsize
);
1090 last_time
= cur_time
;
1095 /* allocate a picture (needs to do that in main thread to avoid
1096 potential locking problems */
1097 static void alloc_picture(void *opaque
)
1099 VideoState
*is
= opaque
;
1102 vp
= &is
->pictq
[is
->pictq_windex
];
1105 SDL_FreeYUVOverlay(vp
->bmp
);
1108 /* XXX: use generic function */
1109 /* XXX: disable overlay if no hardware acceleration or if RGB format */
1110 switch(is
->video_st
->codec
->pix_fmt
) {
1111 case PIX_FMT_YUV420P
:
1112 case PIX_FMT_YUV422P
:
1113 case PIX_FMT_YUV444P
:
1114 case PIX_FMT_YUV422
:
1115 case PIX_FMT_YUV410P
:
1116 case PIX_FMT_YUV411P
:
1124 vp
->bmp
= SDL_CreateYUVOverlay(is
->video_st
->codec
->width
,
1125 is
->video_st
->codec
->height
,
1128 vp
->width
= is
->video_st
->codec
->width
;
1129 vp
->height
= is
->video_st
->codec
->height
;
1131 SDL_LockMutex(is
->pictq_mutex
);
1133 SDL_CondSignal(is
->pictq_cond
);
1134 SDL_UnlockMutex(is
->pictq_mutex
);
1139 * @param pts the dts of the pkt / pts of the frame and guessed if not known
1141 static int queue_picture(VideoState
*is
, AVFrame
*src_frame
, double pts
)
1147 /* wait until we have space to put a new picture */
1148 SDL_LockMutex(is
->pictq_mutex
);
1149 while (is
->pictq_size
>= VIDEO_PICTURE_QUEUE_SIZE
&&
1150 !is
->videoq
.abort_request
) {
1151 SDL_CondWait(is
->pictq_cond
, is
->pictq_mutex
);
1153 SDL_UnlockMutex(is
->pictq_mutex
);
1155 if (is
->videoq
.abort_request
)
1158 vp
= &is
->pictq
[is
->pictq_windex
];
1160 /* alloc or resize hardware picture buffer */
1162 vp
->width
!= is
->video_st
->codec
->width
||
1163 vp
->height
!= is
->video_st
->codec
->height
) {
1168 /* the allocation must be done in the main thread to avoid
1170 event
.type
= FF_ALLOC_EVENT
;
1171 event
.user
.data1
= is
;
1172 SDL_PushEvent(&event
);
1174 /* wait until the picture is allocated */
1175 SDL_LockMutex(is
->pictq_mutex
);
1176 while (!vp
->allocated
&& !is
->videoq
.abort_request
) {
1177 SDL_CondWait(is
->pictq_cond
, is
->pictq_mutex
);
1179 SDL_UnlockMutex(is
->pictq_mutex
);
1181 if (is
->videoq
.abort_request
)
1185 /* if the frame is not skipped, then display it */
1187 /* get a pointer on the bitmap */
1188 SDL_LockYUVOverlay (vp
->bmp
);
1190 dst_pix_fmt
= PIX_FMT_YUV420P
;
1191 pict
.data
[0] = vp
->bmp
->pixels
[0];
1192 pict
.data
[1] = vp
->bmp
->pixels
[2];
1193 pict
.data
[2] = vp
->bmp
->pixels
[1];
1195 pict
.linesize
[0] = vp
->bmp
->pitches
[0];
1196 pict
.linesize
[1] = vp
->bmp
->pitches
[2];
1197 pict
.linesize
[2] = vp
->bmp
->pitches
[1];
1198 img_convert(&pict
, dst_pix_fmt
,
1199 (AVPicture
*)src_frame
, is
->video_st
->codec
->pix_fmt
,
1200 is
->video_st
->codec
->width
, is
->video_st
->codec
->height
);
1201 /* update the bitmap content */
1202 SDL_UnlockYUVOverlay(vp
->bmp
);
1206 /* now we can update the picture count */
1207 if (++is
->pictq_windex
== VIDEO_PICTURE_QUEUE_SIZE
)
1208 is
->pictq_windex
= 0;
1209 SDL_LockMutex(is
->pictq_mutex
);
1211 SDL_UnlockMutex(is
->pictq_mutex
);
1217 * compute the exact PTS for the picture if it is omitted in the stream
1218 * @param pts1 the dts of the pkt / pts of the frame
1220 static int output_picture2(VideoState
*is
, AVFrame
*src_frame
, double pts1
)
1222 double frame_delay
, pts
;
1227 /* update video clock with pts, if present */
1228 is
->video_clock
= pts
;
1230 pts
= is
->video_clock
;
1232 /* update video clock for next frame */
1233 frame_delay
= av_q2d(is
->video_st
->codec
->time_base
);
1234 /* for MPEG2, the frame can be repeated, so we update the
1235 clock accordingly */
1236 frame_delay
+= src_frame
->repeat_pict
* (frame_delay
* 0.5);
1237 is
->video_clock
+= frame_delay
;
1239 #if defined(DEBUG_SYNC) && 0
1242 if (src_frame
->pict_type
== FF_B_TYPE
)
1244 else if (src_frame
->pict_type
== FF_I_TYPE
)
1248 printf("frame_type=%c clock=%0.3f pts=%0.3f\n",
1252 return queue_picture(is
, src_frame
, pts
);
1255 static int video_thread(void *arg
)
1257 VideoState
*is
= arg
;
1258 AVPacket pkt1
, *pkt
= &pkt1
;
1259 int len1
, got_picture
;
1260 AVFrame
*frame
= avcodec_alloc_frame();
1264 while (is
->paused
&& !is
->videoq
.abort_request
) {
1267 if (packet_queue_get(&is
->videoq
, pkt
, 1) < 0)
1269 /* NOTE: ipts is the PTS of the _first_ picture beginning in
1270 this packet, if any */
1272 if (pkt
->dts
!= AV_NOPTS_VALUE
)
1273 pts
= av_q2d(is
->video_st
->time_base
)*pkt
->dts
;
1275 SDL_LockMutex(is
->video_decoder_mutex
);
1276 len1
= avcodec_decode_video(is
->video_st
->codec
,
1277 frame
, &got_picture
,
1278 pkt
->data
, pkt
->size
);
1279 SDL_UnlockMutex(is
->video_decoder_mutex
);
1283 if (output_picture2(is
, frame
, pts
) < 0)
1286 av_free_packet(pkt
);
1289 stream_pause(cur_stream
);
1296 static int subtitle_thread(void *arg
)
1298 VideoState
*is
= arg
;
1300 AVPacket pkt1
, *pkt
= &pkt1
;
1301 int len1
, got_subtitle
;
1304 int r
, g
, b
, y
, u
, v
, a
;
1307 while (is
->paused
&& !is
->subtitleq
.abort_request
) {
1310 if (packet_queue_get(&is
->subtitleq
, pkt
, 1) < 0)
1313 SDL_LockMutex(is
->subpq_mutex
);
1314 while (is
->subpq_size
>= SUBPICTURE_QUEUE_SIZE
&&
1315 !is
->subtitleq
.abort_request
) {
1316 SDL_CondWait(is
->subpq_cond
, is
->subpq_mutex
);
1318 SDL_UnlockMutex(is
->subpq_mutex
);
1320 if (is
->subtitleq
.abort_request
)
1323 sp
= &is
->subpq
[is
->subpq_windex
];
1325 /* NOTE: ipts is the PTS of the _first_ picture beginning in
1326 this packet, if any */
1328 if (pkt
->pts
!= AV_NOPTS_VALUE
)
1329 pts
= av_q2d(is
->subtitle_st
->time_base
)*pkt
->pts
;
1331 SDL_LockMutex(is
->subtitle_decoder_mutex
);
1332 len1
= avcodec_decode_subtitle(is
->subtitle_st
->codec
,
1333 &sp
->sub
, &got_subtitle
,
1334 pkt
->data
, pkt
->size
);
1335 SDL_UnlockMutex(is
->subtitle_decoder_mutex
);
1338 if (got_subtitle
&& sp
->sub
.format
== 0) {
1341 for (i
= 0; i
< sp
->sub
.num_rects
; i
++)
1343 for (j
= 0; j
< sp
->sub
.rects
[i
].nb_colors
; j
++)
1345 RGBA_IN(r
, g
, b
, a
, sp
->sub
.rects
[i
].rgba_palette
+ j
);
1346 y
= RGB_TO_Y_CCIR(r
, g
, b
);
1347 u
= RGB_TO_U_CCIR(r
, g
, b
, 0);
1348 v
= RGB_TO_V_CCIR(r
, g
, b
, 0);
1349 YUVA_OUT(sp
->sub
.rects
[i
].rgba_palette
+ j
, y
, u
, v
, a
);
1353 /* now we can update the picture count */
1354 if (++is
->subpq_windex
== SUBPICTURE_QUEUE_SIZE
)
1355 is
->subpq_windex
= 0;
1356 SDL_LockMutex(is
->subpq_mutex
);
1358 SDL_UnlockMutex(is
->subpq_mutex
);
1360 av_free_packet(pkt
);
1363 // stream_pause(cur_stream);
1369 /* copy samples for viewing in editor window */
1370 static void update_sample_display(VideoState
*is
, short *samples
, int samples_size
)
1372 int size
, len
, channels
;
1374 channels
= is
->audio_st
->codec
->channels
;
1376 size
= samples_size
/ sizeof(short);
1378 len
= SAMPLE_ARRAY_SIZE
- is
->sample_array_index
;
1381 memcpy(is
->sample_array
+ is
->sample_array_index
, samples
, len
* sizeof(short));
1383 is
->sample_array_index
+= len
;
1384 if (is
->sample_array_index
>= SAMPLE_ARRAY_SIZE
)
1385 is
->sample_array_index
= 0;
1390 /* return the new audio buffer size (samples can be added or deleted
1391 to get better sync if video or external master clock) */
1392 static int synchronize_audio(VideoState
*is
, short *samples
,
1393 int samples_size1
, double pts
)
1395 int n
, samples_size
;
1398 n
= 2 * is
->audio_st
->codec
->channels
;
1399 samples_size
= samples_size1
;
1401 /* if not master, then we try to remove or add samples to correct the clock */
1402 if (((is
->av_sync_type
== AV_SYNC_VIDEO_MASTER
&& is
->video_st
) ||
1403 is
->av_sync_type
== AV_SYNC_EXTERNAL_CLOCK
)) {
1404 double diff
, avg_diff
;
1405 int wanted_size
, min_size
, max_size
, nb_samples
;
1407 ref_clock
= get_master_clock(is
);
1408 diff
= get_audio_clock(is
) - ref_clock
;
1410 if (diff
< AV_NOSYNC_THRESHOLD
) {
1411 is
->audio_diff_cum
= diff
+ is
->audio_diff_avg_coef
* is
->audio_diff_cum
;
1412 if (is
->audio_diff_avg_count
< AUDIO_DIFF_AVG_NB
) {
1413 /* not enough measures to have a correct estimate */
1414 is
->audio_diff_avg_count
++;
1416 /* estimate the A-V difference */
1417 avg_diff
= is
->audio_diff_cum
* (1.0 - is
->audio_diff_avg_coef
);
1419 if (fabs(avg_diff
) >= is
->audio_diff_threshold
) {
1420 wanted_size
= samples_size
+ ((int)(diff
* is
->audio_st
->codec
->sample_rate
) * n
);
1421 nb_samples
= samples_size
/ n
;
1423 min_size
= ((nb_samples
* (100 - SAMPLE_CORRECTION_PERCENT_MAX
)) / 100) * n
;
1424 max_size
= ((nb_samples
* (100 + SAMPLE_CORRECTION_PERCENT_MAX
)) / 100) * n
;
1425 if (wanted_size
< min_size
)
1426 wanted_size
= min_size
;
1427 else if (wanted_size
> max_size
)
1428 wanted_size
= max_size
;
1430 /* add or remove samples to correction the synchro */
1431 if (wanted_size
< samples_size
) {
1432 /* remove samples */
1433 samples_size
= wanted_size
;
1434 } else if (wanted_size
> samples_size
) {
1435 uint8_t *samples_end
, *q
;
1439 nb
= (samples_size
- wanted_size
);
1440 samples_end
= (uint8_t *)samples
+ samples_size
- n
;
1441 q
= samples_end
+ n
;
1443 memcpy(q
, samples_end
, n
);
1447 samples_size
= wanted_size
;
1451 printf("diff=%f adiff=%f sample_diff=%d apts=%0.3f vpts=%0.3f %f\n",
1452 diff
, avg_diff
, samples_size
- samples_size1
,
1453 is
->audio_clock
, is
->video_clock
, is
->audio_diff_threshold
);
1457 /* too big difference : may be initial PTS errors, so
1459 is
->audio_diff_avg_count
= 0;
1460 is
->audio_diff_cum
= 0;
1464 return samples_size
;
1467 /* decode one audio frame and returns its uncompressed size */
1468 static int audio_decode_frame(VideoState
*is
, uint8_t *audio_buf
, double *pts_ptr
)
1470 AVPacket
*pkt
= &is
->audio_pkt
;
1471 int n
, len1
, data_size
;
1475 /* NOTE: the audio packet can contain several frames */
1476 while (is
->audio_pkt_size
> 0) {
1477 SDL_LockMutex(is
->audio_decoder_mutex
);
1478 len1
= avcodec_decode_audio(is
->audio_st
->codec
,
1479 (int16_t *)audio_buf
, &data_size
,
1480 is
->audio_pkt_data
, is
->audio_pkt_size
);
1481 SDL_UnlockMutex(is
->audio_decoder_mutex
);
1483 /* if error, we skip the frame */
1484 is
->audio_pkt_size
= 0;
1488 is
->audio_pkt_data
+= len1
;
1489 is
->audio_pkt_size
-= len1
;
1492 /* if no pts, then compute it */
1493 pts
= is
->audio_clock
;
1495 n
= 2 * is
->audio_st
->codec
->channels
;
1496 is
->audio_clock
+= (double)data_size
/
1497 (double)(n
* is
->audio_st
->codec
->sample_rate
);
1498 #if defined(DEBUG_SYNC)
1500 static double last_clock
;
1501 printf("audio: delay=%0.3f clock=%0.3f pts=%0.3f\n",
1502 is
->audio_clock
- last_clock
,
1503 is
->audio_clock
, pts
);
1504 last_clock
= is
->audio_clock
;
1510 /* free the current packet */
1512 av_free_packet(pkt
);
1514 if (is
->paused
|| is
->audioq
.abort_request
) {
1518 /* read next packet */
1519 if (packet_queue_get(&is
->audioq
, pkt
, 1) < 0)
1521 is
->audio_pkt_data
= pkt
->data
;
1522 is
->audio_pkt_size
= pkt
->size
;
1524 /* if update the audio clock with the pts */
1525 if (pkt
->pts
!= AV_NOPTS_VALUE
) {
1526 is
->audio_clock
= av_q2d(is
->audio_st
->time_base
)*pkt
->pts
;
1531 /* get the current audio output buffer size, in samples. With SDL, we
1532 cannot have a precise information */
1533 static int audio_write_get_buf_size(VideoState
*is
)
1535 return is
->audio_hw_buf_size
- is
->audio_buf_index
;
1539 /* prepare a new audio buffer */
1540 void sdl_audio_callback(void *opaque
, Uint8
*stream
, int len
)
1542 VideoState
*is
= opaque
;
1543 int audio_size
, len1
;
1546 audio_callback_time
= av_gettime();
1549 if (is
->audio_buf_index
>= is
->audio_buf_size
) {
1550 audio_size
= audio_decode_frame(is
, is
->audio_buf
, &pts
);
1551 if (audio_size
< 0) {
1552 /* if error, just output silence */
1553 is
->audio_buf_size
= 1024;
1554 memset(is
->audio_buf
, 0, is
->audio_buf_size
);
1557 update_sample_display(is
, (int16_t *)is
->audio_buf
, audio_size
);
1558 audio_size
= synchronize_audio(is
, (int16_t *)is
->audio_buf
, audio_size
,
1560 is
->audio_buf_size
= audio_size
;
1562 is
->audio_buf_index
= 0;
1564 len1
= is
->audio_buf_size
- is
->audio_buf_index
;
1567 memcpy(stream
, (uint8_t *)is
->audio_buf
+ is
->audio_buf_index
, len1
);
1570 is
->audio_buf_index
+= len1
;
1575 /* open a given stream. Return 0 if OK */
1576 static int stream_component_open(VideoState
*is
, int stream_index
)
1578 AVFormatContext
*ic
= is
->ic
;
1579 AVCodecContext
*enc
;
1581 SDL_AudioSpec wanted_spec
, spec
;
1583 if (stream_index
< 0 || stream_index
>= ic
->nb_streams
)
1585 enc
= ic
->streams
[stream_index
]->codec
;
1587 /* prepare audio output */
1588 if (enc
->codec_type
== CODEC_TYPE_AUDIO
) {
1589 wanted_spec
.freq
= enc
->sample_rate
;
1590 wanted_spec
.format
= AUDIO_S16SYS
;
1591 /* hack for AC3. XXX: suppress that */
1592 if (enc
->channels
> 2)
1594 wanted_spec
.channels
= enc
->channels
;
1595 wanted_spec
.silence
= 0;
1596 wanted_spec
.samples
= SDL_AUDIO_BUFFER_SIZE
;
1597 wanted_spec
.callback
= sdl_audio_callback
;
1598 wanted_spec
.userdata
= is
;
1599 if (SDL_OpenAudio(&wanted_spec
, &spec
) < 0) {
1600 fprintf(stderr
, "SDL_OpenAudio: %s\n", SDL_GetError());
1603 is
->audio_hw_buf_size
= spec
.size
;
1606 codec
= avcodec_find_decoder(enc
->codec_id
);
1607 enc
->debug_mv
= debug_mv
;
1610 av_log_set_level(AV_LOG_DEBUG
);
1611 enc
->workaround_bugs
= workaround_bugs
;
1612 enc
->lowres
= lowres
;
1613 if(lowres
) enc
->flags
|= CODEC_FLAG_EMU_EDGE
;
1614 enc
->idct_algo
= idct
;
1615 if(fast
) enc
->flags2
|= CODEC_FLAG2_FAST
;
1616 enc
->skip_frame
= skip_frame
;
1617 enc
->skip_idct
= skip_idct
;
1618 enc
->skip_loop_filter
= skip_loop_filter
;
1619 enc
->error_resilience
= error_resilience
;
1620 enc
->error_concealment
= error_concealment
;
1622 avcodec_open(enc
, codec
) < 0)
1624 #if defined(HAVE_THREADS)
1626 avcodec_thread_init(enc
, thread_count
);
1628 enc
->thread_count
= thread_count
;
1629 switch(enc
->codec_type
) {
1630 case CODEC_TYPE_AUDIO
:
1631 is
->audio_stream
= stream_index
;
1632 is
->audio_st
= ic
->streams
[stream_index
];
1633 is
->audio_buf_size
= 0;
1634 is
->audio_buf_index
= 0;
1636 /* init averaging filter */
1637 is
->audio_diff_avg_coef
= exp(log(0.01) / AUDIO_DIFF_AVG_NB
);
1638 is
->audio_diff_avg_count
= 0;
1639 /* since we do not have a precise anough audio fifo fullness,
1640 we correct audio sync only if larger than this threshold */
1641 is
->audio_diff_threshold
= 2.0 * SDL_AUDIO_BUFFER_SIZE
/ enc
->sample_rate
;
1643 memset(&is
->audio_pkt
, 0, sizeof(is
->audio_pkt
));
1644 packet_queue_init(&is
->audioq
);
1647 case CODEC_TYPE_VIDEO
:
1648 is
->video_stream
= stream_index
;
1649 is
->video_st
= ic
->streams
[stream_index
];
1651 is
->frame_last_delay
= 40e-3;
1652 is
->frame_timer
= (double)av_gettime() / 1000000.0;
1653 is
->video_current_pts_time
= av_gettime();
1655 packet_queue_init(&is
->videoq
);
1656 is
->video_tid
= SDL_CreateThread(video_thread
, is
);
1658 case CODEC_TYPE_SUBTITLE
:
1659 is
->subtitle_stream
= stream_index
;
1660 is
->subtitle_st
= ic
->streams
[stream_index
];
1661 packet_queue_init(&is
->subtitleq
);
1663 is
->subtitle_tid
= SDL_CreateThread(subtitle_thread
, is
);
1671 static void stream_component_close(VideoState
*is
, int stream_index
)
1673 AVFormatContext
*ic
= is
->ic
;
1674 AVCodecContext
*enc
;
1676 if (stream_index
< 0 || stream_index
>= ic
->nb_streams
)
1678 enc
= ic
->streams
[stream_index
]->codec
;
1680 switch(enc
->codec_type
) {
1681 case CODEC_TYPE_AUDIO
:
1682 packet_queue_abort(&is
->audioq
);
1686 packet_queue_end(&is
->audioq
);
1688 case CODEC_TYPE_VIDEO
:
1689 packet_queue_abort(&is
->videoq
);
1691 /* note: we also signal this mutex to make sure we deblock the
1692 video thread in all cases */
1693 SDL_LockMutex(is
->pictq_mutex
);
1694 SDL_CondSignal(is
->pictq_cond
);
1695 SDL_UnlockMutex(is
->pictq_mutex
);
1697 SDL_WaitThread(is
->video_tid
, NULL
);
1699 packet_queue_end(&is
->videoq
);
1701 case CODEC_TYPE_SUBTITLE
:
1702 packet_queue_abort(&is
->subtitleq
);
1704 /* note: we also signal this mutex to make sure we deblock the
1705 video thread in all cases */
1706 SDL_LockMutex(is
->subpq_mutex
);
1707 is
->subtitle_stream_changed
= 1;
1709 SDL_CondSignal(is
->subpq_cond
);
1710 SDL_UnlockMutex(is
->subpq_mutex
);
1712 SDL_WaitThread(is
->subtitle_tid
, NULL
);
1714 packet_queue_end(&is
->subtitleq
);
1721 switch(enc
->codec_type
) {
1722 case CODEC_TYPE_AUDIO
:
1723 is
->audio_st
= NULL
;
1724 is
->audio_stream
= -1;
1726 case CODEC_TYPE_VIDEO
:
1727 is
->video_st
= NULL
;
1728 is
->video_stream
= -1;
1730 case CODEC_TYPE_SUBTITLE
:
1731 is
->subtitle_st
= NULL
;
1732 is
->subtitle_stream
= -1;
1739 static void dump_stream_info(const AVFormatContext
*s
)
1742 fprintf(stderr
, "Track: %d\n", s
->track
);
1743 if (s
->title
[0] != '\0')
1744 fprintf(stderr
, "Title: %s\n", s
->title
);
1745 if (s
->author
[0] != '\0')
1746 fprintf(stderr
, "Author: %s\n", s
->author
);
1747 if (s
->album
[0] != '\0')
1748 fprintf(stderr
, "Album: %s\n", s
->album
);
1750 fprintf(stderr
, "Year: %d\n", s
->year
);
1751 if (s
->genre
[0] != '\0')
1752 fprintf(stderr
, "Genre: %s\n", s
->genre
);
1755 /* since we have only one decoding thread, we can use a global
1756 variable instead of a thread local variable */
1757 static VideoState
*global_video_state
;
1759 static int decode_interrupt_cb(void)
1761 return (global_video_state
&& global_video_state
->abort_request
);
1764 /* this thread gets the stream from the disk or the network */
1765 static int decode_thread(void *arg
)
1767 VideoState
*is
= arg
;
1768 AVFormatContext
*ic
;
1769 int err
, i
, ret
, video_index
, audio_index
, use_play
;
1770 AVPacket pkt1
, *pkt
= &pkt1
;
1771 AVFormatParameters params
, *ap
= ¶ms
;
1775 is
->video_stream
= -1;
1776 is
->audio_stream
= -1;
1777 is
->subtitle_stream
= -1;
1779 global_video_state
= is
;
1780 url_set_interrupt_cb(decode_interrupt_cb
);
1782 memset(ap
, 0, sizeof(*ap
));
1783 ap
->image_format
= image_format
;
1784 ap
->initial_pause
= 1; /* we force a pause when starting an RTSP
1787 err
= av_open_input_file(&ic
, is
->filename
, is
->iformat
, 0, ap
);
1789 print_error(is
->filename
, err
);
1794 #ifdef CONFIG_NETWORK
1795 use_play
= (ic
->iformat
== &rtsp_demux
);
1801 ic
->flags
|= AVFMT_FLAG_GENPTS
;
1804 err
= av_find_stream_info(ic
);
1806 fprintf(stderr
, "%s: could not find codec parameters\n", is
->filename
);
1810 ic
->pb
.eof_reached
= 0; //FIXME hack, ffplay maybe shouldnt use url_feof() to test for the end
1813 /* if seeking requested, we execute it */
1814 if (start_time
!= AV_NOPTS_VALUE
) {
1817 timestamp
= start_time
;
1818 /* add the stream start time */
1819 if (ic
->start_time
!= AV_NOPTS_VALUE
)
1820 timestamp
+= ic
->start_time
;
1821 ret
= av_seek_frame(ic
, -1, timestamp
, AVSEEK_FLAG_BACKWARD
);
1823 fprintf(stderr
, "%s: could not seek to position %0.3f\n",
1824 is
->filename
, (double)timestamp
/ AV_TIME_BASE
);
1828 /* now we can begin to play (RTSP stream only) */
1832 err
= av_find_stream_info(ic
);
1834 fprintf(stderr
, "%s: could not find codec parameters\n", is
->filename
);
1840 for(i
= 0; i
< ic
->nb_streams
; i
++) {
1841 AVCodecContext
*enc
= ic
->streams
[i
]->codec
;
1842 switch(enc
->codec_type
) {
1843 case CODEC_TYPE_AUDIO
:
1844 if (audio_index
< 0 && !audio_disable
)
1847 case CODEC_TYPE_VIDEO
:
1848 if (video_index
< 0 && !video_disable
)
1856 dump_format(ic
, 0, is
->filename
, 0);
1857 dump_stream_info(ic
);
1860 /* open the streams */
1861 if (audio_index
>= 0) {
1862 stream_component_open(is
, audio_index
);
1865 if (video_index
>= 0) {
1866 stream_component_open(is
, video_index
);
1868 if (!display_disable
)
1872 if (is
->video_stream
< 0 && is
->audio_stream
< 0) {
1873 fprintf(stderr
, "%s: could not open codecs\n", is
->filename
);
1879 if (is
->abort_request
)
1881 #ifdef CONFIG_NETWORK
1882 if (is
->paused
!= is
->last_paused
) {
1883 is
->last_paused
= is
->paused
;
1889 if (is
->paused
&& ic
->iformat
== &rtsp_demux
) {
1890 /* wait 10 ms to avoid trying to get another packet */
1897 /* XXX: must lock decoder threads */
1898 SDL_LockMutex(is
->video_decoder_mutex
);
1899 SDL_LockMutex(is
->audio_decoder_mutex
);
1900 SDL_LockMutex(is
->subtitle_decoder_mutex
);
1901 ret
= av_seek_frame(is
->ic
, -1, is
->seek_pos
, is
->seek_flags
);
1903 fprintf(stderr
, "%s: error while seeking\n", is
->ic
->filename
);
1905 if (is
->audio_stream
>= 0) {
1906 packet_queue_flush(&is
->audioq
);
1908 if (is
->subtitle_stream
>= 0) {
1909 packet_queue_flush(&is
->subtitleq
);
1911 if (is
->video_stream
>= 0) {
1912 packet_queue_flush(&is
->videoq
);
1913 avcodec_flush_buffers(ic
->streams
[video_index
]->codec
);
1916 SDL_UnlockMutex(is
->subtitle_decoder_mutex
);
1917 SDL_UnlockMutex(is
->audio_decoder_mutex
);
1918 SDL_UnlockMutex(is
->video_decoder_mutex
);
1922 /* if the queue are full, no need to read more */
1923 if (is
->audioq
.size
> MAX_AUDIOQ_SIZE
||
1924 is
->videoq
.size
> MAX_VIDEOQ_SIZE
||
1925 is
->subtitleq
.size
> MAX_SUBTITLEQ_SIZE
||
1926 url_feof(&ic
->pb
)) {
1931 ret
= av_read_frame(ic
, pkt
);
1933 if (url_ferror(&ic
->pb
) == 0) {
1934 SDL_Delay(100); /* wait for user event */
1939 if (pkt
->stream_index
== is
->audio_stream
) {
1940 packet_queue_put(&is
->audioq
, pkt
);
1941 } else if (pkt
->stream_index
== is
->video_stream
) {
1942 packet_queue_put(&is
->videoq
, pkt
);
1943 } else if (pkt
->stream_index
== is
->subtitle_stream
) {
1944 packet_queue_put(&is
->subtitleq
, pkt
);
1946 av_free_packet(pkt
);
1949 /* wait until the end */
1950 while (!is
->abort_request
) {
1956 /* disable interrupting */
1957 global_video_state
= NULL
;
1959 /* close each stream */
1960 if (is
->audio_stream
>= 0)
1961 stream_component_close(is
, is
->audio_stream
);
1962 if (is
->video_stream
>= 0)
1963 stream_component_close(is
, is
->video_stream
);
1964 if (is
->subtitle_stream
>= 0)
1965 stream_component_close(is
, is
->subtitle_stream
);
1967 av_close_input_file(is
->ic
);
1968 is
->ic
= NULL
; /* safety */
1970 url_set_interrupt_cb(NULL
);
1975 event
.type
= FF_QUIT_EVENT
;
1976 event
.user
.data1
= is
;
1977 SDL_PushEvent(&event
);
1982 static VideoState
*stream_open(const char *filename
, AVInputFormat
*iformat
)
1986 is
= av_mallocz(sizeof(VideoState
));
1989 pstrcpy(is
->filename
, sizeof(is
->filename
), filename
);
1990 is
->iformat
= iformat
;
1992 is
->width
= screen
->w
;
1993 is
->height
= screen
->h
;
1998 /* start video display */
1999 is
->pictq_mutex
= SDL_CreateMutex();
2000 is
->pictq_cond
= SDL_CreateCond();
2002 is
->subpq_mutex
= SDL_CreateMutex();
2003 is
->subpq_cond
= SDL_CreateCond();
2005 is
->subtitle_decoder_mutex
= SDL_CreateMutex();
2006 is
->audio_decoder_mutex
= SDL_CreateMutex();
2007 is
->video_decoder_mutex
= SDL_CreateMutex();
2009 /* add the refresh timer to draw the picture */
2010 schedule_refresh(is
, 40);
2012 is
->av_sync_type
= av_sync_type
;
2013 is
->parse_tid
= SDL_CreateThread(decode_thread
, is
);
2014 if (!is
->parse_tid
) {
2021 static void stream_close(VideoState
*is
)
2025 /* XXX: use a special url_shutdown call to abort parse cleanly */
2026 is
->abort_request
= 1;
2027 SDL_WaitThread(is
->parse_tid
, NULL
);
2029 /* free all pictures */
2030 for(i
=0;i
<VIDEO_PICTURE_QUEUE_SIZE
; i
++) {
2033 SDL_FreeYUVOverlay(vp
->bmp
);
2037 SDL_DestroyMutex(is
->pictq_mutex
);
2038 SDL_DestroyCond(is
->pictq_cond
);
2039 SDL_DestroyMutex(is
->subpq_mutex
);
2040 SDL_DestroyCond(is
->subpq_cond
);
2041 SDL_DestroyMutex(is
->subtitle_decoder_mutex
);
2042 SDL_DestroyMutex(is
->audio_decoder_mutex
);
2043 SDL_DestroyMutex(is
->video_decoder_mutex
);
2046 static void stream_cycle_channel(VideoState
*is
, int codec_type
)
2048 AVFormatContext
*ic
= is
->ic
;
2049 int start_index
, stream_index
;
2052 if (codec_type
== CODEC_TYPE_VIDEO
)
2053 start_index
= is
->video_stream
;
2054 else if (codec_type
== CODEC_TYPE_AUDIO
)
2055 start_index
= is
->audio_stream
;
2057 start_index
= is
->subtitle_stream
;
2058 if (start_index
< (codec_type
== CODEC_TYPE_SUBTITLE ?
-1 : 0))
2060 stream_index
= start_index
;
2062 if (++stream_index
>= is
->ic
->nb_streams
)
2064 if (codec_type
== CODEC_TYPE_SUBTITLE
)
2071 if (stream_index
== start_index
)
2073 st
= ic
->streams
[stream_index
];
2074 if (st
->codec
->codec_type
== codec_type
) {
2075 /* check that parameters are OK */
2076 switch(codec_type
) {
2077 case CODEC_TYPE_AUDIO
:
2078 if (st
->codec
->sample_rate
!= 0 &&
2079 st
->codec
->channels
!= 0)
2082 case CODEC_TYPE_VIDEO
:
2083 case CODEC_TYPE_SUBTITLE
:
2091 stream_component_close(is
, start_index
);
2092 stream_component_open(is
, stream_index
);
2096 static void toggle_full_screen(void)
2099 is_full_screen
= !is_full_screen
;
2100 if (!fs_screen_width
) {
2101 /* use default SDL method */
2102 SDL_WM_ToggleFullScreen(screen
);
2104 /* use the recorded resolution */
2105 flags
= SDL_HWSURFACE
|SDL_ASYNCBLIT
|SDL_HWACCEL
;
2106 if (is_full_screen
) {
2107 w
= fs_screen_width
;
2108 h
= fs_screen_height
;
2109 flags
|= SDL_FULLSCREEN
;
2113 flags
|= SDL_RESIZABLE
;
2115 screen
= SDL_SetVideoMode(w
, h
, 0, flags
);
2116 cur_stream
->width
= w
;
2117 cur_stream
->height
= h
;
2121 static void toggle_pause(void)
2124 stream_pause(cur_stream
);
2128 static void step_to_next_frame(void)
2131 if (cur_stream
->paused
)
2132 cur_stream
->paused
=0;
2133 cur_stream
->video_current_pts
= get_video_clock(cur_stream
);
2138 static void do_exit(void)
2141 stream_close(cur_stream
);
2150 static void toggle_audio_display(void)
2153 cur_stream
->show_audio
= !cur_stream
->show_audio
;
2157 /* handle an event sent by the GUI */
2158 static void event_loop(void)
2161 double incr
, pos
, frac
;
2164 SDL_WaitEvent(&event
);
2165 switch(event
.type
) {
2167 switch(event
.key
.keysym
.sym
) {
2173 toggle_full_screen();
2179 case SDLK_s
: //S: Step to next frame
2180 step_to_next_frame();
2184 stream_cycle_channel(cur_stream
, CODEC_TYPE_AUDIO
);
2188 stream_cycle_channel(cur_stream
, CODEC_TYPE_VIDEO
);
2192 stream_cycle_channel(cur_stream
, CODEC_TYPE_SUBTITLE
);
2195 toggle_audio_display();
2210 pos
= get_master_clock(cur_stream
);
2212 stream_seek(cur_stream
, (int64_t)(pos
* AV_TIME_BASE
), incr
);
2219 case SDL_MOUSEBUTTONDOWN
:
2222 int tns
, thh
, tmm
, tss
;
2223 tns
= cur_stream
->ic
->duration
/1000000LL;
2225 tmm
= (tns
%3600)/60;
2227 frac
= (double)event
.button
.x
/(double)cur_stream
->width
;
2232 fprintf(stderr
, "Seek to %2.0f%% (%2d:%02d:%02d) of total duration (%2d:%02d:%02d) \n", frac
*100,
2233 hh
, mm
, ss
, thh
, tmm
, tss
);
2234 stream_seek(cur_stream
, (int64_t)(cur_stream
->ic
->start_time
+frac
*cur_stream
->ic
->duration
), 0);
2237 case SDL_VIDEORESIZE
:
2239 screen
= SDL_SetVideoMode(event
.resize
.w
, event
.resize
.h
, 0,
2240 SDL_HWSURFACE
|SDL_RESIZABLE
|SDL_ASYNCBLIT
|SDL_HWACCEL
);
2241 cur_stream
->width
= event
.resize
.w
;
2242 cur_stream
->height
= event
.resize
.h
;
2249 case FF_ALLOC_EVENT
:
2250 alloc_picture(event
.user
.data1
);
2252 case FF_REFRESH_EVENT
:
2253 video_refresh_timer(event
.user
.data1
);
2261 void opt_width(const char *arg
)
2263 screen_width
= atoi(arg
);
2266 void opt_height(const char *arg
)
2268 screen_height
= atoi(arg
);
2271 static void opt_format(const char *arg
)
2273 file_iformat
= av_find_input_format(arg
);
2274 if (!file_iformat
) {
2275 fprintf(stderr
, "Unknown input format: %s\n", arg
);
2280 static void opt_image_format(const char *arg
)
2284 for(f
= first_image_format
; f
!= NULL
; f
= f
->next
) {
2285 if (!strcmp(arg
, f
->name
))
2289 fprintf(stderr
, "Unknown image format: '%s'\n", arg
);
2295 #ifdef CONFIG_NETWORK
2296 void opt_rtp_tcp(void)
2298 /* only tcp protocol */
2299 rtsp_default_protocols
= (1 << RTSP_PROTOCOL_RTP_TCP
);
2303 void opt_sync(const char *arg
)
2305 if (!strcmp(arg
, "audio"))
2306 av_sync_type
= AV_SYNC_AUDIO_MASTER
;
2307 else if (!strcmp(arg
, "video"))
2308 av_sync_type
= AV_SYNC_VIDEO_MASTER
;
2309 else if (!strcmp(arg
, "ext"))
2310 av_sync_type
= AV_SYNC_EXTERNAL_CLOCK
;
2315 void opt_seek(const char *arg
)
2317 start_time
= parse_date(arg
, 1);
2320 static void opt_debug(const char *arg
)
2325 static void opt_vismv(const char *arg
)
2327 debug_mv
= atoi(arg
);
2330 static void opt_thread_count(const char *arg
)
2332 thread_count
= atoi(arg
);
2333 #if !defined(HAVE_THREADS)
2334 fprintf(stderr
, "Warning: not compiled with thread support, using thread emulation\n");
2338 const OptionDef options
[] = {
2339 { "h", 0, {(void*)show_help
}, "show help" },
2340 { "x", HAS_ARG
, {(void*)opt_width
}, "force displayed width", "width" },
2341 { "y", HAS_ARG
, {(void*)opt_height
}, "force displayed height", "height" },
2342 { "fs", OPT_BOOL
, {(void*)&is_full_screen
}, "force full screen" },
2343 { "an", OPT_BOOL
, {(void*)&audio_disable
}, "disable audio" },
2344 { "vn", OPT_BOOL
, {(void*)&video_disable
}, "disable video" },
2345 { "ss", HAS_ARG
, {(void*)&opt_seek
}, "seek to a given position in seconds", "pos" },
2346 { "nodisp", OPT_BOOL
, {(void*)&display_disable
}, "disable graphical display" },
2347 { "f", HAS_ARG
, {(void*)opt_format
}, "force format", "fmt" },
2348 { "img", HAS_ARG
, {(void*)opt_image_format
}, "force image format", "img_fmt" },
2349 { "stats", OPT_BOOL
| OPT_EXPERT
, {(void*)&show_status
}, "show status", "" },
2350 { "debug", HAS_ARG
| OPT_EXPERT
, {(void*)opt_debug
}, "print specific debug info", "" },
2351 { "bug", OPT_INT
| HAS_ARG
| OPT_EXPERT
, {(void*)&workaround_bugs
}, "workaround bugs", "" },
2352 { "vismv", HAS_ARG
| OPT_EXPERT
, {(void*)opt_vismv
}, "visualize motion vectors", "" },
2353 { "fast", OPT_BOOL
| OPT_EXPERT
, {(void*)&fast
}, "non spec compliant optimizations", "" },
2354 { "genpts", OPT_BOOL
| OPT_EXPERT
, {(void*)&genpts
}, "generate pts", "" },
2355 { "lowres", OPT_INT
| HAS_ARG
| OPT_EXPERT
, {(void*)&lowres
}, "", "" },
2356 { "skiploop", OPT_INT
| HAS_ARG
| OPT_EXPERT
, {(void*)&skip_loop_filter
}, "", "" },
2357 { "skipframe", OPT_INT
| HAS_ARG
| OPT_EXPERT
, {(void*)&skip_frame
}, "", "" },
2358 { "skipidct", OPT_INT
| HAS_ARG
| OPT_EXPERT
, {(void*)&skip_idct
}, "", "" },
2359 { "idct", OPT_INT
| HAS_ARG
| OPT_EXPERT
, {(void*)&idct
}, "set idct algo", "algo" },
2360 { "er", OPT_INT
| HAS_ARG
| OPT_EXPERT
, {(void*)&error_resilience
}, "set error detection threshold (0-4)", "threshold" },
2361 { "ec", OPT_INT
| HAS_ARG
| OPT_EXPERT
, {(void*)&error_concealment
}, "set error concealment options", "bit_mask" },
2362 #ifdef CONFIG_NETWORK
2363 { "rtp_tcp", OPT_EXPERT
, {(void*)&opt_rtp_tcp
}, "force RTP/TCP protocol usage", "" },
2365 { "sync", HAS_ARG
| OPT_EXPERT
, {(void*)opt_sync
}, "set audio-video sync. type (type=audio/video/ext)", "type" },
2366 { "threads", HAS_ARG
| OPT_EXPERT
, {(void*)opt_thread_count
}, "thread count", "count" },
2370 void show_help(void)
2372 printf("ffplay version " FFMPEG_VERSION
", Copyright (c) 2003 Fabrice Bellard\n"
2373 "usage: ffplay [options] input_file\n"
2374 "Simple media player\n");
2376 show_help_options(options
, "Main options:\n",
2378 show_help_options(options
, "\nAdvanced options:\n",
2379 OPT_EXPERT
, OPT_EXPERT
);
2380 printf("\nWhile playing:\n"
2382 "f toggle full screen\n"
2384 "a cycle audio channel\n"
2385 "v cycle video channel\n"
2386 "t cycle subtitle channel\n"
2387 "w show audio waves\n"
2388 "left/right seek backward/forward 10 seconds\n"
2389 "down/up seek backward/forward 1 minute\n"
2390 "mouse click seek to percentage in file corresponding to fraction of width\n"
2395 void parse_arg_file(const char *filename
)
2397 if (!strcmp(filename
, "-"))
2399 input_filename
= filename
;
2402 /* Called from the main */
2403 int main(int argc
, char **argv
)
2407 /* register all codecs, demux and protocols */
2411 MorphToPM(); // Morph the VIO application to a PM one to be able to use Win* functions
2413 // Make stdout and stderr unbuffered
2414 setbuf( stdout
, NULL
);
2415 setbuf( stderr
, NULL
);
2418 parse_options(argc
, argv
, options
);
2420 if (!input_filename
)
2423 if (display_disable
) {
2426 flags
= SDL_INIT_VIDEO
| SDL_INIT_AUDIO
| SDL_INIT_TIMER
;
2427 #if !defined(CONFIG_WIN32) && !defined(CONFIG_DARWIN)
2428 flags
|= SDL_INIT_EVENTTHREAD
; /* Not supported on win32 or darwin */
2430 if (SDL_Init (flags
)) {
2431 fprintf(stderr
, "Could not initialize SDL - %s\n", SDL_GetError());
2435 if (!display_disable
) {
2436 #ifdef HAVE_SDL_VIDEO_SIZE
2437 const SDL_VideoInfo
*vi
= SDL_GetVideoInfo();
2438 fs_screen_width
= vi
->current_w
;
2439 fs_screen_height
= vi
->current_h
;
2441 flags
= SDL_HWSURFACE
|SDL_ASYNCBLIT
|SDL_HWACCEL
;
2442 if (is_full_screen
&& fs_screen_width
) {
2443 w
= fs_screen_width
;
2444 h
= fs_screen_height
;
2445 flags
|= SDL_FULLSCREEN
;
2449 flags
|= SDL_RESIZABLE
;
2451 #ifndef CONFIG_DARWIN
2452 screen
= SDL_SetVideoMode(w
, h
, 0, flags
);
2454 /* setting bits_per_pixel = 0 or 32 causes blank video on OS X */
2455 screen
= SDL_SetVideoMode(w
, h
, 24, flags
);
2458 fprintf(stderr
, "SDL: could not set video mode - exiting\n");
2461 SDL_WM_SetCaption("FFplay", "FFplay");
2464 SDL_EventState(SDL_ACTIVEEVENT
, SDL_IGNORE
);
2465 SDL_EventState(SDL_MOUSEMOTION
, SDL_IGNORE
);
2466 SDL_EventState(SDL_SYSWMEVENT
, SDL_IGNORE
);
2467 SDL_EventState(SDL_USEREVENT
, SDL_IGNORE
);
2469 cur_stream
= stream_open(input_filename
, file_iformat
);