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
;
97 int dtg_active_format
;
102 double external_clock
; /* external clock base */
103 int64_t external_clock_time
;
106 double audio_diff_cum
; /* used for AV difference average computation */
107 double audio_diff_avg_coef
;
108 double audio_diff_threshold
;
109 int audio_diff_avg_count
;
112 int audio_hw_buf_size
;
113 /* samples output by the codec. we reserve more space for avsync
115 uint8_t audio_buf
[(AVCODEC_MAX_AUDIO_FRAME_SIZE
* 3) / 2];
116 int audio_buf_size
; /* in bytes */
117 int audio_buf_index
; /* in bytes */
119 uint8_t *audio_pkt_data
;
122 int show_audio
; /* if true, display audio samples */
123 int16_t sample_array
[SAMPLE_ARRAY_SIZE
];
124 int sample_array_index
;
128 double frame_last_pts
;
129 double frame_last_delay
;
134 double video_last_P_pts
; /* pts of the last P picture (needed if B
135 frames are present) */
136 double video_current_pts
; /* current displayed pts (different from
137 video_clock if frame fifos are used) */
138 int64_t video_current_pts_time
; /* time at which we updated
139 video_current_pts - used to
140 have running video pts */
141 VideoPicture pictq
[VIDEO_PICTURE_QUEUE_SIZE
];
142 int pictq_size
, pictq_rindex
, pictq_windex
;
143 SDL_mutex
*pictq_mutex
;
144 SDL_cond
*pictq_cond
;
146 // QETimer *video_timer;
148 int width
, height
, xleft
, ytop
;
151 void show_help(void);
152 static int audio_write_get_buf_size(VideoState
*is
);
154 /* options specified by the user */
155 static AVInputFormat
*file_iformat
;
156 static AVImageFormat
*image_format
;
157 static const char *input_filename
;
158 static int fs_screen_width
;
159 static int fs_screen_height
;
160 static int screen_width
= 640;
161 static int screen_height
= 480;
162 static int audio_disable
;
163 static int video_disable
;
164 static int display_disable
;
165 static int show_status
;
166 static int av_sync_type
= AV_SYNC_AUDIO_MASTER
;
167 static int64_t start_time
= AV_NOPTS_VALUE
;
168 static int debug
= 0;
169 static int debug_mv
= 0;
172 /* current context */
173 static int is_full_screen
;
174 static VideoState
*cur_stream
;
175 static int64_t audio_callback_time
;
177 #define FF_ALLOC_EVENT (SDL_USEREVENT)
178 #define FF_REFRESH_EVENT (SDL_USEREVENT + 1)
179 #define FF_QUIT_EVENT (SDL_USEREVENT + 2)
183 /* packet queue handling */
184 static void packet_queue_init(PacketQueue
*q
)
186 memset(q
, 0, sizeof(PacketQueue
));
187 q
->mutex
= SDL_CreateMutex();
188 q
->cond
= SDL_CreateCond();
191 static void packet_queue_flush(PacketQueue
*q
)
193 AVPacketList
*pkt
, *pkt1
;
195 for(pkt
= q
->first_pkt
; pkt
!= NULL
; pkt
= pkt1
) {
197 av_free_packet(&pkt
->pkt
);
205 static void packet_queue_end(PacketQueue
*q
)
207 packet_queue_flush(q
);
208 SDL_DestroyMutex(q
->mutex
);
209 SDL_DestroyCond(q
->cond
);
212 static int packet_queue_put(PacketQueue
*q
, AVPacket
*pkt
)
216 /* duplicate the packet */
217 if (av_dup_packet(pkt
) < 0)
220 pkt1
= av_malloc(sizeof(AVPacketList
));
227 SDL_LockMutex(q
->mutex
);
233 q
->last_pkt
->next
= pkt1
;
236 q
->size
+= pkt1
->pkt
.size
;
237 /* XXX: should duplicate packet data in DV case */
238 SDL_CondSignal(q
->cond
);
240 SDL_UnlockMutex(q
->mutex
);
244 static void packet_queue_abort(PacketQueue
*q
)
246 SDL_LockMutex(q
->mutex
);
248 q
->abort_request
= 1;
250 SDL_CondSignal(q
->cond
);
252 SDL_UnlockMutex(q
->mutex
);
255 /* return < 0 if aborted, 0 if no packet and > 0 if packet. */
256 static int packet_queue_get(PacketQueue
*q
, AVPacket
*pkt
, int block
)
261 SDL_LockMutex(q
->mutex
);
264 if (q
->abort_request
) {
271 q
->first_pkt
= pkt1
->next
;
275 q
->size
-= pkt1
->pkt
.size
;
284 SDL_CondWait(q
->cond
, q
->mutex
);
287 SDL_UnlockMutex(q
->mutex
);
291 static inline void fill_rectangle(SDL_Surface
*screen
,
292 int x
, int y
, int w
, int h
, int color
)
299 SDL_FillRect(screen
, &rect
, color
);
303 /* draw only the border of a rectangle */
304 void fill_border(VideoState
*s
, int x
, int y
, int w
, int h
, int color
)
308 /* fill the background */
312 w2
= s
->width
- (x
+ w
);
318 h2
= s
->height
- (y
+ h
);
321 fill_rectangle(screen
,
325 fill_rectangle(screen
,
326 s
->xleft
+ s
->width
- w2
, s
->ytop
,
329 fill_rectangle(screen
,
330 s
->xleft
+ w1
, s
->ytop
,
331 s
->width
- w1
- w2
, h1
,
333 fill_rectangle(screen
,
334 s
->xleft
+ w1
, s
->ytop
+ s
->height
- h2
,
335 s
->width
- w1
- w2
, h2
,
340 static void video_image_display(VideoState
*is
)
344 int width
, height
, x
, y
;
347 vp
= &is
->pictq
[is
->pictq_rindex
];
349 /* XXX: use variable in the frame */
350 if (is
->video_st
->codec
.sample_aspect_ratio
.num
== 0)
353 aspect_ratio
= av_q2d(is
->video_st
->codec
.sample_aspect_ratio
)
354 * is
->video_st
->codec
.width
/ is
->video_st
->codec
.height
;;
355 if (aspect_ratio
<= 0.0)
356 aspect_ratio
= (float)is
->video_st
->codec
.width
/
357 (float)is
->video_st
->codec
.height
;
358 /* if an active format is indicated, then it overrides the
361 if (is
->video_st
->codec
.dtg_active_format
!= is
->dtg_active_format
) {
362 is
->dtg_active_format
= is
->video_st
->codec
.dtg_active_format
;
363 printf("dtg_active_format=%d\n", is
->dtg_active_format
);
367 switch(is
->video_st
->codec
.dtg_active_format
) {
368 case FF_DTG_AFD_SAME
:
373 aspect_ratio
= 4.0 / 3.0;
375 case FF_DTG_AFD_16_9
:
376 aspect_ratio
= 16.0 / 9.0;
378 case FF_DTG_AFD_14_9
:
379 aspect_ratio
= 14.0 / 9.0;
381 case FF_DTG_AFD_4_3_SP_14_9
:
382 aspect_ratio
= 14.0 / 9.0;
384 case FF_DTG_AFD_16_9_SP_14_9
:
385 aspect_ratio
= 14.0 / 9.0;
387 case FF_DTG_AFD_SP_4_3
:
388 aspect_ratio
= 4.0 / 3.0;
393 /* XXX: we suppose the screen has a 1.0 pixel ratio */
395 width
= ((int)rint(height
* aspect_ratio
)) & -3;
396 if (width
> is
->width
) {
398 height
= ((int)rint(width
/ aspect_ratio
)) & -3;
400 x
= (is
->width
- width
) / 2;
401 y
= (is
->height
- height
) / 2;
402 if (!is
->no_background
) {
403 /* fill the background */
404 // fill_border(is, x, y, width, height, QERGB(0x00, 0x00, 0x00));
406 is
->no_background
= 0;
408 rect
.x
= is
->xleft
+ x
;
409 rect
.y
= is
->xleft
+ y
;
412 SDL_DisplayYUVOverlay(vp
->bmp
, &rect
);
415 fill_rectangle(screen
,
416 is
->xleft
, is
->ytop
, is
->width
, is
->height
,
417 QERGB(0x00, 0x00, 0x00));
422 static inline int compute_mod(int a
, int b
)
431 static void video_audio_display(VideoState
*s
)
433 int i
, i_start
, x
, y1
, y
, ys
, delay
, n
, nb_display_channels
;
434 int ch
, channels
, h
, h2
, bgcolor
, fgcolor
;
437 /* compute display index : center on currently output samples */
438 channels
= s
->audio_st
->codec
.channels
;
439 nb_display_channels
= channels
;
442 delay
= audio_write_get_buf_size(s
);
445 /* to be more precise, we take into account the time spent since
446 the last buffer computation */
447 if (audio_callback_time
) {
448 time_diff
= av_gettime() - audio_callback_time
;
449 delay
+= (time_diff
* s
->audio_st
->codec
.sample_rate
) / 1000000;
452 delay
-= s
->width
/ 2;
453 if (delay
< s
->width
)
455 i_start
= compute_mod(s
->sample_array_index
- delay
* channels
, SAMPLE_ARRAY_SIZE
);
456 s
->last_i_start
= i_start
;
458 i_start
= s
->last_i_start
;
461 bgcolor
= SDL_MapRGB(screen
->format
, 0x00, 0x00, 0x00);
462 fill_rectangle(screen
,
463 s
->xleft
, s
->ytop
, s
->width
, s
->height
,
466 fgcolor
= SDL_MapRGB(screen
->format
, 0xff, 0xff, 0xff);
468 /* total height for one channel */
469 h
= s
->height
/ nb_display_channels
;
470 /* graph height / 2 */
472 for(ch
= 0;ch
< nb_display_channels
; ch
++) {
474 y1
= s
->ytop
+ ch
* h
+ (h
/ 2); /* position of center line */
475 for(x
= 0; x
< s
->width
; x
++) {
476 y
= (s
->sample_array
[i
] * h2
) >> 15;
483 fill_rectangle(screen
,
484 s
->xleft
+ x
, ys
, 1, y
,
487 if (i
>= SAMPLE_ARRAY_SIZE
)
488 i
-= SAMPLE_ARRAY_SIZE
;
492 fgcolor
= SDL_MapRGB(screen
->format
, 0x00, 0x00, 0xff);
494 for(ch
= 1;ch
< nb_display_channels
; ch
++) {
495 y
= s
->ytop
+ ch
* h
;
496 fill_rectangle(screen
,
497 s
->xleft
, y
, s
->width
, 1,
500 SDL_UpdateRect(screen
, s
->xleft
, s
->ytop
, s
->width
, s
->height
);
503 /* display the current picture, if any */
504 static void video_display(VideoState
*is
)
506 if (is
->audio_st
&& is
->show_audio
)
507 video_audio_display(is
);
508 else if (is
->video_st
)
509 video_image_display(is
);
512 static Uint32
sdl_refresh_timer_cb(Uint32 interval
, void *opaque
)
515 event
.type
= FF_REFRESH_EVENT
;
516 event
.user
.data1
= opaque
;
517 SDL_PushEvent(&event
);
518 return 0; /* 0 means stop timer */
521 /* schedule a video refresh in 'delay' ms */
522 static void schedule_refresh(VideoState
*is
, int delay
)
524 SDL_AddTimer(delay
, sdl_refresh_timer_cb
, is
);
527 /* get the current audio clock value */
528 static double get_audio_clock(VideoState
*is
)
531 int hw_buf_size
, bytes_per_sec
;
532 pts
= is
->audio_clock
;
533 hw_buf_size
= audio_write_get_buf_size(is
);
536 bytes_per_sec
= is
->audio_st
->codec
.sample_rate
*
537 2 * is
->audio_st
->codec
.channels
;
540 pts
-= (double)hw_buf_size
/ bytes_per_sec
;
544 /* get the current video clock value */
545 static double get_video_clock(VideoState
*is
)
551 delta
= (av_gettime() - is
->video_current_pts_time
) / 1000000.0;
553 return is
->video_current_pts
+ delta
;
556 /* get the current external clock value */
557 static double get_external_clock(VideoState
*is
)
561 return is
->external_clock
+ ((ti
- is
->external_clock_time
) * 1e-6);
564 /* get the current master clock value */
565 static double get_master_clock(VideoState
*is
)
569 if (is
->av_sync_type
== AV_SYNC_VIDEO_MASTER
) {
571 val
= get_video_clock(is
);
573 val
= get_audio_clock(is
);
574 } else if (is
->av_sync_type
== AV_SYNC_AUDIO_MASTER
) {
576 val
= get_audio_clock(is
);
578 val
= get_video_clock(is
);
580 val
= get_external_clock(is
);
585 /* seek in the stream */
586 static void stream_seek(VideoState
*is
, int64_t pos
)
592 /* pause or resume the video */
593 static void stream_pause(VideoState
*is
)
595 is
->paused
= !is
->paused
;
597 is
->video_current_pts
= get_video_clock(is
);
601 /* called to display each frame */
602 static void video_refresh_timer(void *opaque
)
604 VideoState
*is
= opaque
;
606 double actual_delay
, delay
, sync_threshold
, ref_clock
, diff
;
610 if (is
->pictq_size
== 0) {
611 /* if no picture, need to wait */
612 schedule_refresh(is
, 40);
614 /* dequeue the picture */
615 vp
= &is
->pictq
[is
->pictq_rindex
];
617 /* update current video pts */
618 is
->video_current_pts
= vp
->pts
;
619 is
->video_current_pts_time
= av_gettime();
621 /* compute nominal delay */
622 delay
= vp
->pts
- is
->frame_last_pts
;
623 if (delay
<= 0 || delay
>= 1.0) {
624 /* if incorrect delay, use previous one */
625 delay
= is
->frame_last_delay
;
627 is
->frame_last_delay
= delay
;
628 is
->frame_last_pts
= vp
->pts
;
630 /* update delay to follow master synchronisation source */
631 if (((is
->av_sync_type
== AV_SYNC_AUDIO_MASTER
&& is
->audio_st
) ||
632 is
->av_sync_type
== AV_SYNC_EXTERNAL_CLOCK
)) {
633 /* if video is slave, we try to correct big delays by
634 duplicating or deleting a frame */
635 ref_clock
= get_master_clock(is
);
636 diff
= vp
->pts
- ref_clock
;
638 /* skip or repeat frame. We take into account the
639 delay to compute the threshold. I still don't know
640 if it is the best guess */
641 sync_threshold
= AV_SYNC_THRESHOLD
;
642 if (delay
> sync_threshold
)
643 sync_threshold
= delay
;
644 if (fabs(diff
) < AV_NOSYNC_THRESHOLD
) {
645 if (diff
<= -sync_threshold
)
647 else if (diff
>= sync_threshold
)
652 is
->frame_timer
+= delay
;
653 /* compute the REAL delay (we need to do that to avoid
655 actual_delay
= is
->frame_timer
- (av_gettime() / 1000000.0);
656 if (actual_delay
< 0.010) {
657 /* XXX: should skip picture */
658 actual_delay
= 0.010;
660 /* launch timer for next picture */
661 schedule_refresh(is
, (int)(actual_delay
* 1000 + 0.5));
663 #if defined(DEBUG_SYNC)
664 printf("video: delay=%0.3f actual_delay=%0.3f pts=%0.3f A-V=%f\n",
665 delay
, actual_delay
, vp
->pts
, -diff
);
668 /* display picture */
671 /* update queue size and signal for next picture */
672 if (++is
->pictq_rindex
== VIDEO_PICTURE_QUEUE_SIZE
)
673 is
->pictq_rindex
= 0;
675 SDL_LockMutex(is
->pictq_mutex
);
677 SDL_CondSignal(is
->pictq_cond
);
678 SDL_UnlockMutex(is
->pictq_mutex
);
680 } else if (is
->audio_st
) {
681 /* draw the next audio frame */
683 schedule_refresh(is
, 40);
685 /* if only audio stream, then display the audio bars (better
686 than nothing, just to test the implementation */
688 /* display picture */
691 schedule_refresh(is
, 100);
694 static int64_t last_time
;
699 cur_time
= av_gettime();
700 if (!last_time
|| (cur_time
- last_time
) >= 500 * 1000) {
704 aqsize
= is
->audioq
.size
;
706 vqsize
= is
->videoq
.size
;
708 if (is
->audio_st
&& is
->video_st
)
709 av_diff
= get_audio_clock(is
) - get_video_clock(is
);
710 printf("%7.2f A-V:%7.3f aq=%5dKB vq=%5dKB \r",
711 get_master_clock(is
), av_diff
, aqsize
/ 1024, vqsize
/ 1024);
713 last_time
= cur_time
;
718 /* allocate a picture (needs to do that in main thread to avoid
719 potential locking problems */
720 static void alloc_picture(void *opaque
)
722 VideoState
*is
= opaque
;
725 vp
= &is
->pictq
[is
->pictq_windex
];
728 SDL_FreeYUVOverlay(vp
->bmp
);
731 /* XXX: use generic function */
732 /* XXX: disable overlay if no hardware acceleration or if RGB format */
733 switch(is
->video_st
->codec
.pix_fmt
) {
734 case PIX_FMT_YUV420P
:
735 case PIX_FMT_YUV422P
:
736 case PIX_FMT_YUV444P
:
738 case PIX_FMT_YUV410P
:
739 case PIX_FMT_YUV411P
:
747 vp
->bmp
= SDL_CreateYUVOverlay(is
->video_st
->codec
.width
,
748 is
->video_st
->codec
.height
,
751 vp
->width
= is
->video_st
->codec
.width
;
752 vp
->height
= is
->video_st
->codec
.height
;
754 SDL_LockMutex(is
->pictq_mutex
);
756 SDL_CondSignal(is
->pictq_cond
);
757 SDL_UnlockMutex(is
->pictq_mutex
);
760 static int queue_picture(VideoState
*is
, AVFrame
*src_frame
, double pts
)
766 /* wait until we have space to put a new picture */
767 SDL_LockMutex(is
->pictq_mutex
);
768 while (is
->pictq_size
>= VIDEO_PICTURE_QUEUE_SIZE
&&
769 !is
->videoq
.abort_request
) {
770 SDL_CondWait(is
->pictq_cond
, is
->pictq_mutex
);
772 SDL_UnlockMutex(is
->pictq_mutex
);
774 if (is
->videoq
.abort_request
)
777 vp
= &is
->pictq
[is
->pictq_windex
];
779 /* alloc or resize hardware picture buffer */
781 vp
->width
!= is
->video_st
->codec
.width
||
782 vp
->height
!= is
->video_st
->codec
.height
) {
787 /* the allocation must be done in the main thread to avoid
789 event
.type
= FF_ALLOC_EVENT
;
790 event
.user
.data1
= is
;
791 SDL_PushEvent(&event
);
793 /* wait until the picture is allocated */
794 SDL_LockMutex(is
->pictq_mutex
);
795 while (!vp
->allocated
&& !is
->videoq
.abort_request
) {
796 SDL_CondWait(is
->pictq_cond
, is
->pictq_mutex
);
798 SDL_UnlockMutex(is
->pictq_mutex
);
800 if (is
->videoq
.abort_request
)
804 /* if the frame is not skipped, then display it */
806 /* get a pointer on the bitmap */
807 SDL_LockYUVOverlay (vp
->bmp
);
809 dst_pix_fmt
= PIX_FMT_YUV420P
;
810 pict
.data
[0] = vp
->bmp
->pixels
[0];
811 pict
.data
[1] = vp
->bmp
->pixels
[2];
812 pict
.data
[2] = vp
->bmp
->pixels
[1];
814 pict
.linesize
[0] = vp
->bmp
->pitches
[0];
815 pict
.linesize
[1] = vp
->bmp
->pitches
[2];
816 pict
.linesize
[2] = vp
->bmp
->pitches
[1];
817 img_convert(&pict
, dst_pix_fmt
,
818 (AVPicture
*)src_frame
, is
->video_st
->codec
.pix_fmt
,
819 is
->video_st
->codec
.width
, is
->video_st
->codec
.height
);
820 /* update the bitmap content */
821 SDL_UnlockYUVOverlay(vp
->bmp
);
825 /* now we can update the picture count */
826 if (++is
->pictq_windex
== VIDEO_PICTURE_QUEUE_SIZE
)
827 is
->pictq_windex
= 0;
828 SDL_LockMutex(is
->pictq_mutex
);
830 SDL_UnlockMutex(is
->pictq_mutex
);
835 /* compute the exact PTS for the picture if it is omitted in the stream */
836 static int output_picture2(VideoState
*is
, AVFrame
*src_frame
, double pts1
)
838 double frame_delay
, pts
;
842 /* if B frames are present, and if the current picture is a I
843 or P frame, we use the last pts */
844 if (is
->video_st
->codec
.has_b_frames
&&
845 src_frame
->pict_type
!= FF_B_TYPE
) {
847 pts
= is
->video_last_P_pts
;
848 /* get the pts for the next I or P frame if present */
849 is
->video_last_P_pts
= pts1
;
853 /* update video clock with pts, if present */
854 is
->video_clock
= pts
;
856 pts
= is
->video_clock
;
858 /* update video clock for next frame */
859 frame_delay
= (double)is
->video_st
->codec
.frame_rate_base
/
860 (double)is
->video_st
->codec
.frame_rate
;
861 /* for MPEG2, the frame can be repeated, so we update the
863 if (src_frame
->repeat_pict
) {
864 frame_delay
+= src_frame
->repeat_pict
* (frame_delay
* 0.5);
866 is
->video_clock
+= frame_delay
;
868 #if defined(DEBUG_SYNC) && 0
871 if (src_frame
->pict_type
== FF_B_TYPE
)
873 else if (src_frame
->pict_type
== FF_I_TYPE
)
877 printf("frame_type=%c clock=%0.3f pts=%0.3f\n",
881 return queue_picture(is
, src_frame
, pts
);
884 static int video_thread(void *arg
)
886 VideoState
*is
= arg
;
887 AVPacket pkt1
, *pkt
= &pkt1
;
888 int len1
, got_picture
;
889 AVFrame
*frame
= avcodec_alloc_frame();
893 while (is
->paused
&& !is
->videoq
.abort_request
) {
896 if (packet_queue_get(&is
->videoq
, pkt
, 1) < 0)
898 /* NOTE: ipts is the PTS of the _first_ picture beginning in
899 this packet, if any */
901 if (pkt
->pts
!= AV_NOPTS_VALUE
)
902 pts
= (double)pkt
->pts
/ AV_TIME_BASE
;
904 if (is
->video_st
->codec
.codec_id
== CODEC_ID_RAWVIDEO
) {
905 avpicture_fill((AVPicture
*)frame
, pkt
->data
,
906 is
->video_st
->codec
.pix_fmt
,
907 is
->video_st
->codec
.width
,
908 is
->video_st
->codec
.height
);
909 frame
->pict_type
= FF_I_TYPE
;
910 if (output_picture2(is
, frame
, pts
) < 0)
913 len1
= avcodec_decode_video(&is
->video_st
->codec
,
915 pkt
->data
, pkt
->size
);
919 if (output_picture2(is
, frame
, pts
) < 0)
926 stream_pause(cur_stream
);
933 /* copy samples for viewing in editor window */
934 static void update_sample_display(VideoState
*is
, short *samples
, int samples_size
)
936 int size
, len
, channels
;
938 channels
= is
->audio_st
->codec
.channels
;
940 size
= samples_size
/ sizeof(short);
942 len
= SAMPLE_ARRAY_SIZE
- is
->sample_array_index
;
945 memcpy(is
->sample_array
+ is
->sample_array_index
, samples
, len
* sizeof(short));
947 is
->sample_array_index
+= len
;
948 if (is
->sample_array_index
>= SAMPLE_ARRAY_SIZE
)
949 is
->sample_array_index
= 0;
954 /* return the new audio buffer size (samples can be added or deleted
955 to get better sync if video or external master clock) */
956 static int synchronize_audio(VideoState
*is
, short *samples
,
957 int samples_size1
, double pts
)
962 n
= 2 * is
->audio_st
->codec
.channels
;
963 samples_size
= samples_size1
;
965 /* if not master, then we try to remove or add samples to correct the clock */
966 if (((is
->av_sync_type
== AV_SYNC_VIDEO_MASTER
&& is
->video_st
) ||
967 is
->av_sync_type
== AV_SYNC_EXTERNAL_CLOCK
)) {
968 double diff
, avg_diff
;
969 int wanted_size
, min_size
, max_size
, nb_samples
;
971 ref_clock
= get_master_clock(is
);
972 diff
= get_audio_clock(is
) - ref_clock
;
974 if (diff
< AV_NOSYNC_THRESHOLD
) {
975 is
->audio_diff_cum
= diff
+ is
->audio_diff_avg_coef
* is
->audio_diff_cum
;
976 if (is
->audio_diff_avg_count
< AUDIO_DIFF_AVG_NB
) {
977 /* not enough measures to have a correct estimate */
978 is
->audio_diff_avg_count
++;
980 /* estimate the A-V difference */
981 avg_diff
= is
->audio_diff_cum
* (1.0 - is
->audio_diff_avg_coef
);
983 if (fabs(avg_diff
) >= is
->audio_diff_threshold
) {
984 wanted_size
= samples_size
+ ((int)(diff
* is
->audio_st
->codec
.sample_rate
) * n
);
985 nb_samples
= samples_size
/ n
;
987 min_size
= ((nb_samples
* (100 - SAMPLE_CORRECTION_PERCENT_MAX
)) / 100) * n
;
988 max_size
= ((nb_samples
* (100 + SAMPLE_CORRECTION_PERCENT_MAX
)) / 100) * n
;
989 if (wanted_size
< min_size
)
990 wanted_size
= min_size
;
991 else if (wanted_size
> max_size
)
992 wanted_size
= max_size
;
994 /* add or remove samples to correction the synchro */
995 if (wanted_size
< samples_size
) {
997 samples_size
= wanted_size
;
998 } else if (wanted_size
> samples_size
) {
999 uint8_t *samples_end
, *q
;
1003 nb
= (samples_size
- wanted_size
);
1004 samples_end
= (uint8_t *)samples
+ samples_size
- n
;
1005 q
= samples_end
+ n
;
1007 memcpy(q
, samples_end
, n
);
1011 samples_size
= wanted_size
;
1015 printf("diff=%f adiff=%f sample_diff=%d apts=%0.3f vpts=%0.3f %f\n",
1016 diff
, avg_diff
, samples_size
- samples_size1
,
1017 is
->audio_clock
, is
->video_clock
, is
->audio_diff_threshold
);
1021 /* too big difference : may be initial PTS errors, so
1023 is
->audio_diff_avg_count
= 0;
1024 is
->audio_diff_cum
= 0;
1028 return samples_size
;
1031 /* decode one audio frame and returns its uncompressed size */
1032 static int audio_decode_frame(VideoState
*is
, uint8_t *audio_buf
, double *pts_ptr
)
1034 AVPacket
*pkt
= &is
->audio_pkt
;
1035 int n
, len1
, data_size
;
1039 /* NOTE: the audio packet can contain several frames */
1040 while (is
->audio_pkt_size
> 0) {
1041 len1
= avcodec_decode_audio(&is
->audio_st
->codec
,
1042 (int16_t *)audio_buf
, &data_size
,
1043 is
->audio_pkt_data
, is
->audio_pkt_size
);
1045 /* if error, we skip the frame */
1046 is
->audio_pkt_size
= 0;
1050 is
->audio_pkt_data
+= len1
;
1051 is
->audio_pkt_size
-= len1
;
1054 /* if no pts, then compute it */
1055 pts
= is
->audio_clock
;
1057 n
= 2 * is
->audio_st
->codec
.channels
;
1058 is
->audio_clock
+= (double)data_size
/
1059 (double)(n
* is
->audio_st
->codec
.sample_rate
);
1060 #if defined(DEBUG_SYNC)
1062 static double last_clock
;
1063 printf("audio: delay=%0.3f clock=%0.3f pts=%0.3f\n",
1064 is
->audio_clock
- last_clock
,
1065 is
->audio_clock
, pts
);
1066 last_clock
= is
->audio_clock
;
1072 /* free the current packet */
1074 av_free_packet(pkt
);
1076 if (is
->paused
|| is
->audioq
.abort_request
) {
1080 /* read next packet */
1081 if (packet_queue_get(&is
->audioq
, pkt
, 1) < 0)
1083 is
->audio_pkt_data
= pkt
->data
;
1084 is
->audio_pkt_size
= pkt
->size
;
1086 /* if update the audio clock with the pts */
1087 if (pkt
->pts
!= AV_NOPTS_VALUE
) {
1088 is
->audio_clock
= (double)pkt
->pts
/ AV_TIME_BASE
;
1093 /* get the current audio output buffer size, in samples. With SDL, we
1094 cannot have a precise information */
1095 static int audio_write_get_buf_size(VideoState
*is
)
1097 return is
->audio_hw_buf_size
- is
->audio_buf_index
;
1101 /* prepare a new audio buffer */
1102 void sdl_audio_callback(void *opaque
, Uint8
*stream
, int len
)
1104 VideoState
*is
= opaque
;
1105 int audio_size
, len1
;
1108 audio_callback_time
= av_gettime();
1111 if (is
->audio_buf_index
>= is
->audio_buf_size
) {
1112 audio_size
= audio_decode_frame(is
, is
->audio_buf
, &pts
);
1113 if (audio_size
< 0) {
1114 /* if error, just output silence */
1115 is
->audio_buf_size
= 1024;
1116 memset(is
->audio_buf
, 0, is
->audio_buf_size
);
1119 update_sample_display(is
, (int16_t *)is
->audio_buf
, audio_size
);
1120 audio_size
= synchronize_audio(is
, (int16_t *)is
->audio_buf
, audio_size
,
1122 is
->audio_buf_size
= audio_size
;
1124 is
->audio_buf_index
= 0;
1126 len1
= is
->audio_buf_size
- is
->audio_buf_index
;
1129 memcpy(stream
, (uint8_t *)is
->audio_buf
+ is
->audio_buf_index
, len1
);
1132 is
->audio_buf_index
+= len1
;
1137 /* open a given stream. Return 0 if OK */
1138 static int stream_component_open(VideoState
*is
, int stream_index
)
1140 AVFormatContext
*ic
= is
->ic
;
1141 AVCodecContext
*enc
;
1143 SDL_AudioSpec wanted_spec
, spec
;
1145 if (stream_index
< 0 || stream_index
>= ic
->nb_streams
)
1147 enc
= &ic
->streams
[stream_index
]->codec
;
1149 /* prepare audio output */
1150 if (enc
->codec_type
== CODEC_TYPE_AUDIO
) {
1151 wanted_spec
.freq
= enc
->sample_rate
;
1152 wanted_spec
.format
= AUDIO_S16SYS
;
1153 /* hack for AC3. XXX: suppress that */
1154 if (enc
->channels
> 2)
1156 wanted_spec
.channels
= enc
->channels
;
1157 wanted_spec
.silence
= 0;
1158 wanted_spec
.samples
= SDL_AUDIO_BUFFER_SIZE
;
1159 wanted_spec
.callback
= sdl_audio_callback
;
1160 wanted_spec
.userdata
= is
;
1161 if (SDL_OpenAudio(&wanted_spec
, &spec
) < 0) {
1162 fprintf(stderr
, "SDL_OpenAudio: %s\n", SDL_GetError());
1165 is
->audio_hw_buf_size
= spec
.size
;
1168 codec
= avcodec_find_decoder(enc
->codec_id
);
1170 avcodec_open(enc
, codec
) < 0)
1172 switch(enc
->codec_type
) {
1173 case CODEC_TYPE_AUDIO
:
1174 is
->audio_stream
= stream_index
;
1175 is
->audio_st
= ic
->streams
[stream_index
];
1176 is
->audio_buf_size
= 0;
1177 is
->audio_buf_index
= 0;
1179 /* init averaging filter */
1180 is
->audio_diff_avg_coef
= exp(log(0.01) / AUDIO_DIFF_AVG_NB
);
1181 is
->audio_diff_avg_count
= 0;
1182 /* since we do not have a precise anough audio fifo fullness,
1183 we correct audio sync only if larger than this threshold */
1184 is
->audio_diff_threshold
= 2.0 * SDL_AUDIO_BUFFER_SIZE
/ enc
->sample_rate
;
1186 memset(&is
->audio_pkt
, 0, sizeof(is
->audio_pkt
));
1187 packet_queue_init(&is
->audioq
);
1190 case CODEC_TYPE_VIDEO
:
1191 is
->video_stream
= stream_index
;
1192 is
->video_st
= ic
->streams
[stream_index
];
1194 is
->frame_last_delay
= 40e-3;
1195 is
->frame_timer
= (double)av_gettime() / 1000000.0;
1196 is
->video_current_pts_time
= av_gettime();
1198 packet_queue_init(&is
->videoq
);
1199 is
->video_tid
= SDL_CreateThread(video_thread
, is
);
1201 enc
->debug_mv
= debug_mv
;
1209 static void stream_component_close(VideoState
*is
, int stream_index
)
1211 AVFormatContext
*ic
= is
->ic
;
1212 AVCodecContext
*enc
;
1214 enc
= &ic
->streams
[stream_index
]->codec
;
1216 switch(enc
->codec_type
) {
1217 case CODEC_TYPE_AUDIO
:
1218 packet_queue_abort(&is
->audioq
);
1222 packet_queue_end(&is
->audioq
);
1224 case CODEC_TYPE_VIDEO
:
1225 packet_queue_abort(&is
->videoq
);
1227 /* note: we also signal this mutex to make sure we deblock the
1228 video thread in all cases */
1229 SDL_LockMutex(is
->pictq_mutex
);
1230 SDL_CondSignal(is
->pictq_cond
);
1231 SDL_UnlockMutex(is
->pictq_mutex
);
1233 SDL_WaitThread(is
->video_tid
, NULL
);
1235 packet_queue_end(&is
->videoq
);
1242 switch(enc
->codec_type
) {
1243 case CODEC_TYPE_AUDIO
:
1244 is
->audio_st
= NULL
;
1245 is
->audio_stream
= -1;
1247 case CODEC_TYPE_VIDEO
:
1248 is
->video_st
= NULL
;
1249 is
->video_stream
= -1;
1256 void dump_stream_info(AVFormatContext
*s
)
1259 fprintf(stderr
, "Track: %d\n", s
->track
);
1260 if (s
->title
[0] != '\0')
1261 fprintf(stderr
, "Title: %s\n", s
->title
);
1262 if (s
->author
[0] != '\0')
1263 fprintf(stderr
, "Author: %s\n", s
->author
);
1264 if (s
->album
[0] != '\0')
1265 fprintf(stderr
, "Album: %s\n", s
->album
);
1267 fprintf(stderr
, "Year: %d\n", s
->year
);
1268 if (s
->genre
[0] != '\0')
1269 fprintf(stderr
, "Genre: %s\n", s
->genre
);
1272 /* since we have only one decoding thread, we can use a global
1273 variable instead of a thread local variable */
1274 static VideoState
*global_video_state
;
1276 static int decode_interrupt_cb(void)
1278 return (global_video_state
&& global_video_state
->abort_request
);
1281 /* this thread gets the stream from the disk or the network */
1282 static int decode_thread(void *arg
)
1284 VideoState
*is
= arg
;
1285 AVFormatContext
*ic
;
1286 int err
, i
, ret
, video_index
, audio_index
, use_play
;
1287 AVPacket pkt1
, *pkt
= &pkt1
;
1288 AVFormatParameters params
, *ap
= ¶ms
;
1292 is
->video_stream
= -1;
1293 is
->audio_stream
= -1;
1295 global_video_state
= is
;
1296 url_set_interrupt_cb(decode_interrupt_cb
);
1298 memset(ap
, 0, sizeof(*ap
));
1299 ap
->image_format
= image_format
;
1300 ap
->initial_pause
= 1; /* we force a pause when starting an RTSP
1303 err
= av_open_input_file(&ic
, is
->filename
, is
->iformat
, 0, ap
);
1305 print_error(is
->filename
, err
);
1310 #ifdef CONFIG_NETWORK
1311 use_play
= (ic
->iformat
== &rtsp_demux
);
1316 err
= av_find_stream_info(ic
);
1318 fprintf(stderr
, "%s: could not find codec parameters\n", is
->filename
);
1324 /* if seeking requested, we execute it */
1325 if (start_time
!= AV_NOPTS_VALUE
) {
1328 timestamp
= start_time
;
1329 /* add the stream start time */
1330 if (ic
->start_time
!= AV_NOPTS_VALUE
)
1331 timestamp
+= ic
->start_time
;
1332 ret
= av_seek_frame(ic
, -1, timestamp
);
1334 fprintf(stderr
, "%s: could not seek to position %0.3f\n",
1335 is
->filename
, (double)timestamp
/ AV_TIME_BASE
);
1339 /* now we can begin to play (RTSP stream only) */
1343 err
= av_find_stream_info(ic
);
1345 fprintf(stderr
, "%s: could not find codec parameters\n", is
->filename
);
1351 for(i
= 0; i
< ic
->nb_streams
; i
++) {
1352 AVCodecContext
*enc
= &ic
->streams
[i
]->codec
;
1353 switch(enc
->codec_type
) {
1354 case CODEC_TYPE_AUDIO
:
1355 if (audio_index
< 0 && !audio_disable
)
1358 case CODEC_TYPE_VIDEO
:
1359 if (video_index
< 0 && !video_disable
)
1367 dump_format(ic
, 0, is
->filename
, 0);
1368 dump_stream_info(ic
);
1371 /* open the streams */
1372 if (audio_index
>= 0) {
1373 stream_component_open(is
, audio_index
);
1376 if (video_index
>= 0) {
1377 stream_component_open(is
, video_index
);
1379 if (!display_disable
)
1383 if (is
->video_stream
< 0 && is
->audio_stream
< 0) {
1384 fprintf(stderr
, "%s: could not open codecs\n", is
->filename
);
1390 if (is
->abort_request
)
1392 #ifdef CONFIG_NETWORK
1393 if (is
->paused
!= is
->last_paused
) {
1394 is
->last_paused
= is
->paused
;
1400 if (is
->paused
&& ic
->iformat
== &rtsp_demux
) {
1401 /* wait 10 ms to avoid trying to get another packet */
1408 /* XXX: must lock decoder threads */
1409 ret
= av_seek_frame(is
->ic
, -1, is
->seek_pos
);
1411 fprintf(stderr
, "%s: error while seeking\n", is
->ic
->filename
);
1413 if (is
->audio_stream
>= 0) {
1414 packet_queue_flush(&is
->audioq
);
1416 if (is
->video_stream
>= 0) {
1417 packet_queue_flush(&is
->videoq
);
1418 avcodec_flush_buffers(&ic
->streams
[video_index
]->codec
);
1424 /* if the queue are full, no need to read more */
1425 if (is
->audioq
.size
> MAX_AUDIOQ_SIZE
||
1426 is
->videoq
.size
> MAX_VIDEOQ_SIZE
) {
1431 ret
= av_read_frame(ic
, pkt
);
1435 if (pkt
->stream_index
== is
->audio_stream
) {
1436 packet_queue_put(&is
->audioq
, pkt
);
1437 } else if (pkt
->stream_index
== is
->video_stream
) {
1438 packet_queue_put(&is
->videoq
, pkt
);
1440 av_free_packet(pkt
);
1443 /* wait until the end */
1444 while (!is
->abort_request
) {
1450 /* disable interrupting */
1451 global_video_state
= NULL
;
1453 /* close each stream */
1454 if (is
->audio_stream
>= 0)
1455 stream_component_close(is
, is
->audio_stream
);
1456 if (is
->video_stream
>= 0)
1457 stream_component_close(is
, is
->video_stream
);
1459 av_close_input_file(is
->ic
);
1460 is
->ic
= NULL
; /* safety */
1462 url_set_interrupt_cb(NULL
);
1467 event
.type
= FF_QUIT_EVENT
;
1468 event
.user
.data1
= is
;
1469 SDL_PushEvent(&event
);
1474 static VideoState
*stream_open(const char *filename
, AVInputFormat
*iformat
)
1478 is
= av_mallocz(sizeof(VideoState
));
1481 pstrcpy(is
->filename
, sizeof(is
->filename
), filename
);
1482 is
->iformat
= iformat
;
1484 is
->width
= screen
->w
;
1485 is
->height
= screen
->h
;
1490 /* start video display */
1491 is
->pictq_mutex
= SDL_CreateMutex();
1492 is
->pictq_cond
= SDL_CreateCond();
1494 /* add the refresh timer to draw the picture */
1495 schedule_refresh(is
, 40);
1497 is
->av_sync_type
= av_sync_type
;
1498 is
->parse_tid
= SDL_CreateThread(decode_thread
, is
);
1499 if (!is
->parse_tid
) {
1506 static void stream_close(VideoState
*is
)
1510 /* XXX: use a special url_shutdown call to abort parse cleanly */
1511 is
->abort_request
= 1;
1512 SDL_WaitThread(is
->parse_tid
, NULL
);
1514 /* free all pictures */
1515 for(i
=0;i
<VIDEO_PICTURE_QUEUE_SIZE
; i
++) {
1518 SDL_FreeYUVOverlay(vp
->bmp
);
1522 SDL_DestroyMutex(is
->pictq_mutex
);
1523 SDL_DestroyCond(is
->pictq_cond
);
1526 void stream_cycle_channel(VideoState
*is
, int codec_type
)
1528 AVFormatContext
*ic
= is
->ic
;
1529 int start_index
, stream_index
;
1532 if (codec_type
== CODEC_TYPE_VIDEO
)
1533 start_index
= is
->video_stream
;
1535 start_index
= is
->audio_stream
;
1536 if (start_index
< 0)
1538 stream_index
= start_index
;
1540 if (++stream_index
>= is
->ic
->nb_streams
)
1542 if (stream_index
== start_index
)
1544 st
= ic
->streams
[stream_index
];
1545 if (st
->codec
.codec_type
== codec_type
) {
1546 /* check that parameters are OK */
1547 switch(codec_type
) {
1548 case CODEC_TYPE_AUDIO
:
1549 if (st
->codec
.sample_rate
!= 0 &&
1550 st
->codec
.channels
!= 0)
1553 case CODEC_TYPE_VIDEO
:
1561 stream_component_close(is
, start_index
);
1562 stream_component_open(is
, stream_index
);
1566 void toggle_full_screen(void)
1569 is_full_screen
= !is_full_screen
;
1570 if (!fs_screen_width
) {
1571 /* use default SDL method */
1572 SDL_WM_ToggleFullScreen(screen
);
1574 /* use the recorded resolution */
1575 flags
= SDL_HWSURFACE
|SDL_ASYNCBLIT
|SDL_HWACCEL
;
1576 if (is_full_screen
) {
1577 w
= fs_screen_width
;
1578 h
= fs_screen_height
;
1579 flags
|= SDL_FULLSCREEN
;
1583 flags
|= SDL_RESIZABLE
;
1585 screen
= SDL_SetVideoMode(w
, h
, 0, flags
);
1586 cur_stream
->width
= w
;
1587 cur_stream
->height
= h
;
1591 void toggle_pause(void)
1594 stream_pause(cur_stream
);
1598 void step_to_next_frame(void)
1601 if (cur_stream
->paused
)
1602 cur_stream
->paused
=0;
1603 cur_stream
->video_current_pts
= get_video_clock(cur_stream
);
1611 stream_close(cur_stream
);
1620 void toggle_audio_display(void)
1623 cur_stream
->show_audio
= !cur_stream
->show_audio
;
1627 /* handle an event sent by the GUI */
1628 void event_loop(void)
1631 double incr
, pos
, frac
;
1634 SDL_WaitEvent(&event
);
1635 switch(event
.type
) {
1637 switch(event
.key
.keysym
.sym
) {
1643 toggle_full_screen();
1649 case SDLK_s
: //S: Step to next frame
1650 step_to_next_frame();
1654 stream_cycle_channel(cur_stream
, CODEC_TYPE_AUDIO
);
1658 stream_cycle_channel(cur_stream
, CODEC_TYPE_VIDEO
);
1661 toggle_audio_display();
1676 pos
= get_master_clock(cur_stream
);
1678 stream_seek(cur_stream
, (int64_t)(pos
* AV_TIME_BASE
));
1685 case SDL_MOUSEBUTTONDOWN
:
1688 int tns
, thh
, tmm
, tss
;
1689 tns
= cur_stream
->ic
->duration
/1000000LL;
1691 tmm
= (tns
%3600)/60;
1693 frac
= (double)event
.button
.x
/(double)cur_stream
->width
;
1698 fprintf(stderr
, "Seek to %2.0f%% (%2d:%02d:%02d) of total duration (%2d:%02d:%02d) \n", frac
*100,
1699 hh
, mm
, ss
, thh
, tmm
, tss
);
1700 stream_seek(cur_stream
, (int64_t)(cur_stream
->ic
->start_time
+frac
*cur_stream
->ic
->duration
));
1703 case SDL_VIDEORESIZE
:
1705 screen
= SDL_SetVideoMode(event
.resize
.w
, event
.resize
.h
, 0,
1706 SDL_HWSURFACE
|SDL_RESIZABLE
|SDL_ASYNCBLIT
|SDL_HWACCEL
);
1707 cur_stream
->width
= event
.resize
.w
;
1708 cur_stream
->height
= event
.resize
.h
;
1715 case FF_ALLOC_EVENT
:
1716 alloc_picture(event
.user
.data1
);
1718 case FF_REFRESH_EVENT
:
1719 video_refresh_timer(event
.user
.data1
);
1727 void opt_width(const char *arg
)
1729 screen_width
= atoi(arg
);
1732 void opt_height(const char *arg
)
1734 screen_height
= atoi(arg
);
1737 static void opt_format(const char *arg
)
1739 file_iformat
= av_find_input_format(arg
);
1740 if (!file_iformat
) {
1741 fprintf(stderr
, "Unknown input format: %s\n", arg
);
1746 static void opt_image_format(const char *arg
)
1750 for(f
= first_image_format
; f
!= NULL
; f
= f
->next
) {
1751 if (!strcmp(arg
, f
->name
))
1755 fprintf(stderr
, "Unknown image format: '%s'\n", arg
);
1761 #ifdef CONFIG_NETWORK
1762 void opt_rtp_tcp(void)
1764 /* only tcp protocol */
1765 rtsp_default_protocols
= (1 << RTSP_PROTOCOL_RTP_TCP
);
1769 void opt_sync(const char *arg
)
1771 if (!strcmp(arg
, "audio"))
1772 av_sync_type
= AV_SYNC_AUDIO_MASTER
;
1773 else if (!strcmp(arg
, "video"))
1774 av_sync_type
= AV_SYNC_VIDEO_MASTER
;
1775 else if (!strcmp(arg
, "ext"))
1776 av_sync_type
= AV_SYNC_EXTERNAL_CLOCK
;
1781 void opt_seek(const char *arg
)
1783 start_time
= parse_date(arg
, 1);
1786 static void opt_debug(const char *arg
)
1791 static void opt_vismv(const char *arg
)
1793 debug_mv
= atoi(arg
);
1796 const OptionDef options
[] = {
1797 { "h", 0, {(void*)show_help
}, "show help" },
1798 { "x", HAS_ARG
, {(void*)opt_width
}, "force displayed width", "width" },
1799 { "y", HAS_ARG
, {(void*)opt_height
}, "force displayed height", "height" },
1801 /* disabled as SDL/X11 does not support it correctly on application launch */
1802 { "fs", OPT_BOOL
, {(void*)&is_full_screen
}, "force full screen" },
1804 { "an", OPT_BOOL
, {(void*)&audio_disable
}, "disable audio" },
1805 { "vn", OPT_BOOL
, {(void*)&video_disable
}, "disable video" },
1806 { "ss", HAS_ARG
, {(void*)&opt_seek
}, "seek to a given position in seconds", "pos" },
1807 { "nodisp", OPT_BOOL
, {(void*)&display_disable
}, "disable graphical display" },
1808 { "f", HAS_ARG
, {(void*)opt_format
}, "force format", "fmt" },
1809 { "img", HAS_ARG
, {(void*)opt_image_format
}, "force image format", "img_fmt" },
1810 { "stats", OPT_BOOL
| OPT_EXPERT
, {(void*)&show_status
}, "show status", "" },
1811 { "debug", HAS_ARG
| OPT_EXPERT
, {(void*)opt_debug
}, "print specific debug info", "" },
1812 { "vismv", HAS_ARG
| OPT_EXPERT
, {(void*)opt_vismv
}, "visualize motion vectors", "" },
1813 #ifdef CONFIG_NETWORK
1814 { "rtp_tcp", OPT_EXPERT
, {(void*)&opt_rtp_tcp
}, "force RTP/TCP protocol usage", "" },
1816 { "sync", HAS_ARG
| OPT_EXPERT
, {(void*)&opt_sync
}, "set audio-video sync. type (type=audio/video/ext)", "type" },
1820 void show_help(void)
1822 printf("ffplay version " FFMPEG_VERSION
", Copyright (c) 2003 Fabrice Bellard\n"
1823 "usage: ffplay [options] input_file\n"
1824 "Simple media player\n");
1826 show_help_options(options
, "Main options:\n",
1828 show_help_options(options
, "\nAdvanced options:\n",
1829 OPT_EXPERT
, OPT_EXPERT
);
1830 printf("\nWhile playing:\n"
1832 "f toggle full screen\n"
1834 "a cycle audio channel\n"
1835 "v cycle video channel\n"
1836 "w show audio waves\n"
1837 "left/right seek backward/forward 10 seconds\n"
1838 "down/up seek backward/forward 1 minute\n"
1839 "mouse click seek to percentage in file corresponding to fraction of width\n"
1844 void parse_arg_file(const char *filename
)
1846 if (!strcmp(filename
, "-"))
1848 input_filename
= filename
;
1851 /* Called from the main */
1852 int main(int argc
, char **argv
)
1856 /* register all codecs, demux and protocols */
1859 parse_options(argc
, argv
, options
);
1861 if (!input_filename
)
1864 if (display_disable
) {
1867 flags
= SDL_INIT_VIDEO
| SDL_INIT_AUDIO
| SDL_INIT_TIMER
;
1868 #ifndef CONFIG_WIN32
1869 flags
|= SDL_INIT_EVENTTHREAD
; /* Not supported on win32 */
1871 if (SDL_Init (flags
)) {
1872 fprintf(stderr
, "Could not initialize SDL - %s\n", SDL_GetError());
1876 if (!display_disable
) {
1878 /* save the screen resolution... SDL should allow full screen
1879 by resizing the window */
1882 dpy
= XOpenDisplay(NULL
);
1884 fs_screen_width
= DisplayWidth(dpy
, DefaultScreen(dpy
));
1885 fs_screen_height
= DisplayHeight(dpy
, DefaultScreen(dpy
));
1890 flags
= SDL_HWSURFACE
|SDL_ASYNCBLIT
|SDL_HWACCEL
;
1891 if (is_full_screen
&& fs_screen_width
) {
1892 w
= fs_screen_width
;
1893 h
= fs_screen_height
;
1894 flags
|= SDL_FULLSCREEN
;
1898 flags
|= SDL_RESIZABLE
;
1900 screen
= SDL_SetVideoMode(w
, h
, 0, flags
);
1902 fprintf(stderr
, "SDL: could not set video mode - exiting\n");
1905 SDL_WM_SetCaption("FFplay", "FFplay");
1908 SDL_EventState(SDL_ACTIVEEVENT
, SDL_IGNORE
);
1909 SDL_EventState(SDL_MOUSEMOTION
, SDL_IGNORE
);
1910 SDL_EventState(SDL_SYSWMEVENT
, SDL_IGNORE
);
1911 SDL_EventState(SDL_USEREVENT
, SDL_IGNORE
);
1913 cur_stream
= stream_open(input_filename
, file_iformat
);