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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #define HAVE_AV_CONFIG_H
25 #include <SDL_thread.h>
28 #undef main /* We don't want SDL to override our main() */
31 #if defined(__linux__)
41 #define MAX_VIDEOQ_SIZE (5 * 256 * 1024)
42 #define MAX_AUDIOQ_SIZE (5 * 16 * 1024)
44 /* SDL audio buffer size, in samples. Should be small to have precise
45 A/V sync as SDL does not have hardware buffer fullness info. */
46 #define SDL_AUDIO_BUFFER_SIZE 1024
48 /* no AV sync correction is done if below the AV sync threshold */
49 #define AV_SYNC_THRESHOLD 0.08
50 /* no AV correction is done if too big error */
51 #define AV_NOSYNC_THRESHOLD 10.0
53 /* maximum audio speed change to get correct sync */
54 #define SAMPLE_CORRECTION_PERCENT_MAX 10
56 /* we use about AUDIO_DIFF_AVG_NB A-V differences to make the average */
57 #define AUDIO_DIFF_AVG_NB 20
59 /* NOTE: the size must be big enough to compensate the hardware audio buffersize size */
60 #define SAMPLE_ARRAY_SIZE (2*65536)
62 typedef struct PacketQueue
{
63 AVPacketList
*first_pkt
, *last_pkt
;
71 #define VIDEO_PICTURE_QUEUE_SIZE 1
73 typedef struct VideoPicture
{
74 double pts
; /* presentation time stamp for this picture */
76 int width
, height
; /* source height & width */
81 AV_SYNC_AUDIO_MASTER
, /* default choice */
83 AV_SYNC_EXTERNAL_CLOCK
, /* synchronize to an external clock */
86 typedef struct VideoState
{
87 SDL_Thread
*parse_tid
;
88 SDL_Thread
*video_tid
;
89 AVInputFormat
*iformat
;
95 int dtg_active_format
;
100 double external_clock
; /* external clock base */
101 int64_t external_clock_time
;
104 double audio_diff_cum
; /* used for AV difference average computation */
105 double audio_diff_avg_coef
;
106 double audio_diff_threshold
;
107 int audio_diff_avg_count
;
110 int audio_hw_buf_size
;
111 /* samples output by the codec. we reserve more space for avsync
113 uint8_t audio_buf
[(AVCODEC_MAX_AUDIO_FRAME_SIZE
* 3) / 2];
114 int audio_buf_size
; /* in bytes */
115 int audio_buf_index
; /* in bytes */
117 uint8_t *audio_pkt_data
;
119 int64_t audio_pkt_ipts
;
121 int show_audio
; /* if true, display audio samples */
122 int16_t sample_array
[SAMPLE_ARRAY_SIZE
];
123 int sample_array_index
;
127 double frame_last_pts
;
128 double frame_last_delay
;
134 int picture_start
; /* true if picture starts */
135 double video_last_P_pts
; /* pts of the last P picture (needed if B
136 frames are present) */
137 double video_current_pts
; /* current displayed pts (different from
138 video_clock if frame fifos are used) */
139 int64_t video_current_pts_time
; /* time at which we updated
140 video_current_pts - used to
141 have running video pts */
142 VideoPicture pictq
[VIDEO_PICTURE_QUEUE_SIZE
];
143 int pictq_size
, pictq_rindex
, pictq_windex
;
144 SDL_mutex
*pictq_mutex
;
145 SDL_cond
*pictq_cond
;
147 // QETimer *video_timer;
149 int width
, height
, xleft
, ytop
;
152 void show_help(void);
153 static int audio_write_get_buf_size(VideoState
*is
);
155 /* options specified by the user */
156 static AVInputFormat
*file_iformat
;
157 static AVImageFormat
*image_format
;
158 static const char *input_filename
;
159 static int fs_screen_width
;
160 static int fs_screen_height
;
161 static int screen_width
= 640;
162 static int screen_height
= 480;
163 static int audio_disable
;
164 static int video_disable
;
165 static int display_disable
;
166 static int show_status
;
167 static int av_sync_type
= AV_SYNC_AUDIO_MASTER
;
169 /* current context */
170 static int is_full_screen
;
171 static VideoState
*cur_stream
;
172 static int64_t audio_callback_time
;
174 #define FF_ALLOC_EVENT (SDL_USEREVENT)
175 #define FF_REFRESH_EVENT (SDL_USEREVENT + 1)
176 #define FF_QUIT_EVENT (SDL_USEREVENT + 2)
180 /* packet queue handling */
181 static void packet_queue_init(PacketQueue
*q
)
183 memset(q
, 0, sizeof(PacketQueue
));
184 q
->mutex
= SDL_CreateMutex();
185 q
->cond
= SDL_CreateCond();
188 static void packet_queue_end(PacketQueue
*q
)
190 AVPacketList
*pkt
, *pkt1
;
192 for(pkt
= q
->first_pkt
; pkt
!= NULL
; pkt
= pkt1
) {
194 av_free_packet(&pkt
->pkt
);
196 SDL_DestroyMutex(q
->mutex
);
197 SDL_DestroyCond(q
->cond
);
200 static int packet_queue_put(PacketQueue
*q
, AVPacket
*pkt
)
204 pkt1
= av_malloc(sizeof(AVPacketList
));
210 SDL_LockMutex(q
->mutex
);
216 q
->last_pkt
->next
= pkt1
;
219 q
->size
+= pkt1
->pkt
.size
;
220 /* XXX: should duplicate packet data in DV case */
221 SDL_CondSignal(q
->cond
);
223 SDL_UnlockMutex(q
->mutex
);
227 static void packet_queue_abort(PacketQueue
*q
)
229 SDL_LockMutex(q
->mutex
);
231 q
->abort_request
= 1;
233 SDL_CondSignal(q
->cond
);
235 SDL_UnlockMutex(q
->mutex
);
238 /* return < 0 if aborted, 0 if no packet and > 0 if packet. */
239 static int packet_queue_get(PacketQueue
*q
, AVPacket
*pkt
, int block
)
244 SDL_LockMutex(q
->mutex
);
247 if (q
->abort_request
) {
254 q
->first_pkt
= pkt1
->next
;
258 q
->size
-= pkt1
->pkt
.size
;
267 SDL_CondWait(q
->cond
, q
->mutex
);
270 SDL_UnlockMutex(q
->mutex
);
274 static inline void fill_rectangle(SDL_Surface
*screen
,
275 int x
, int y
, int w
, int h
, int color
)
282 SDL_FillRect(screen
, &rect
, color
);
286 /* draw only the border of a rectangle */
287 void fill_border(VideoState
*s
, int x
, int y
, int w
, int h
, int color
)
291 /* fill the background */
295 w2
= s
->width
- (x
+ w
);
301 h2
= s
->height
- (y
+ h
);
304 fill_rectangle(screen
,
308 fill_rectangle(screen
,
309 s
->xleft
+ s
->width
- w2
, s
->ytop
,
312 fill_rectangle(screen
,
313 s
->xleft
+ w1
, s
->ytop
,
314 s
->width
- w1
- w2
, h1
,
316 fill_rectangle(screen
,
317 s
->xleft
+ w1
, s
->ytop
+ s
->height
- h2
,
318 s
->width
- w1
- w2
, h2
,
323 static void video_image_display(VideoState
*is
)
327 int width
, height
, x
, y
;
330 vp
= &is
->pictq
[is
->pictq_rindex
];
332 /* XXX: use variable in the frame */
333 aspect_ratio
= is
->video_st
->codec
.aspect_ratio
;
334 if (aspect_ratio
<= 0.0)
335 aspect_ratio
= (float)is
->video_st
->codec
.width
/
336 (float)is
->video_st
->codec
.height
;
337 /* if an active format is indicated, then it overrides the
340 if (is
->video_st
->codec
.dtg_active_format
!= is
->dtg_active_format
) {
341 is
->dtg_active_format
= is
->video_st
->codec
.dtg_active_format
;
342 printf("dtg_active_format=%d\n", is
->dtg_active_format
);
346 switch(is
->video_st
->codec
.dtg_active_format
) {
347 case FF_DTG_AFD_SAME
:
352 aspect_ratio
= 4.0 / 3.0;
354 case FF_DTG_AFD_16_9
:
355 aspect_ratio
= 16.0 / 9.0;
357 case FF_DTG_AFD_14_9
:
358 aspect_ratio
= 14.0 / 9.0;
360 case FF_DTG_AFD_4_3_SP_14_9
:
361 aspect_ratio
= 14.0 / 9.0;
363 case FF_DTG_AFD_16_9_SP_14_9
:
364 aspect_ratio
= 14.0 / 9.0;
366 case FF_DTG_AFD_SP_4_3
:
367 aspect_ratio
= 4.0 / 3.0;
372 /* XXX: we suppose the screen has a 1.0 pixel ratio */
374 width
= ((int)rint(height
* aspect_ratio
)) & -3;
375 if (width
> is
->width
) {
377 height
= ((int)rint(width
/ aspect_ratio
)) & -3;
379 x
= (is
->width
- width
) / 2;
380 y
= (is
->height
- height
) / 2;
381 if (!is
->no_background
) {
382 /* fill the background */
383 // fill_border(is, x, y, width, height, QERGB(0x00, 0x00, 0x00));
385 is
->no_background
= 0;
387 rect
.x
= is
->xleft
+ x
;
388 rect
.y
= is
->xleft
+ y
;
391 SDL_DisplayYUVOverlay(vp
->bmp
, &rect
);
394 fill_rectangle(screen
,
395 is
->xleft
, is
->ytop
, is
->width
, is
->height
,
396 QERGB(0x00, 0x00, 0x00));
401 static inline int compute_mod(int a
, int b
)
410 static void video_audio_display(VideoState
*s
)
412 int i
, i_start
, x
, y1
, y
, ys
, delay
, n
, nb_display_channels
;
413 int ch
, channels
, h
, h2
, bgcolor
, fgcolor
;
416 /* compute display index : center on currently output samples */
417 channels
= s
->audio_st
->codec
.channels
;
418 nb_display_channels
= channels
;
421 delay
= audio_write_get_buf_size(s
);
424 /* to be more precise, we take into account the time spent since
425 the last buffer computation */
426 if (audio_callback_time
) {
427 time_diff
= av_gettime() - audio_callback_time
;
428 delay
+= (time_diff
* s
->audio_st
->codec
.sample_rate
) / 1000000;
431 delay
-= s
->width
/ 2;
432 if (delay
< s
->width
)
434 i_start
= compute_mod(s
->sample_array_index
- delay
* channels
, SAMPLE_ARRAY_SIZE
);
435 s
->last_i_start
= i_start
;
437 i_start
= s
->last_i_start
;
440 bgcolor
= SDL_MapRGB(screen
->format
, 0x00, 0x00, 0x00);
441 fill_rectangle(screen
,
442 s
->xleft
, s
->ytop
, s
->width
, s
->height
,
445 fgcolor
= SDL_MapRGB(screen
->format
, 0xff, 0xff, 0xff);
447 /* total height for one channel */
448 h
= s
->height
/ nb_display_channels
;
449 /* graph height / 2 */
451 for(ch
= 0;ch
< nb_display_channels
; ch
++) {
453 y1
= s
->ytop
+ ch
* h
+ (h
/ 2); /* position of center line */
454 for(x
= 0; x
< s
->width
; x
++) {
455 y
= (s
->sample_array
[i
] * h2
) >> 15;
462 fill_rectangle(screen
,
463 s
->xleft
+ x
, ys
, 1, y
,
466 if (i
>= SAMPLE_ARRAY_SIZE
)
467 i
-= SAMPLE_ARRAY_SIZE
;
471 fgcolor
= SDL_MapRGB(screen
->format
, 0x00, 0x00, 0xff);
473 for(ch
= 1;ch
< nb_display_channels
; ch
++) {
474 y
= s
->ytop
+ ch
* h
;
475 fill_rectangle(screen
,
476 s
->xleft
, y
, s
->width
, 1,
479 SDL_UpdateRect(screen
, s
->xleft
, s
->ytop
, s
->width
, s
->height
);
482 /* display the current picture, if any */
483 static void video_display(VideoState
*is
)
485 if (is
->audio_st
&& is
->show_audio
)
486 video_audio_display(is
);
487 else if (is
->video_st
)
488 video_image_display(is
);
491 static Uint32
sdl_refresh_timer_cb(Uint32 interval
, void *opaque
)
494 event
.type
= FF_REFRESH_EVENT
;
495 event
.user
.data1
= opaque
;
496 SDL_PushEvent(&event
);
497 return 0; /* 0 means stop timer */
500 /* schedule a video refresh in 'delay' ms */
501 static void schedule_refresh(VideoState
*is
, int delay
)
503 SDL_AddTimer(delay
, sdl_refresh_timer_cb
, is
);
506 /* get the current audio clock value */
507 static double get_audio_clock(VideoState
*is
)
510 int hw_buf_size
, bytes_per_sec
;
511 pts
= is
->audio_clock
;
512 hw_buf_size
= audio_write_get_buf_size(is
);
515 bytes_per_sec
= is
->audio_st
->codec
.sample_rate
*
516 2 * is
->audio_st
->codec
.channels
;
519 pts
-= (double)hw_buf_size
/ bytes_per_sec
;
523 /* get the current video clock value */
524 static double get_video_clock(VideoState
*is
)
527 delta
= (av_gettime() - is
->video_current_pts_time
) / 1000000.0;
528 return is
->video_current_pts
+ delta
;
531 /* get the current external clock value */
532 static double get_external_clock(VideoState
*is
)
536 return is
->external_clock
+ ((ti
- is
->external_clock_time
) * 1e-6);
539 /* get the current master clock value */
540 static double get_master_clock(VideoState
*is
)
544 if (is
->av_sync_type
== AV_SYNC_VIDEO_MASTER
&& is
->video_st
)
545 val
= get_video_clock(is
);
546 else if (is
->av_sync_type
== AV_SYNC_AUDIO_MASTER
&& is
->audio_st
)
547 val
= get_audio_clock(is
);
549 val
= get_external_clock(is
);
553 /* called to display each frame */
554 static void video_refresh_timer(void *opaque
)
556 VideoState
*is
= opaque
;
558 double actual_delay
, delay
, sync_threshold
, ref_clock
, diff
;
562 if (is
->pictq_size
== 0) {
563 /* if no picture, need to wait */
564 schedule_refresh(is
, 40);
566 /* dequeue the picture */
567 vp
= &is
->pictq
[is
->pictq_rindex
];
569 /* update current video pts */
570 is
->video_current_pts
= vp
->pts
;
571 is
->video_current_pts_time
= av_gettime();
573 /* compute nominal delay */
574 delay
= vp
->pts
- is
->frame_last_pts
;
575 if (delay
<= 0 || delay
>= 1.0) {
576 /* if incorrect delay, use previous one */
577 delay
= is
->frame_last_delay
;
579 is
->frame_last_delay
= delay
;
580 is
->frame_last_pts
= vp
->pts
;
582 /* update delay to follow master synchronisation source */
583 if (((is
->av_sync_type
== AV_SYNC_AUDIO_MASTER
&& is
->audio_st
) ||
584 is
->av_sync_type
== AV_SYNC_EXTERNAL_CLOCK
)) {
585 /* if video is slave, we try to correct big delays by
586 duplicating or deleting a frame */
587 ref_clock
= get_master_clock(is
);
588 diff
= vp
->pts
- ref_clock
;
590 /* skip or repeat frame. We take into account the
591 delay to compute the threshold. I still don't know
592 if it is the best guess */
593 sync_threshold
= AV_SYNC_THRESHOLD
;
594 if (delay
> sync_threshold
)
595 sync_threshold
= delay
;
596 if (fabs(diff
) < AV_NOSYNC_THRESHOLD
) {
597 if (diff
<= -sync_threshold
)
599 else if (diff
>= sync_threshold
)
604 is
->frame_timer
+= delay
;
605 /* compute the REAL delay (we need to do that to avoid
607 actual_delay
= is
->frame_timer
- (av_gettime() / 1000000.0);
608 if (actual_delay
< 0.010) {
609 /* XXX: should skip picture */
610 actual_delay
= 0.010;
612 /* launch timer for next picture */
613 schedule_refresh(is
, (int)(actual_delay
* 1000 + 0.5));
615 #if defined(DEBUG_SYNC)
616 printf("video: delay=%0.3f actual_delay=%0.3f pts=%0.3f A-V=%f\n",
617 delay
, actual_delay
, vp
->pts
, -diff
);
620 /* display picture */
623 /* update queue size and signal for next picture */
624 if (++is
->pictq_rindex
== VIDEO_PICTURE_QUEUE_SIZE
)
625 is
->pictq_rindex
= 0;
627 SDL_LockMutex(is
->pictq_mutex
);
629 SDL_CondSignal(is
->pictq_cond
);
630 SDL_UnlockMutex(is
->pictq_mutex
);
632 } else if (is
->audio_st
) {
633 /* draw the next audio frame */
635 schedule_refresh(is
, 40);
637 /* if only audio stream, then display the audio bars (better
638 than nothing, just to test the implementation */
640 /* display picture */
643 schedule_refresh(is
, 100);
646 static int64_t last_time
;
651 cur_time
= av_gettime();
652 if (!last_time
|| (cur_time
- last_time
) >= 500 * 1000) {
656 aqsize
= is
->audioq
.size
;
658 vqsize
= is
->videoq
.size
;
660 if (is
->audio_st
&& is
->video_st
)
661 av_diff
= get_audio_clock(is
) - get_video_clock(is
);
662 printf("%7.2f A-V:%7.3f aq=%5dKB vq=%5dKB \r",
663 get_master_clock(is
), av_diff
, aqsize
/ 1024, vqsize
/ 1024);
665 last_time
= cur_time
;
670 /* allocate a picture (needs to do that in main thread to avoid
671 potential locking problems */
672 static void alloc_picture(void *opaque
)
674 VideoState
*is
= opaque
;
677 vp
= &is
->pictq
[is
->pictq_windex
];
680 SDL_FreeYUVOverlay(vp
->bmp
);
683 /* XXX: use generic function */
684 /* XXX: disable overlay if no hardware acceleration or if RGB format */
685 switch(is
->video_st
->codec
.pix_fmt
) {
686 case PIX_FMT_YUV420P
:
687 case PIX_FMT_YUV422P
:
688 case PIX_FMT_YUV444P
:
690 case PIX_FMT_YUV410P
:
691 case PIX_FMT_YUV411P
:
699 vp
->bmp
= SDL_CreateYUVOverlay(is
->video_st
->codec
.width
,
700 is
->video_st
->codec
.height
,
703 vp
->width
= is
->video_st
->codec
.width
;
704 vp
->height
= is
->video_st
->codec
.height
;
706 SDL_LockMutex(is
->pictq_mutex
);
708 SDL_CondSignal(is
->pictq_cond
);
709 SDL_UnlockMutex(is
->pictq_mutex
);
712 static int queue_picture(VideoState
*is
, AVFrame
*src_frame
, double pts
)
718 /* wait until we have space to put a new picture */
719 SDL_LockMutex(is
->pictq_mutex
);
720 while (is
->pictq_size
>= VIDEO_PICTURE_QUEUE_SIZE
&&
721 !is
->videoq
.abort_request
) {
722 SDL_CondWait(is
->pictq_cond
, is
->pictq_mutex
);
724 SDL_UnlockMutex(is
->pictq_mutex
);
726 if (is
->videoq
.abort_request
)
729 vp
= &is
->pictq
[is
->pictq_windex
];
731 /* alloc or resize hardware picture buffer */
733 vp
->width
!= is
->video_st
->codec
.width
||
734 vp
->height
!= is
->video_st
->codec
.height
) {
739 /* the allocation must be done in the main thread to avoid
741 event
.type
= FF_ALLOC_EVENT
;
742 event
.user
.data1
= is
;
743 SDL_PushEvent(&event
);
745 /* wait until the picture is allocated */
746 SDL_LockMutex(is
->pictq_mutex
);
747 while (!vp
->allocated
&& !is
->videoq
.abort_request
) {
748 SDL_CondWait(is
->pictq_cond
, is
->pictq_mutex
);
750 SDL_UnlockMutex(is
->pictq_mutex
);
752 if (is
->videoq
.abort_request
)
756 /* if the frame is not skipped, then display it */
758 /* get a pointer on the bitmap */
759 SDL_LockYUVOverlay (vp
->bmp
);
761 dst_pix_fmt
= PIX_FMT_YUV420P
;
762 pict
.data
[0] = vp
->bmp
->pixels
[0];
763 pict
.data
[1] = vp
->bmp
->pixels
[2];
764 pict
.data
[2] = vp
->bmp
->pixels
[1];
766 pict
.linesize
[0] = vp
->bmp
->pitches
[0];
767 pict
.linesize
[1] = vp
->bmp
->pitches
[2];
768 pict
.linesize
[2] = vp
->bmp
->pitches
[1];
770 img_convert(&pict
, dst_pix_fmt
,
771 (AVPicture
*)src_frame
, is
->video_st
->codec
.pix_fmt
,
772 is
->video_st
->codec
.width
, is
->video_st
->codec
.height
);
773 /* update the bitmap content */
774 SDL_UnlockYUVOverlay(vp
->bmp
);
778 /* now we can update the picture count */
779 if (++is
->pictq_windex
== VIDEO_PICTURE_QUEUE_SIZE
)
780 is
->pictq_windex
= 0;
781 SDL_LockMutex(is
->pictq_mutex
);
783 SDL_UnlockMutex(is
->pictq_mutex
);
788 /* compute the exact PTS for the picture if it is omitted in the stream */
789 static int output_picture2(VideoState
*is
, AVFrame
*src_frame
, double pts1
)
791 double frame_delay
, pts
;
795 /* if B frames are present, and if the current picture is a I
796 or P frame, we use the last pts */
797 if (is
->video_st
->codec
.has_b_frames
&&
798 src_frame
->pict_type
!= FF_B_TYPE
) {
800 pts
= is
->video_last_P_pts
;
801 /* get the pts for the next I or P frame if present */
802 is
->video_last_P_pts
= pts1
;
806 /* update video clock with pts, if present */
807 is
->video_clock
= pts
;
809 frame_delay
= (double)is
->video_st
->codec
.frame_rate_base
/
810 (double)is
->video_st
->codec
.frame_rate
;
811 is
->video_clock
+= frame_delay
;
812 /* for MPEG2, the frame can be repeated, so we update the
814 if (src_frame
->repeat_pict
) {
815 is
->video_clock
+= src_frame
->repeat_pict
* (frame_delay
* 0.5);
819 #if defined(DEBUG_SYNC) && 0
822 if (src_frame
->pict_type
== FF_B_TYPE
)
824 else if (src_frame
->pict_type
== FF_I_TYPE
)
828 printf("frame_type=%c clock=%0.3f pts=%0.3f\n",
829 ftype
, is
->video_clock
, pts1
);
832 return queue_picture(is
, src_frame
, is
->video_clock
);
835 static int video_thread(void *arg
)
837 VideoState
*is
= arg
;
838 AVPacket pkt1
, *pkt
= &pkt1
;
840 int len
, len1
, got_picture
;
841 AVFrame
*frame
= avcodec_alloc_frame();
846 while (is
->paused
&& !is
->videoq
.abort_request
) {
849 if (packet_queue_get(&is
->videoq
, pkt
, 1) < 0)
851 /* NOTE: ipts is the PTS of the _first_ picture beginning in
852 this packet, if any */
855 if (is
->video_st
->codec
.codec_id
== CODEC_ID_RAWVIDEO
) {
856 avpicture_fill((AVPicture
*)frame
, ptr
,
857 is
->video_st
->codec
.pix_fmt
,
858 is
->video_st
->codec
.width
,
859 is
->video_st
->codec
.height
);
861 if (ipts
!= AV_NOPTS_VALUE
)
862 pts
= (double)ipts
* is
->ic
->pts_num
/ is
->ic
->pts_den
;
863 frame
->pict_type
= FF_I_TYPE
;
864 if (output_picture2(is
, frame
, pts
) < 0)
869 if (is
->picture_start
) {
871 is
->picture_start
= 0;
872 ipts
= AV_NOPTS_VALUE
;
874 len1
= avcodec_decode_video(&is
->video_st
->codec
,
875 frame
, &got_picture
, ptr
, len
);
880 if (is
->ipts
!= AV_NOPTS_VALUE
)
881 pts
= (double)is
->ipts
* is
->ic
->pts_num
/ is
->ic
->pts_den
;
882 if (output_picture2(is
, frame
, pts
) < 0)
884 is
->picture_start
= 1;
897 /* copy samples for viewing in editor window */
898 static void update_sample_display(VideoState
*is
, short *samples
, int samples_size
)
900 int size
, len
, channels
;
902 channels
= is
->audio_st
->codec
.channels
;
904 size
= samples_size
/ sizeof(short);
906 len
= SAMPLE_ARRAY_SIZE
- is
->sample_array_index
;
909 memcpy(is
->sample_array
+ is
->sample_array_index
, samples
, len
* sizeof(short));
911 is
->sample_array_index
+= len
;
912 if (is
->sample_array_index
>= SAMPLE_ARRAY_SIZE
)
913 is
->sample_array_index
= 0;
918 /* return the new audio buffer size (samples can be added or deleted
919 to get better sync if video or external master clock) */
920 static int synchronize_audio(VideoState
*is
, short *samples
,
921 int samples_size1
, double pts
)
926 n
= 2 * is
->audio_st
->codec
.channels
;
927 samples_size
= samples_size1
;
929 /* if not master, then we try to remove or add samples to correct the clock */
930 if (((is
->av_sync_type
== AV_SYNC_VIDEO_MASTER
&& is
->video_st
) ||
931 is
->av_sync_type
== AV_SYNC_EXTERNAL_CLOCK
)) {
932 double diff
, avg_diff
;
933 int wanted_size
, min_size
, max_size
, nb_samples
;
935 ref_clock
= get_master_clock(is
);
936 diff
= get_audio_clock(is
) - ref_clock
;
938 if (diff
< AV_NOSYNC_THRESHOLD
) {
939 is
->audio_diff_cum
= diff
+ is
->audio_diff_avg_coef
* is
->audio_diff_cum
;
940 if (is
->audio_diff_avg_count
< AUDIO_DIFF_AVG_NB
) {
941 /* not enough measures to have a correct estimate */
942 is
->audio_diff_avg_count
++;
944 /* estimate the A-V difference */
945 avg_diff
= is
->audio_diff_cum
* (1.0 - is
->audio_diff_avg_coef
);
947 if (fabs(avg_diff
) >= is
->audio_diff_threshold
) {
948 wanted_size
= samples_size
+ ((int)(diff
* is
->audio_st
->codec
.sample_rate
) * n
);
949 nb_samples
= samples_size
/ n
;
951 min_size
= ((nb_samples
* (100 - SAMPLE_CORRECTION_PERCENT_MAX
)) / 100) * n
;
952 max_size
= ((nb_samples
* (100 + SAMPLE_CORRECTION_PERCENT_MAX
)) / 100) * n
;
953 if (wanted_size
< min_size
)
954 wanted_size
= min_size
;
955 else if (wanted_size
> max_size
)
956 wanted_size
= max_size
;
958 /* add or remove samples to correction the synchro */
959 if (wanted_size
< samples_size
) {
961 samples_size
= wanted_size
;
962 } else if (wanted_size
> samples_size
) {
963 uint8_t *samples_end
, *q
;
967 nb
= (samples_size
- wanted_size
);
968 samples_end
= (uint8_t *)samples
+ samples_size
- n
;
971 memcpy(q
, samples_end
, n
);
975 samples_size
= wanted_size
;
979 printf("diff=%f adiff=%f sample_diff=%d apts=%0.3f vpts=%0.3f %f\n",
980 diff
, avg_diff
, samples_size
- samples_size1
,
981 is
->audio_clock
, is
->video_clock
, is
->audio_diff_threshold
);
985 /* too big difference : may be initial PTS errors, so
987 is
->audio_diff_avg_count
= 0;
988 is
->audio_diff_cum
= 0;
995 /* decode one audio frame and returns its uncompressed size */
996 static int audio_decode_frame(VideoState
*is
, uint8_t *audio_buf
, double *pts_ptr
)
998 AVPacket
*pkt
= &is
->audio_pkt
;
1003 if (is
->paused
|| is
->audioq
.abort_request
) {
1006 while (is
->audio_pkt_size
> 0) {
1007 len1
= avcodec_decode_audio(&is
->audio_st
->codec
,
1008 (int16_t *)audio_buf
, &data_size
,
1009 is
->audio_pkt_data
, is
->audio_pkt_size
);
1012 is
->audio_pkt_data
+= len1
;
1013 is
->audio_pkt_size
-= len1
;
1014 if (data_size
> 0) {
1016 if (is
->audio_pkt_ipts
!= AV_NOPTS_VALUE
)
1017 pts
= (double)is
->audio_pkt_ipts
* is
->ic
->pts_num
/ is
->ic
->pts_den
;
1018 /* if no pts, then compute it */
1020 is
->audio_clock
= pts
;
1023 n
= 2 * is
->audio_st
->codec
.channels
;
1024 is
->audio_clock
+= (double)data_size
/ (double)(n
* is
->audio_st
->codec
.sample_rate
);
1026 #if defined(DEBUG_SYNC)
1028 static double last_clock
;
1029 printf("audio: delay=%0.3f clock=%0.3f pts=%0.3f\n",
1030 is
->audio_clock
- last_clock
,
1031 is
->audio_clock
, pts
);
1032 last_clock
= is
->audio_clock
;
1035 *pts_ptr
= is
->audio_clock
;
1036 is
->audio_pkt_ipts
= AV_NOPTS_VALUE
;
1037 /* we got samples : we can exit now */
1042 /* free previous packet if any */
1044 av_free_packet(pkt
);
1046 /* read next packet */
1047 if (packet_queue_get(&is
->audioq
, pkt
, 1) < 0)
1049 is
->audio_pkt_data
= pkt
->data
;
1050 is
->audio_pkt_size
= pkt
->size
;
1051 is
->audio_pkt_ipts
= pkt
->pts
;
1055 /* get the current audio output buffer size, in samples. With SDL, we
1056 cannot have a precise information */
1057 static int audio_write_get_buf_size(VideoState
*is
)
1059 return is
->audio_hw_buf_size
- is
->audio_buf_index
;
1063 /* prepare a new audio buffer */
1064 void sdl_audio_callback(void *opaque
, Uint8
*stream
, int len
)
1066 VideoState
*is
= opaque
;
1067 int audio_size
, len1
;
1070 audio_callback_time
= av_gettime();
1073 if (is
->audio_buf_index
>= is
->audio_buf_size
) {
1074 audio_size
= audio_decode_frame(is
, is
->audio_buf
, &pts
);
1075 if (audio_size
< 0) {
1076 /* if error, just output silence */
1077 is
->audio_buf_size
= 1024;
1078 memset(is
->audio_buf
, 0, is
->audio_buf_size
);
1081 update_sample_display(is
, (int16_t *)is
->audio_buf
, audio_size
);
1082 audio_size
= synchronize_audio(is
, (int16_t *)is
->audio_buf
, audio_size
,
1084 is
->audio_buf_size
= audio_size
;
1086 is
->audio_buf_index
= 0;
1088 len1
= is
->audio_buf_size
- is
->audio_buf_index
;
1091 memcpy(stream
, (uint8_t *)is
->audio_buf
+ is
->audio_buf_index
, len1
);
1094 is
->audio_buf_index
+= len1
;
1099 /* open a given stream. Return 0 if OK */
1100 static int stream_component_open(VideoState
*is
, int stream_index
)
1102 AVFormatContext
*ic
= is
->ic
;
1103 AVCodecContext
*enc
;
1105 SDL_AudioSpec wanted_spec
, spec
;
1107 if (stream_index
< 0 || stream_index
>= ic
->nb_streams
)
1109 enc
= &ic
->streams
[stream_index
]->codec
;
1111 /* prepare audio output */
1112 if (enc
->codec_type
== CODEC_TYPE_AUDIO
) {
1113 wanted_spec
.freq
= enc
->sample_rate
;
1114 wanted_spec
.format
= AUDIO_S16SYS
;
1115 /* hack for AC3. XXX: suppress that */
1116 if (enc
->channels
> 2)
1118 wanted_spec
.channels
= enc
->channels
;
1119 wanted_spec
.silence
= 0;
1120 wanted_spec
.samples
= SDL_AUDIO_BUFFER_SIZE
;
1121 wanted_spec
.callback
= sdl_audio_callback
;
1122 wanted_spec
.userdata
= is
;
1123 if (SDL_OpenAudio(&wanted_spec
, &spec
) < 0) {
1124 fprintf(stderr
, "SDL_OpenAudio: %s\n", SDL_GetError());
1127 is
->audio_hw_buf_size
= spec
.size
;
1130 codec
= avcodec_find_decoder(enc
->codec_id
);
1132 avcodec_open(enc
, codec
) < 0)
1134 switch(enc
->codec_type
) {
1135 case CODEC_TYPE_AUDIO
:
1136 is
->audio_stream
= stream_index
;
1137 is
->audio_st
= ic
->streams
[stream_index
];
1138 is
->audio_buf_size
= 0;
1139 is
->audio_buf_index
= 0;
1140 is
->audio_pkt_size
= 0;
1142 /* init averaging filter */
1143 is
->audio_diff_avg_coef
= exp(log(0.01) / AUDIO_DIFF_AVG_NB
);
1144 is
->audio_diff_avg_count
= 0;
1145 /* since we do not have a precise anough audio fifo fullness,
1146 we correct audio sync only if larger than this threshold */
1147 is
->audio_diff_threshold
= 2.0 * SDL_AUDIO_BUFFER_SIZE
/ enc
->sample_rate
;
1149 memset(&is
->audio_pkt
, 0, sizeof(is
->audio_pkt
));
1150 packet_queue_init(&is
->audioq
);
1153 case CODEC_TYPE_VIDEO
:
1154 is
->video_stream
= stream_index
;
1155 is
->video_st
= ic
->streams
[stream_index
];
1157 is
->frame_last_delay
= 40e-3;
1158 is
->frame_timer
= (double)av_gettime() / 1000000.0;
1159 is
->picture_start
= 1;
1160 is
->video_current_pts_time
= av_gettime();
1162 packet_queue_init(&is
->videoq
);
1163 is
->video_tid
= SDL_CreateThread(video_thread
, is
);
1171 static void stream_component_close(VideoState
*is
, int stream_index
)
1173 AVFormatContext
*ic
= is
->ic
;
1174 AVCodecContext
*enc
;
1176 enc
= &ic
->streams
[stream_index
]->codec
;
1178 switch(enc
->codec_type
) {
1179 case CODEC_TYPE_AUDIO
:
1180 packet_queue_abort(&is
->audioq
);
1184 packet_queue_end(&is
->audioq
);
1186 case CODEC_TYPE_VIDEO
:
1187 packet_queue_abort(&is
->videoq
);
1189 /* note: we also signal this mutex to make sure we deblock the
1190 video thread in all cases */
1191 SDL_LockMutex(is
->pictq_mutex
);
1192 SDL_CondSignal(is
->pictq_cond
);
1193 SDL_UnlockMutex(is
->pictq_mutex
);
1195 SDL_WaitThread(is
->video_tid
, NULL
);
1197 packet_queue_end(&is
->videoq
);
1204 switch(enc
->codec_type
) {
1205 case CODEC_TYPE_AUDIO
:
1206 is
->audio_st
= NULL
;
1207 is
->audio_stream
= -1;
1209 case CODEC_TYPE_VIDEO
:
1210 is
->video_st
= NULL
;
1211 is
->video_stream
= -1;
1218 void dump_stream_info(AVFormatContext
*s
)
1221 fprintf(stderr
, "Track: %d\n", s
->track
);
1222 if (s
->title
[0] != '\0')
1223 fprintf(stderr
, "Title: %s\n", s
->title
);
1224 if (s
->author
[0] != '\0')
1225 fprintf(stderr
, "Author: %s\n", s
->author
);
1226 if (s
->album
[0] != '\0')
1227 fprintf(stderr
, "Album: %s\n", s
->album
);
1229 fprintf(stderr
, "Year: %d\n", s
->year
);
1230 if (s
->genre
[0] != '\0')
1231 fprintf(stderr
, "Genre: %s\n", s
->genre
);
1234 /* since we have only one decoding thread, we can use a global
1235 variable instead of a thread local variable */
1236 static VideoState
*global_video_state
;
1238 static int decode_interrupt_cb(void)
1240 return (global_video_state
&& global_video_state
->abort_request
);
1243 /* this thread gets the stream from the disk or the network */
1244 static int decode_thread(void *arg
)
1246 VideoState
*is
= arg
;
1247 AVFormatContext
*ic
;
1248 int err
, i
, ret
, video_index
, audio_index
;
1249 AVPacket pkt1
, *pkt
= &pkt1
;
1250 AVFormatParameters params
, *ap
= ¶ms
;
1254 is
->video_stream
= -1;
1255 is
->audio_stream
= -1;
1257 global_video_state
= is
;
1258 url_set_interrupt_cb(decode_interrupt_cb
);
1260 memset(ap
, 0, sizeof(*ap
));
1261 ap
->image_format
= image_format
;
1263 err
= av_open_input_file(&ic
, is
->filename
, is
->iformat
, 0, ap
);
1265 print_error(is
->filename
, err
);
1270 err
= av_find_stream_info(ic
);
1272 fprintf(stderr
, "%s: could not find codec parameters\n", is
->filename
);
1277 for(i
= 0; i
< ic
->nb_streams
; i
++) {
1278 AVCodecContext
*enc
= &ic
->streams
[i
]->codec
;
1279 switch(enc
->codec_type
) {
1280 case CODEC_TYPE_AUDIO
:
1281 if (audio_index
< 0 && !audio_disable
)
1284 case CODEC_TYPE_VIDEO
:
1285 if (video_index
< 0 && !video_disable
)
1293 dump_format(ic
, 0, is
->filename
, 0);
1294 dump_stream_info(ic
);
1297 /* open the streams */
1298 if (audio_index
>= 0) {
1299 stream_component_open(is
, audio_index
);
1302 if (video_index
>= 0) {
1303 stream_component_open(is
, video_index
);
1305 if (!display_disable
)
1309 if (is
->video_stream
< 0 && is
->audio_stream
< 0) {
1310 fprintf(stderr
, "%s: could not open codecs\n", is
->filename
);
1316 if (is
->abort_request
)
1318 #ifdef CONFIG_NETWORK
1319 if (is
->paused
!= is
->last_paused
) {
1320 is
->last_paused
= is
->paused
;
1321 if (ic
->iformat
== &rtsp_demux
) {
1328 if (is
->paused
&& ic
->iformat
== &rtsp_demux
) {
1329 /* wait 10 ms to avoid trying to get another packet */
1336 /* if the queue are full, no need to read more */
1337 if (is
->audioq
.size
> MAX_AUDIOQ_SIZE
||
1338 is
->videoq
.size
> MAX_VIDEOQ_SIZE
) {
1343 ret
= av_read_packet(ic
, pkt
);
1347 if (pkt
->stream_index
== is
->audio_stream
) {
1348 packet_queue_put(&is
->audioq
, pkt
);
1349 } else if (pkt
->stream_index
== is
->video_stream
) {
1350 packet_queue_put(&is
->videoq
, pkt
);
1352 av_free_packet(pkt
);
1355 /* wait until the end */
1356 while (!is
->abort_request
) {
1362 /* disable interrupting */
1363 global_video_state
= NULL
;
1365 /* close each stream */
1366 if (is
->audio_stream
>= 0)
1367 stream_component_close(is
, is
->audio_stream
);
1368 if (is
->video_stream
>= 0)
1369 stream_component_close(is
, is
->video_stream
);
1371 av_close_input_file(is
->ic
);
1372 is
->ic
= NULL
; /* safety */
1374 url_set_interrupt_cb(NULL
);
1379 event
.type
= FF_QUIT_EVENT
;
1380 event
.user
.data1
= is
;
1381 SDL_PushEvent(&event
);
1386 /* pause or resume the video */
1387 static void stream_pause(VideoState
*is
)
1389 is
->paused
= !is
->paused
;
1392 static VideoState
*stream_open(const char *filename
, AVInputFormat
*iformat
)
1396 is
= av_mallocz(sizeof(VideoState
));
1399 pstrcpy(is
->filename
, sizeof(is
->filename
), filename
);
1400 is
->iformat
= iformat
;
1402 is
->width
= screen
->w
;
1403 is
->height
= screen
->h
;
1408 /* start video display */
1409 is
->pictq_mutex
= SDL_CreateMutex();
1410 is
->pictq_cond
= SDL_CreateCond();
1412 /* add the refresh timer to draw the picture */
1413 schedule_refresh(is
, 40);
1415 is
->av_sync_type
= av_sync_type
;
1416 is
->parse_tid
= SDL_CreateThread(decode_thread
, is
);
1417 if (!is
->parse_tid
) {
1424 static void stream_close(VideoState
*is
)
1428 /* XXX: use a special url_shutdown call to abort parse cleanly */
1429 is
->abort_request
= 1;
1430 SDL_WaitThread(is
->parse_tid
, NULL
);
1432 /* free all pictures */
1433 for(i
=0;i
<VIDEO_PICTURE_QUEUE_SIZE
; i
++) {
1436 SDL_FreeYUVOverlay(vp
->bmp
);
1440 SDL_DestroyMutex(is
->pictq_mutex
);
1441 SDL_DestroyCond(is
->pictq_cond
);
1444 void stream_cycle_channel(VideoState
*is
, int codec_type
)
1446 AVFormatContext
*ic
= is
->ic
;
1447 int start_index
, stream_index
;
1450 if (codec_type
== CODEC_TYPE_VIDEO
)
1451 start_index
= is
->video_stream
;
1453 start_index
= is
->audio_stream
;
1454 if (start_index
< 0)
1456 stream_index
= start_index
;
1458 if (++stream_index
>= is
->ic
->nb_streams
)
1460 if (stream_index
== start_index
)
1462 st
= ic
->streams
[stream_index
];
1463 if (st
->codec
.codec_type
== codec_type
) {
1464 /* check that parameters are OK */
1465 switch(codec_type
) {
1466 case CODEC_TYPE_AUDIO
:
1467 if (st
->codec
.sample_rate
!= 0 &&
1468 st
->codec
.channels
!= 0)
1471 case CODEC_TYPE_VIDEO
:
1479 stream_component_close(is
, start_index
);
1480 stream_component_open(is
, stream_index
);
1484 void toggle_full_screen(void)
1487 is_full_screen
= !is_full_screen
;
1488 if (!fs_screen_width
) {
1489 /* use default SDL method */
1490 SDL_WM_ToggleFullScreen(screen
);
1492 /* use the recorded resolution */
1493 flags
= SDL_HWSURFACE
|SDL_ASYNCBLIT
|SDL_HWACCEL
;
1494 if (is_full_screen
) {
1495 w
= fs_screen_width
;
1496 h
= fs_screen_height
;
1497 flags
|= SDL_FULLSCREEN
;
1501 flags
|= SDL_RESIZABLE
;
1503 screen
= SDL_SetVideoMode(w
, h
, 0, flags
);
1504 cur_stream
->width
= w
;
1505 cur_stream
->height
= h
;
1509 void toggle_pause(void)
1512 stream_pause(cur_stream
);
1518 stream_close(cur_stream
);
1527 void toggle_audio_display(void)
1530 cur_stream
->show_audio
= !cur_stream
->show_audio
;
1534 /* handle an event sent by the GUI */
1535 void event_loop(void)
1540 SDL_WaitEvent(&event
);
1541 switch(event
.type
) {
1543 switch(event
.key
.keysym
.sym
) {
1549 toggle_full_screen();
1557 stream_cycle_channel(cur_stream
, CODEC_TYPE_AUDIO
);
1561 stream_cycle_channel(cur_stream
, CODEC_TYPE_VIDEO
);
1564 toggle_audio_display();
1570 case SDL_VIDEORESIZE
:
1572 screen
= SDL_SetVideoMode(event
.resize
.w
, event
.resize
.h
, 0,
1573 SDL_HWSURFACE
|SDL_RESIZABLE
|SDL_ASYNCBLIT
|SDL_HWACCEL
);
1574 cur_stream
->width
= event
.resize
.w
;
1575 cur_stream
->height
= event
.resize
.h
;
1582 case FF_ALLOC_EVENT
:
1583 alloc_picture(event
.user
.data1
);
1585 case FF_REFRESH_EVENT
:
1586 video_refresh_timer(event
.user
.data1
);
1594 void opt_width(const char *arg
)
1596 screen_width
= atoi(arg
);
1599 void opt_height(const char *arg
)
1601 screen_height
= atoi(arg
);
1604 static void opt_format(const char *arg
)
1606 file_iformat
= av_find_input_format(arg
);
1607 if (!file_iformat
) {
1608 fprintf(stderr
, "Unknown input format: %s\n", arg
);
1613 static void opt_image_format(const char *arg
)
1617 for(f
= first_image_format
; f
!= NULL
; f
= f
->next
) {
1618 if (!strcmp(arg
, f
->name
))
1622 fprintf(stderr
, "Unknown image format: '%s'\n", arg
);
1628 #ifdef CONFIG_NETWORK
1629 void opt_rtp_tcp(void)
1631 /* only tcp protocol */
1632 rtsp_default_protocols
= (1 << RTSP_PROTOCOL_RTP_TCP
);
1636 void opt_sync(const char *arg
)
1638 if (!strcmp(arg
, "audio"))
1639 av_sync_type
= AV_SYNC_AUDIO_MASTER
;
1640 else if (!strcmp(arg
, "video"))
1641 av_sync_type
= AV_SYNC_VIDEO_MASTER
;
1642 else if (!strcmp(arg
, "ext"))
1643 av_sync_type
= AV_SYNC_EXTERNAL_CLOCK
;
1648 const OptionDef options
[] = {
1649 { "h", 0, {(void*)show_help
}, "show help" },
1650 { "x", HAS_ARG
, {(void*)opt_width
}, "force displayed width", "width" },
1651 { "y", HAS_ARG
, {(void*)opt_height
}, "force displayed height", "height" },
1653 /* disabled as SDL/X11 does not support it correctly on application launch */
1654 { "fs", OPT_BOOL
, {(void*)&is_full_screen
}, "force full screen" },
1656 { "an", OPT_BOOL
, {(void*)&audio_disable
}, "disable audio" },
1657 { "vn", OPT_BOOL
, {(void*)&video_disable
}, "disable video" },
1658 { "nodisp", OPT_BOOL
, {(void*)&display_disable
}, "disable graphical display" },
1659 { "f", HAS_ARG
, {(void*)opt_format
}, "force format", "fmt" },
1660 { "img", HAS_ARG
, {(void*)opt_image_format
}, "force image format", "img_fmt" },
1661 { "stats", OPT_BOOL
| OPT_EXPERT
, {(void*)&show_status
}, "show status", "" },
1662 #ifdef CONFIG_NETWORK
1663 { "rtp_tcp", OPT_EXPERT
, {(void*)&opt_rtp_tcp
}, "force RTP/TCP protocol usage", "" },
1665 { "sync", HAS_ARG
| OPT_EXPERT
, {(void*)&opt_sync
}, "set audio-video sync. type (type=audio/video/ext)", "type" },
1669 void show_help(void)
1671 printf("ffplay version " FFMPEG_VERSION
", Copyright (c) 2003 Fabrice Bellard\n"
1672 "usage: ffplay [options] input_file\n"
1673 "Simple media player\n");
1675 show_help_options(options
, "Main options:\n",
1677 show_help_options(options
, "\nAdvanced options:\n",
1678 OPT_EXPERT
, OPT_EXPERT
);
1679 printf("\nWhile playing:\n"
1681 "f toggle full screen\n"
1683 "a cycle audio channel\n"
1684 "v cycle video channel\n"
1685 "w show audio waves\n"
1690 void parse_arg_file(const char *filename
)
1692 if (!strcmp(filename
, "-"))
1694 input_filename
= filename
;
1697 /* Called from the main */
1698 int main(int argc
, char **argv
)
1702 /* register all codecs, demux and protocols */
1705 parse_options(argc
, argv
, options
);
1707 if (!input_filename
)
1710 if (display_disable
) {
1713 flags
= SDL_INIT_VIDEO
| SDL_INIT_AUDIO
| SDL_INIT_TIMER
;
1714 #ifndef CONFIG_WIN32
1715 flags
|= SDL_INIT_EVENTTHREAD
; /* Not supported on win32 */
1717 if (SDL_Init (flags
)) {
1718 fprintf(stderr
, "Could not initialize SDL - %s\n", SDL_GetError());
1722 if (!display_disable
) {
1724 /* save the screen resolution... SDL should allow full screen
1725 by resizing the window */
1728 dpy
= XOpenDisplay(NULL
);
1730 fs_screen_width
= DisplayWidth(dpy
, DefaultScreen(dpy
));
1731 fs_screen_height
= DisplayHeight(dpy
, DefaultScreen(dpy
));
1736 flags
= SDL_HWSURFACE
|SDL_ASYNCBLIT
|SDL_HWACCEL
;
1737 if (is_full_screen
&& fs_screen_width
) {
1738 w
= fs_screen_width
;
1739 h
= fs_screen_height
;
1740 flags
|= SDL_FULLSCREEN
;
1744 flags
|= SDL_RESIZABLE
;
1746 screen
= SDL_SetVideoMode(w
, h
, 0, flags
);
1748 fprintf(stderr
, "SDL: could not set video mode - exiting\n");
1751 SDL_WM_SetCaption("FFplay", "FFplay");
1754 SDL_EventState(SDL_ACTIVEEVENT
, SDL_IGNORE
);
1755 SDL_EventState(SDL_MOUSEMOTION
, SDL_IGNORE
);
1756 SDL_EventState(SDL_SYSWMEVENT
, SDL_IGNORE
);
1757 SDL_EventState(SDL_USEREVENT
, SDL_IGNORE
);
1759 cur_stream
= stream_open(input_filename
, file_iformat
);