2 * FFplay : Simple Media Player based on the ffmpeg libraries
3 * Copyright (c) 2003 Fabrice Bellard
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 #define HAVE_AV_CONFIG_H
29 #include <SDL_thread.h>
32 #undef main /* We don't want SDL to override our main() */
45 DosGetInfoBlocks(&tib
, &pib
);
47 // Change flag from VIO to PM:
48 if (pib
->pib_ultype
==2) pib
->pib_ultype
= 3;
54 #define MAX_VIDEOQ_SIZE (5 * 256 * 1024)
55 #define MAX_AUDIOQ_SIZE (5 * 16 * 1024)
56 #define MAX_SUBTITLEQ_SIZE (5 * 16 * 1024)
58 /* SDL audio buffer size, in samples. Should be small to have precise
59 A/V sync as SDL does not have hardware buffer fullness info. */
60 #define SDL_AUDIO_BUFFER_SIZE 1024
62 /* no AV sync correction is done if below the AV sync threshold */
63 #define AV_SYNC_THRESHOLD 0.01
64 /* no AV correction is done if too big error */
65 #define AV_NOSYNC_THRESHOLD 10.0
67 /* maximum audio speed change to get correct sync */
68 #define SAMPLE_CORRECTION_PERCENT_MAX 10
70 /* we use about AUDIO_DIFF_AVG_NB A-V differences to make the average */
71 #define AUDIO_DIFF_AVG_NB 20
73 /* NOTE: the size must be big enough to compensate the hardware audio buffersize size */
74 #define SAMPLE_ARRAY_SIZE (2*65536)
76 static int sws_flags
= SWS_BICUBIC
;
78 typedef struct PacketQueue
{
79 AVPacketList
*first_pkt
, *last_pkt
;
87 #define VIDEO_PICTURE_QUEUE_SIZE 1
88 #define SUBPICTURE_QUEUE_SIZE 4
90 typedef struct VideoPicture
{
91 double pts
; ///<presentation time stamp for this picture
93 int width
, height
; /* source height & width */
97 typedef struct SubPicture
{
98 double pts
; /* presentation time stamp for this picture */
103 AV_SYNC_AUDIO_MASTER
, /* default choice */
104 AV_SYNC_VIDEO_MASTER
,
105 AV_SYNC_EXTERNAL_CLOCK
, /* synchronize to an external clock */
108 typedef struct VideoState
{
109 SDL_Thread
*parse_tid
;
110 SDL_Thread
*video_tid
;
111 AVInputFormat
*iformat
;
120 int dtg_active_format
;
125 double external_clock
; /* external clock base */
126 int64_t external_clock_time
;
129 double audio_diff_cum
; /* used for AV difference average computation */
130 double audio_diff_avg_coef
;
131 double audio_diff_threshold
;
132 int audio_diff_avg_count
;
135 int audio_hw_buf_size
;
136 /* samples output by the codec. we reserve more space for avsync
138 DECLARE_ALIGNED(16,uint8_t,audio_buf
[(AVCODEC_MAX_AUDIO_FRAME_SIZE
* 3) / 2]);
139 unsigned int audio_buf_size
; /* in bytes */
140 int audio_buf_index
; /* in bytes */
142 uint8_t *audio_pkt_data
;
145 int show_audio
; /* if true, display audio samples */
146 int16_t sample_array
[SAMPLE_ARRAY_SIZE
];
147 int sample_array_index
;
150 SDL_Thread
*subtitle_tid
;
152 int subtitle_stream_changed
;
153 AVStream
*subtitle_st
;
154 PacketQueue subtitleq
;
155 SubPicture subpq
[SUBPICTURE_QUEUE_SIZE
];
156 int subpq_size
, subpq_rindex
, subpq_windex
;
157 SDL_mutex
*subpq_mutex
;
158 SDL_cond
*subpq_cond
;
161 double frame_last_pts
;
162 double frame_last_delay
;
163 double video_clock
; ///<pts of last decoded frame / predicted pts of next decoded frame
167 double video_current_pts
; ///<current displayed pts (different from video_clock if frame fifos are used)
168 int64_t video_current_pts_time
; ///<time (av_gettime) at which we updated video_current_pts - used to have running video pts
169 VideoPicture pictq
[VIDEO_PICTURE_QUEUE_SIZE
];
170 int pictq_size
, pictq_rindex
, pictq_windex
;
171 SDL_mutex
*pictq_mutex
;
172 SDL_cond
*pictq_cond
;
174 // QETimer *video_timer;
176 int width
, height
, xleft
, ytop
;
179 void show_help(void);
180 static int audio_write_get_buf_size(VideoState
*is
);
182 /* options specified by the user */
183 static AVInputFormat
*file_iformat
;
184 static const char *input_filename
;
185 static int fs_screen_width
;
186 static int fs_screen_height
;
187 static int screen_width
= 0;
188 static int screen_height
= 0;
189 static int audio_disable
;
190 static int video_disable
;
191 static int wanted_audio_stream
= 0;
192 static int seek_by_bytes
;
193 static int display_disable
;
194 static int show_status
;
195 static int av_sync_type
= AV_SYNC_AUDIO_MASTER
;
196 static int64_t start_time
= AV_NOPTS_VALUE
;
197 static int debug
= 0;
198 static int debug_mv
= 0;
200 static int thread_count
= 1;
201 static int workaround_bugs
= 1;
203 static int genpts
= 0;
204 static int lowres
= 0;
205 static int idct
= FF_IDCT_AUTO
;
206 static enum AVDiscard skip_frame
= AVDISCARD_DEFAULT
;
207 static enum AVDiscard skip_idct
= AVDISCARD_DEFAULT
;
208 static enum AVDiscard skip_loop_filter
= AVDISCARD_DEFAULT
;
209 static int error_resilience
= FF_ER_CAREFUL
;
210 static int error_concealment
= 3;
212 /* current context */
213 static int is_full_screen
;
214 static VideoState
*cur_stream
;
215 static int64_t audio_callback_time
;
219 #define FF_ALLOC_EVENT (SDL_USEREVENT)
220 #define FF_REFRESH_EVENT (SDL_USEREVENT + 1)
221 #define FF_QUIT_EVENT (SDL_USEREVENT + 2)
225 /* packet queue handling */
226 static void packet_queue_init(PacketQueue
*q
)
228 memset(q
, 0, sizeof(PacketQueue
));
229 q
->mutex
= SDL_CreateMutex();
230 q
->cond
= SDL_CreateCond();
233 static void packet_queue_flush(PacketQueue
*q
)
235 AVPacketList
*pkt
, *pkt1
;
237 SDL_LockMutex(q
->mutex
);
238 for(pkt
= q
->first_pkt
; pkt
!= NULL
; pkt
= pkt1
) {
240 av_free_packet(&pkt
->pkt
);
247 SDL_UnlockMutex(q
->mutex
);
250 static void packet_queue_end(PacketQueue
*q
)
252 packet_queue_flush(q
);
253 SDL_DestroyMutex(q
->mutex
);
254 SDL_DestroyCond(q
->cond
);
257 static int packet_queue_put(PacketQueue
*q
, AVPacket
*pkt
)
261 /* duplicate the packet */
262 if (pkt
!=&flush_pkt
&& av_dup_packet(pkt
) < 0)
265 pkt1
= av_malloc(sizeof(AVPacketList
));
272 SDL_LockMutex(q
->mutex
);
278 q
->last_pkt
->next
= pkt1
;
281 q
->size
+= pkt1
->pkt
.size
;
282 /* XXX: should duplicate packet data in DV case */
283 SDL_CondSignal(q
->cond
);
285 SDL_UnlockMutex(q
->mutex
);
289 static void packet_queue_abort(PacketQueue
*q
)
291 SDL_LockMutex(q
->mutex
);
293 q
->abort_request
= 1;
295 SDL_CondSignal(q
->cond
);
297 SDL_UnlockMutex(q
->mutex
);
300 /* return < 0 if aborted, 0 if no packet and > 0 if packet. */
301 static int packet_queue_get(PacketQueue
*q
, AVPacket
*pkt
, int block
)
306 SDL_LockMutex(q
->mutex
);
309 if (q
->abort_request
) {
316 q
->first_pkt
= pkt1
->next
;
320 q
->size
-= pkt1
->pkt
.size
;
329 SDL_CondWait(q
->cond
, q
->mutex
);
332 SDL_UnlockMutex(q
->mutex
);
336 static inline void fill_rectangle(SDL_Surface
*screen
,
337 int x
, int y
, int w
, int h
, int color
)
344 SDL_FillRect(screen
, &rect
, color
);
348 /* draw only the border of a rectangle */
349 void fill_border(VideoState
*s
, int x
, int y
, int w
, int h
, int color
)
353 /* fill the background */
357 w2
= s
->width
- (x
+ w
);
363 h2
= s
->height
- (y
+ h
);
366 fill_rectangle(screen
,
370 fill_rectangle(screen
,
371 s
->xleft
+ s
->width
- w2
, s
->ytop
,
374 fill_rectangle(screen
,
375 s
->xleft
+ w1
, s
->ytop
,
376 s
->width
- w1
- w2
, h1
,
378 fill_rectangle(screen
,
379 s
->xleft
+ w1
, s
->ytop
+ s
->height
- h2
,
380 s
->width
- w1
- w2
, h2
,
388 #define ONE_HALF (1 << (SCALEBITS - 1))
389 #define FIX(x) ((int) ((x) * (1<<SCALEBITS) + 0.5))
391 #define RGB_TO_Y_CCIR(r, g, b) \
392 ((FIX(0.29900*219.0/255.0) * (r) + FIX(0.58700*219.0/255.0) * (g) + \
393 FIX(0.11400*219.0/255.0) * (b) + (ONE_HALF + (16 << SCALEBITS))) >> SCALEBITS)
395 #define RGB_TO_U_CCIR(r1, g1, b1, shift)\
396 (((- FIX(0.16874*224.0/255.0) * r1 - FIX(0.33126*224.0/255.0) * g1 + \
397 FIX(0.50000*224.0/255.0) * b1 + (ONE_HALF << shift) - 1) >> (SCALEBITS + shift)) + 128)
399 #define RGB_TO_V_CCIR(r1, g1, b1, shift)\
400 (((FIX(0.50000*224.0/255.0) * r1 - FIX(0.41869*224.0/255.0) * g1 - \
401 FIX(0.08131*224.0/255.0) * b1 + (ONE_HALF << shift) - 1) >> (SCALEBITS + shift)) + 128)
403 #define ALPHA_BLEND(a, oldp, newp, s)\
404 ((((oldp << s) * (255 - (a))) + (newp * (a))) / (255 << s))
406 #define RGBA_IN(r, g, b, a, s)\
408 unsigned int v = ((const uint32_t *)(s))[0];\
409 a = (v >> 24) & 0xff;\
410 r = (v >> 16) & 0xff;\
411 g = (v >> 8) & 0xff;\
415 #define YUVA_IN(y, u, v, a, s, pal)\
417 unsigned int val = ((const uint32_t *)(pal))[*(const uint8_t*)s];\
418 a = (val >> 24) & 0xff;\
419 y = (val >> 16) & 0xff;\
420 u = (val >> 8) & 0xff;\
424 #define YUVA_OUT(d, y, u, v, a)\
426 ((uint32_t *)(d))[0] = (a << 24) | (y << 16) | (u << 8) | v;\
432 static void blend_subrect(AVPicture
*dst
, const AVSubtitleRect
*rect
)
434 int wrap
, wrap3
, width2
, skip2
;
435 int y
, u
, v
, a
, u1
, v1
, a1
, w
, h
;
436 uint8_t *lum
, *cb
, *cr
;
440 lum
= dst
->data
[0] + rect
->y
* dst
->linesize
[0];
441 cb
= dst
->data
[1] + (rect
->y
>> 1) * dst
->linesize
[1];
442 cr
= dst
->data
[2] + (rect
->y
>> 1) * dst
->linesize
[2];
444 width2
= (rect
->w
+ 1) >> 1;
445 skip2
= rect
->x
>> 1;
446 wrap
= dst
->linesize
[0];
447 wrap3
= rect
->linesize
;
449 pal
= rect
->rgba_palette
; /* Now in YCrCb! */
457 YUVA_IN(y
, u
, v
, a
, p
, pal
);
458 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
459 cb
[0] = ALPHA_BLEND(a
>> 2, cb
[0], u
, 0);
460 cr
[0] = ALPHA_BLEND(a
>> 2, cr
[0], v
, 0);
466 for(w
= rect
->w
- (rect
->x
& 1); w
>= 2; w
-= 2) {
467 YUVA_IN(y
, u
, v
, a
, p
, pal
);
471 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
473 YUVA_IN(y
, u
, v
, a
, p
+ BPP
, pal
);
477 lum
[1] = ALPHA_BLEND(a
, lum
[1], y
, 0);
478 cb
[0] = ALPHA_BLEND(a1
>> 2, cb
[0], u1
, 1);
479 cr
[0] = ALPHA_BLEND(a1
>> 2, cr
[0], v1
, 1);
486 YUVA_IN(y
, u
, v
, a
, p
, pal
);
487 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
488 cb
[0] = ALPHA_BLEND(a
>> 2, cb
[0], u
, 0);
489 cr
[0] = ALPHA_BLEND(a
>> 2, cr
[0], v
, 0);
491 p
+= wrap3
+ (wrap3
- rect
->w
* BPP
);
492 lum
+= wrap
+ (wrap
- rect
->w
- rect
->x
);
493 cb
+= dst
->linesize
[1] - width2
- skip2
;
494 cr
+= dst
->linesize
[2] - width2
- skip2
;
496 for(h
= rect
->h
- (rect
->y
& 1); h
>= 2; h
-= 2) {
502 YUVA_IN(y
, u
, v
, a
, p
, pal
);
506 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
509 YUVA_IN(y
, u
, v
, a
, p
, pal
);
513 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
514 cb
[0] = ALPHA_BLEND(a1
>> 2, cb
[0], u1
, 1);
515 cr
[0] = ALPHA_BLEND(a1
>> 2, cr
[0], v1
, 1);
521 for(w
= rect
->w
- (rect
->x
& 1); w
>= 2; w
-= 2) {
522 YUVA_IN(y
, u
, v
, a
, p
, pal
);
526 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
528 YUVA_IN(y
, u
, v
, a
, p
, pal
);
532 lum
[1] = ALPHA_BLEND(a
, lum
[1], y
, 0);
536 YUVA_IN(y
, u
, v
, a
, p
, pal
);
540 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
542 YUVA_IN(y
, u
, v
, a
, p
, pal
);
546 lum
[1] = ALPHA_BLEND(a
, lum
[1], y
, 0);
548 cb
[0] = ALPHA_BLEND(a1
>> 2, cb
[0], u1
, 2);
549 cr
[0] = ALPHA_BLEND(a1
>> 2, cr
[0], v1
, 2);
553 p
+= -wrap3
+ 2 * BPP
;
557 YUVA_IN(y
, u
, v
, a
, p
, pal
);
561 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
564 YUVA_IN(y
, u
, v
, a
, p
, pal
);
568 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
569 cb
[0] = ALPHA_BLEND(a1
>> 2, cb
[0], u1
, 1);
570 cr
[0] = ALPHA_BLEND(a1
>> 2, cr
[0], v1
, 1);
576 p
+= wrap3
+ (wrap3
- rect
->w
* BPP
);
577 lum
+= wrap
+ (wrap
- rect
->w
- rect
->x
);
578 cb
+= dst
->linesize
[1] - width2
- skip2
;
579 cr
+= dst
->linesize
[2] - width2
- skip2
;
581 /* handle odd height */
588 YUVA_IN(y
, u
, v
, a
, p
, pal
);
589 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
590 cb
[0] = ALPHA_BLEND(a
>> 2, cb
[0], u
, 0);
591 cr
[0] = ALPHA_BLEND(a
>> 2, cr
[0], v
, 0);
597 for(w
= rect
->w
- (rect
->x
& 1); w
>= 2; w
-= 2) {
598 YUVA_IN(y
, u
, v
, a
, p
, pal
);
602 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
604 YUVA_IN(y
, u
, v
, a
, p
+ BPP
, pal
);
608 lum
[1] = ALPHA_BLEND(a
, lum
[1], y
, 0);
609 cb
[0] = ALPHA_BLEND(a1
>> 2, cb
[0], u
, 1);
610 cr
[0] = ALPHA_BLEND(a1
>> 2, cr
[0], v
, 1);
617 YUVA_IN(y
, u
, v
, a
, p
, pal
);
618 lum
[0] = ALPHA_BLEND(a
, lum
[0], y
, 0);
619 cb
[0] = ALPHA_BLEND(a
>> 2, cb
[0], u
, 0);
620 cr
[0] = ALPHA_BLEND(a
>> 2, cr
[0], v
, 0);
625 static void free_subpicture(SubPicture
*sp
)
629 for (i
= 0; i
< sp
->sub
.num_rects
; i
++)
631 av_free(sp
->sub
.rects
[i
].bitmap
);
632 av_free(sp
->sub
.rects
[i
].rgba_palette
);
635 av_free(sp
->sub
.rects
);
637 memset(&sp
->sub
, 0, sizeof(AVSubtitle
));
640 static void video_image_display(VideoState
*is
)
646 int width
, height
, x
, y
;
650 vp
= &is
->pictq
[is
->pictq_rindex
];
652 /* XXX: use variable in the frame */
653 if (is
->video_st
->codec
->sample_aspect_ratio
.num
== 0)
656 aspect_ratio
= av_q2d(is
->video_st
->codec
->sample_aspect_ratio
)
657 * is
->video_st
->codec
->width
/ is
->video_st
->codec
->height
;;
658 if (aspect_ratio
<= 0.0)
659 aspect_ratio
= (float)is
->video_st
->codec
->width
/
660 (float)is
->video_st
->codec
->height
;
661 /* if an active format is indicated, then it overrides the
664 if (is
->video_st
->codec
->dtg_active_format
!= is
->dtg_active_format
) {
665 is
->dtg_active_format
= is
->video_st
->codec
->dtg_active_format
;
666 printf("dtg_active_format=%d\n", is
->dtg_active_format
);
670 switch(is
->video_st
->codec
->dtg_active_format
) {
671 case FF_DTG_AFD_SAME
:
676 aspect_ratio
= 4.0 / 3.0;
678 case FF_DTG_AFD_16_9
:
679 aspect_ratio
= 16.0 / 9.0;
681 case FF_DTG_AFD_14_9
:
682 aspect_ratio
= 14.0 / 9.0;
684 case FF_DTG_AFD_4_3_SP_14_9
:
685 aspect_ratio
= 14.0 / 9.0;
687 case FF_DTG_AFD_16_9_SP_14_9
:
688 aspect_ratio
= 14.0 / 9.0;
690 case FF_DTG_AFD_SP_4_3
:
691 aspect_ratio
= 4.0 / 3.0;
698 if (is
->subpq_size
> 0)
700 sp
= &is
->subpq
[is
->subpq_rindex
];
702 if (vp
->pts
>= sp
->pts
+ ((float) sp
->sub
.start_display_time
/ 1000))
704 SDL_LockYUVOverlay (vp
->bmp
);
706 pict
.data
[0] = vp
->bmp
->pixels
[0];
707 pict
.data
[1] = vp
->bmp
->pixels
[2];
708 pict
.data
[2] = vp
->bmp
->pixels
[1];
710 pict
.linesize
[0] = vp
->bmp
->pitches
[0];
711 pict
.linesize
[1] = vp
->bmp
->pitches
[2];
712 pict
.linesize
[2] = vp
->bmp
->pitches
[1];
714 for (i
= 0; i
< sp
->sub
.num_rects
; i
++)
715 blend_subrect(&pict
, &sp
->sub
.rects
[i
]);
717 SDL_UnlockYUVOverlay (vp
->bmp
);
723 /* XXX: we suppose the screen has a 1.0 pixel ratio */
725 width
= ((int)rint(height
* aspect_ratio
)) & -3;
726 if (width
> is
->width
) {
728 height
= ((int)rint(width
/ aspect_ratio
)) & -3;
730 x
= (is
->width
- width
) / 2;
731 y
= (is
->height
- height
) / 2;
732 if (!is
->no_background
) {
733 /* fill the background */
734 // fill_border(is, x, y, width, height, QERGB(0x00, 0x00, 0x00));
736 is
->no_background
= 0;
738 rect
.x
= is
->xleft
+ x
;
739 rect
.y
= is
->xleft
+ y
;
742 SDL_DisplayYUVOverlay(vp
->bmp
, &rect
);
745 fill_rectangle(screen
,
746 is
->xleft
, is
->ytop
, is
->width
, is
->height
,
747 QERGB(0x00, 0x00, 0x00));
752 static inline int compute_mod(int a
, int b
)
761 static void video_audio_display(VideoState
*s
)
763 int i
, i_start
, x
, y1
, y
, ys
, delay
, n
, nb_display_channels
;
764 int ch
, channels
, h
, h2
, bgcolor
, fgcolor
;
767 /* compute display index : center on currently output samples */
768 channels
= s
->audio_st
->codec
->channels
;
769 nb_display_channels
= channels
;
772 delay
= audio_write_get_buf_size(s
);
775 /* to be more precise, we take into account the time spent since
776 the last buffer computation */
777 if (audio_callback_time
) {
778 time_diff
= av_gettime() - audio_callback_time
;
779 delay
+= (time_diff
* s
->audio_st
->codec
->sample_rate
) / 1000000;
782 delay
-= s
->width
/ 2;
783 if (delay
< s
->width
)
786 i_start
= x
= compute_mod(s
->sample_array_index
- delay
* channels
, SAMPLE_ARRAY_SIZE
);
789 for(i
=0; i
<1000; i
+=channels
){
790 int idx
= (SAMPLE_ARRAY_SIZE
+ x
- i
) % SAMPLE_ARRAY_SIZE
;
791 int a
= s
->sample_array
[idx
];
792 int b
= s
->sample_array
[(idx
+ 4*channels
)%SAMPLE_ARRAY_SIZE
];
793 int c
= s
->sample_array
[(idx
+ 5*channels
)%SAMPLE_ARRAY_SIZE
];
794 int d
= s
->sample_array
[(idx
+ 9*channels
)%SAMPLE_ARRAY_SIZE
];
796 if(h
<score
&& (b
^c
)<0){
802 s
->last_i_start
= i_start
;
804 i_start
= s
->last_i_start
;
807 bgcolor
= SDL_MapRGB(screen
->format
, 0x00, 0x00, 0x00);
808 fill_rectangle(screen
,
809 s
->xleft
, s
->ytop
, s
->width
, s
->height
,
812 fgcolor
= SDL_MapRGB(screen
->format
, 0xff, 0xff, 0xff);
814 /* total height for one channel */
815 h
= s
->height
/ nb_display_channels
;
816 /* graph height / 2 */
818 for(ch
= 0;ch
< nb_display_channels
; ch
++) {
820 y1
= s
->ytop
+ ch
* h
+ (h
/ 2); /* position of center line */
821 for(x
= 0; x
< s
->width
; x
++) {
822 y
= (s
->sample_array
[i
] * h2
) >> 15;
829 fill_rectangle(screen
,
830 s
->xleft
+ x
, ys
, 1, y
,
833 if (i
>= SAMPLE_ARRAY_SIZE
)
834 i
-= SAMPLE_ARRAY_SIZE
;
838 fgcolor
= SDL_MapRGB(screen
->format
, 0x00, 0x00, 0xff);
840 for(ch
= 1;ch
< nb_display_channels
; ch
++) {
841 y
= s
->ytop
+ ch
* h
;
842 fill_rectangle(screen
,
843 s
->xleft
, y
, s
->width
, 1,
846 SDL_UpdateRect(screen
, s
->xleft
, s
->ytop
, s
->width
, s
->height
);
849 static int video_open(VideoState
*is
){
850 int flags
= SDL_HWSURFACE
|SDL_ASYNCBLIT
|SDL_HWACCEL
;
853 if(is_full_screen
) flags
|= SDL_FULLSCREEN
;
854 else flags
|= SDL_RESIZABLE
;
856 if (is_full_screen
&& fs_screen_width
) {
858 h
= fs_screen_height
;
859 } else if(!is_full_screen
&& screen_width
){
862 }else if (is
->video_st
&& is
->video_st
->codec
->width
){
863 w
= is
->video_st
->codec
->width
;
864 h
= is
->video_st
->codec
->height
;
869 #ifndef CONFIG_DARWIN
870 screen
= SDL_SetVideoMode(w
, h
, 0, flags
);
872 /* setting bits_per_pixel = 0 or 32 causes blank video on OS X */
873 screen
= SDL_SetVideoMode(w
, h
, 24, flags
);
876 fprintf(stderr
, "SDL: could not set video mode - exiting\n");
879 SDL_WM_SetCaption("FFplay", "FFplay");
881 is
->width
= screen
->w
;
882 is
->height
= screen
->h
;
887 /* display the current picture, if any */
888 static void video_display(VideoState
*is
)
891 video_open(cur_stream
);
892 if (is
->audio_st
&& is
->show_audio
)
893 video_audio_display(is
);
894 else if (is
->video_st
)
895 video_image_display(is
);
898 static Uint32
sdl_refresh_timer_cb(Uint32 interval
, void *opaque
)
901 event
.type
= FF_REFRESH_EVENT
;
902 event
.user
.data1
= opaque
;
903 SDL_PushEvent(&event
);
904 return 0; /* 0 means stop timer */
907 /* schedule a video refresh in 'delay' ms */
908 static void schedule_refresh(VideoState
*is
, int delay
)
910 SDL_AddTimer(delay
, sdl_refresh_timer_cb
, is
);
913 /* get the current audio clock value */
914 static double get_audio_clock(VideoState
*is
)
917 int hw_buf_size
, bytes_per_sec
;
918 pts
= is
->audio_clock
;
919 hw_buf_size
= audio_write_get_buf_size(is
);
922 bytes_per_sec
= is
->audio_st
->codec
->sample_rate
*
923 2 * is
->audio_st
->codec
->channels
;
926 pts
-= (double)hw_buf_size
/ bytes_per_sec
;
930 /* get the current video clock value */
931 static double get_video_clock(VideoState
*is
)
937 delta
= (av_gettime() - is
->video_current_pts_time
) / 1000000.0;
939 return is
->video_current_pts
+ delta
;
942 /* get the current external clock value */
943 static double get_external_clock(VideoState
*is
)
947 return is
->external_clock
+ ((ti
- is
->external_clock_time
) * 1e-6);
950 /* get the current master clock value */
951 static double get_master_clock(VideoState
*is
)
955 if (is
->av_sync_type
== AV_SYNC_VIDEO_MASTER
) {
957 val
= get_video_clock(is
);
959 val
= get_audio_clock(is
);
960 } else if (is
->av_sync_type
== AV_SYNC_AUDIO_MASTER
) {
962 val
= get_audio_clock(is
);
964 val
= get_video_clock(is
);
966 val
= get_external_clock(is
);
971 /* seek in the stream */
972 static void stream_seek(VideoState
*is
, int64_t pos
, int rel
)
976 is
->seek_flags
= rel
< 0 ? AVSEEK_FLAG_BACKWARD
: 0;
978 is
->seek_flags
|= AVSEEK_FLAG_BYTE
;
983 /* pause or resume the video */
984 static void stream_pause(VideoState
*is
)
986 is
->paused
= !is
->paused
;
988 is
->video_current_pts
= get_video_clock(is
);
989 is
->frame_timer
+= (av_gettime() - is
->video_current_pts_time
) / 1000000.0;
993 /* called to display each frame */
994 static void video_refresh_timer(void *opaque
)
996 VideoState
*is
= opaque
;
998 double actual_delay
, delay
, sync_threshold
, ref_clock
, diff
;
1000 SubPicture
*sp
, *sp2
;
1003 if (is
->pictq_size
== 0) {
1004 /* if no picture, need to wait */
1005 schedule_refresh(is
, 1);
1007 /* dequeue the picture */
1008 vp
= &is
->pictq
[is
->pictq_rindex
];
1010 /* update current video pts */
1011 is
->video_current_pts
= vp
->pts
;
1012 is
->video_current_pts_time
= av_gettime();
1014 /* compute nominal delay */
1015 delay
= vp
->pts
- is
->frame_last_pts
;
1016 if (delay
<= 0 || delay
>= 1.0) {
1017 /* if incorrect delay, use previous one */
1018 delay
= is
->frame_last_delay
;
1020 is
->frame_last_delay
= delay
;
1021 is
->frame_last_pts
= vp
->pts
;
1023 /* update delay to follow master synchronisation source */
1024 if (((is
->av_sync_type
== AV_SYNC_AUDIO_MASTER
&& is
->audio_st
) ||
1025 is
->av_sync_type
== AV_SYNC_EXTERNAL_CLOCK
)) {
1026 /* if video is slave, we try to correct big delays by
1027 duplicating or deleting a frame */
1028 ref_clock
= get_master_clock(is
);
1029 diff
= vp
->pts
- ref_clock
;
1031 /* skip or repeat frame. We take into account the
1032 delay to compute the threshold. I still don't know
1033 if it is the best guess */
1034 sync_threshold
= AV_SYNC_THRESHOLD
;
1035 if (delay
> sync_threshold
)
1036 sync_threshold
= delay
;
1037 if (fabs(diff
) < AV_NOSYNC_THRESHOLD
) {
1038 if (diff
<= -sync_threshold
)
1040 else if (diff
>= sync_threshold
)
1045 is
->frame_timer
+= delay
;
1046 /* compute the REAL delay (we need to do that to avoid
1048 actual_delay
= is
->frame_timer
- (av_gettime() / 1000000.0);
1049 if (actual_delay
< 0.010) {
1050 /* XXX: should skip picture */
1051 actual_delay
= 0.010;
1053 /* launch timer for next picture */
1054 schedule_refresh(is
, (int)(actual_delay
* 1000 + 0.5));
1056 #if defined(DEBUG_SYNC)
1057 printf("video: delay=%0.3f actual_delay=%0.3f pts=%0.3f A-V=%f\n",
1058 delay
, actual_delay
, vp
->pts
, -diff
);
1061 if(is
->subtitle_st
) {
1062 if (is
->subtitle_stream_changed
) {
1063 SDL_LockMutex(is
->subpq_mutex
);
1065 while (is
->subpq_size
) {
1066 free_subpicture(&is
->subpq
[is
->subpq_rindex
]);
1068 /* update queue size and signal for next picture */
1069 if (++is
->subpq_rindex
== SUBPICTURE_QUEUE_SIZE
)
1070 is
->subpq_rindex
= 0;
1074 is
->subtitle_stream_changed
= 0;
1076 SDL_CondSignal(is
->subpq_cond
);
1077 SDL_UnlockMutex(is
->subpq_mutex
);
1079 if (is
->subpq_size
> 0) {
1080 sp
= &is
->subpq
[is
->subpq_rindex
];
1082 if (is
->subpq_size
> 1)
1083 sp2
= &is
->subpq
[(is
->subpq_rindex
+ 1) % SUBPICTURE_QUEUE_SIZE
];
1087 if ((is
->video_current_pts
> (sp
->pts
+ ((float) sp
->sub
.end_display_time
/ 1000)))
1088 || (sp2
&& is
->video_current_pts
> (sp2
->pts
+ ((float) sp2
->sub
.start_display_time
/ 1000))))
1090 free_subpicture(sp
);
1092 /* update queue size and signal for next picture */
1093 if (++is
->subpq_rindex
== SUBPICTURE_QUEUE_SIZE
)
1094 is
->subpq_rindex
= 0;
1096 SDL_LockMutex(is
->subpq_mutex
);
1098 SDL_CondSignal(is
->subpq_cond
);
1099 SDL_UnlockMutex(is
->subpq_mutex
);
1105 /* display picture */
1108 /* update queue size and signal for next picture */
1109 if (++is
->pictq_rindex
== VIDEO_PICTURE_QUEUE_SIZE
)
1110 is
->pictq_rindex
= 0;
1112 SDL_LockMutex(is
->pictq_mutex
);
1114 SDL_CondSignal(is
->pictq_cond
);
1115 SDL_UnlockMutex(is
->pictq_mutex
);
1117 } else if (is
->audio_st
) {
1118 /* draw the next audio frame */
1120 schedule_refresh(is
, 40);
1122 /* if only audio stream, then display the audio bars (better
1123 than nothing, just to test the implementation */
1125 /* display picture */
1128 schedule_refresh(is
, 100);
1131 static int64_t last_time
;
1133 int aqsize
, vqsize
, sqsize
;
1136 cur_time
= av_gettime();
1137 if (!last_time
|| (cur_time
- last_time
) >= 500 * 1000) {
1142 aqsize
= is
->audioq
.size
;
1144 vqsize
= is
->videoq
.size
;
1145 if (is
->subtitle_st
)
1146 sqsize
= is
->subtitleq
.size
;
1148 if (is
->audio_st
&& is
->video_st
)
1149 av_diff
= get_audio_clock(is
) - get_video_clock(is
);
1150 printf("%7.2f A-V:%7.3f aq=%5dKB vq=%5dKB sq=%5dB \r",
1151 get_master_clock(is
), av_diff
, aqsize
/ 1024, vqsize
/ 1024, sqsize
);
1153 last_time
= cur_time
;
1158 /* allocate a picture (needs to do that in main thread to avoid
1159 potential locking problems */
1160 static void alloc_picture(void *opaque
)
1162 VideoState
*is
= opaque
;
1165 vp
= &is
->pictq
[is
->pictq_windex
];
1168 SDL_FreeYUVOverlay(vp
->bmp
);
1171 /* XXX: use generic function */
1172 /* XXX: disable overlay if no hardware acceleration or if RGB format */
1173 switch(is
->video_st
->codec
->pix_fmt
) {
1174 case PIX_FMT_YUV420P
:
1175 case PIX_FMT_YUV422P
:
1176 case PIX_FMT_YUV444P
:
1177 case PIX_FMT_YUYV422
:
1178 case PIX_FMT_YUV410P
:
1179 case PIX_FMT_YUV411P
:
1187 vp
->bmp
= SDL_CreateYUVOverlay(is
->video_st
->codec
->width
,
1188 is
->video_st
->codec
->height
,
1191 vp
->width
= is
->video_st
->codec
->width
;
1192 vp
->height
= is
->video_st
->codec
->height
;
1194 SDL_LockMutex(is
->pictq_mutex
);
1196 SDL_CondSignal(is
->pictq_cond
);
1197 SDL_UnlockMutex(is
->pictq_mutex
);
1202 * @param pts the dts of the pkt / pts of the frame and guessed if not known
1204 static int queue_picture(VideoState
*is
, AVFrame
*src_frame
, double pts
)
1209 static struct SwsContext
*img_convert_ctx
;
1211 /* wait until we have space to put a new picture */
1212 SDL_LockMutex(is
->pictq_mutex
);
1213 while (is
->pictq_size
>= VIDEO_PICTURE_QUEUE_SIZE
&&
1214 !is
->videoq
.abort_request
) {
1215 SDL_CondWait(is
->pictq_cond
, is
->pictq_mutex
);
1217 SDL_UnlockMutex(is
->pictq_mutex
);
1219 if (is
->videoq
.abort_request
)
1222 vp
= &is
->pictq
[is
->pictq_windex
];
1224 /* alloc or resize hardware picture buffer */
1226 vp
->width
!= is
->video_st
->codec
->width
||
1227 vp
->height
!= is
->video_st
->codec
->height
) {
1232 /* the allocation must be done in the main thread to avoid
1234 event
.type
= FF_ALLOC_EVENT
;
1235 event
.user
.data1
= is
;
1236 SDL_PushEvent(&event
);
1238 /* wait until the picture is allocated */
1239 SDL_LockMutex(is
->pictq_mutex
);
1240 while (!vp
->allocated
&& !is
->videoq
.abort_request
) {
1241 SDL_CondWait(is
->pictq_cond
, is
->pictq_mutex
);
1243 SDL_UnlockMutex(is
->pictq_mutex
);
1245 if (is
->videoq
.abort_request
)
1249 /* if the frame is not skipped, then display it */
1251 /* get a pointer on the bitmap */
1252 SDL_LockYUVOverlay (vp
->bmp
);
1254 dst_pix_fmt
= PIX_FMT_YUV420P
;
1255 pict
.data
[0] = vp
->bmp
->pixels
[0];
1256 pict
.data
[1] = vp
->bmp
->pixels
[2];
1257 pict
.data
[2] = vp
->bmp
->pixels
[1];
1259 pict
.linesize
[0] = vp
->bmp
->pitches
[0];
1260 pict
.linesize
[1] = vp
->bmp
->pitches
[2];
1261 pict
.linesize
[2] = vp
->bmp
->pitches
[1];
1262 if (img_convert_ctx
== NULL
) {
1263 img_convert_ctx
= sws_getContext(is
->video_st
->codec
->width
,
1264 is
->video_st
->codec
->height
, is
->video_st
->codec
->pix_fmt
,
1265 is
->video_st
->codec
->width
, is
->video_st
->codec
->height
,
1266 dst_pix_fmt
, sws_flags
, NULL
, NULL
, NULL
);
1267 if (img_convert_ctx
== NULL
) {
1268 fprintf(stderr
, "Cannot initialize the conversion context\n");
1272 sws_scale(img_convert_ctx
, src_frame
->data
, src_frame
->linesize
,
1273 0, is
->video_st
->codec
->height
, pict
.data
, pict
.linesize
);
1274 /* update the bitmap content */
1275 SDL_UnlockYUVOverlay(vp
->bmp
);
1279 /* now we can update the picture count */
1280 if (++is
->pictq_windex
== VIDEO_PICTURE_QUEUE_SIZE
)
1281 is
->pictq_windex
= 0;
1282 SDL_LockMutex(is
->pictq_mutex
);
1284 SDL_UnlockMutex(is
->pictq_mutex
);
1290 * compute the exact PTS for the picture if it is omitted in the stream
1291 * @param pts1 the dts of the pkt / pts of the frame
1293 static int output_picture2(VideoState
*is
, AVFrame
*src_frame
, double pts1
)
1295 double frame_delay
, pts
;
1300 /* update video clock with pts, if present */
1301 is
->video_clock
= pts
;
1303 pts
= is
->video_clock
;
1305 /* update video clock for next frame */
1306 frame_delay
= av_q2d(is
->video_st
->codec
->time_base
);
1307 /* for MPEG2, the frame can be repeated, so we update the
1308 clock accordingly */
1309 frame_delay
+= src_frame
->repeat_pict
* (frame_delay
* 0.5);
1310 is
->video_clock
+= frame_delay
;
1312 #if defined(DEBUG_SYNC) && 0
1315 if (src_frame
->pict_type
== FF_B_TYPE
)
1317 else if (src_frame
->pict_type
== FF_I_TYPE
)
1321 printf("frame_type=%c clock=%0.3f pts=%0.3f\n",
1325 return queue_picture(is
, src_frame
, pts
);
1328 static int video_thread(void *arg
)
1330 VideoState
*is
= arg
;
1331 AVPacket pkt1
, *pkt
= &pkt1
;
1332 int len1
, got_picture
;
1333 AVFrame
*frame
= avcodec_alloc_frame();
1337 while (is
->paused
&& !is
->videoq
.abort_request
) {
1340 if (packet_queue_get(&is
->videoq
, pkt
, 1) < 0)
1343 if(pkt
->data
== flush_pkt
.data
){
1344 avcodec_flush_buffers(is
->video_st
->codec
);
1348 /* NOTE: ipts is the PTS of the _first_ picture beginning in
1349 this packet, if any */
1351 if (pkt
->dts
!= AV_NOPTS_VALUE
)
1352 pts
= av_q2d(is
->video_st
->time_base
)*pkt
->dts
;
1354 len1
= avcodec_decode_video(is
->video_st
->codec
,
1355 frame
, &got_picture
,
1356 pkt
->data
, pkt
->size
);
1360 if (output_picture2(is
, frame
, pts
) < 0)
1363 av_free_packet(pkt
);
1366 stream_pause(cur_stream
);
1373 static int subtitle_thread(void *arg
)
1375 VideoState
*is
= arg
;
1377 AVPacket pkt1
, *pkt
= &pkt1
;
1378 int len1
, got_subtitle
;
1381 int r
, g
, b
, y
, u
, v
, a
;
1384 while (is
->paused
&& !is
->subtitleq
.abort_request
) {
1387 if (packet_queue_get(&is
->subtitleq
, pkt
, 1) < 0)
1390 if(pkt
->data
== flush_pkt
.data
){
1391 avcodec_flush_buffers(is
->subtitle_st
->codec
);
1394 SDL_LockMutex(is
->subpq_mutex
);
1395 while (is
->subpq_size
>= SUBPICTURE_QUEUE_SIZE
&&
1396 !is
->subtitleq
.abort_request
) {
1397 SDL_CondWait(is
->subpq_cond
, is
->subpq_mutex
);
1399 SDL_UnlockMutex(is
->subpq_mutex
);
1401 if (is
->subtitleq
.abort_request
)
1404 sp
= &is
->subpq
[is
->subpq_windex
];
1406 /* NOTE: ipts is the PTS of the _first_ picture beginning in
1407 this packet, if any */
1409 if (pkt
->pts
!= AV_NOPTS_VALUE
)
1410 pts
= av_q2d(is
->subtitle_st
->time_base
)*pkt
->pts
;
1412 len1
= avcodec_decode_subtitle(is
->subtitle_st
->codec
,
1413 &sp
->sub
, &got_subtitle
,
1414 pkt
->data
, pkt
->size
);
1417 if (got_subtitle
&& sp
->sub
.format
== 0) {
1420 for (i
= 0; i
< sp
->sub
.num_rects
; i
++)
1422 for (j
= 0; j
< sp
->sub
.rects
[i
].nb_colors
; j
++)
1424 RGBA_IN(r
, g
, b
, a
, sp
->sub
.rects
[i
].rgba_palette
+ j
);
1425 y
= RGB_TO_Y_CCIR(r
, g
, b
);
1426 u
= RGB_TO_U_CCIR(r
, g
, b
, 0);
1427 v
= RGB_TO_V_CCIR(r
, g
, b
, 0);
1428 YUVA_OUT(sp
->sub
.rects
[i
].rgba_palette
+ j
, y
, u
, v
, a
);
1432 /* now we can update the picture count */
1433 if (++is
->subpq_windex
== SUBPICTURE_QUEUE_SIZE
)
1434 is
->subpq_windex
= 0;
1435 SDL_LockMutex(is
->subpq_mutex
);
1437 SDL_UnlockMutex(is
->subpq_mutex
);
1439 av_free_packet(pkt
);
1442 // stream_pause(cur_stream);
1448 /* copy samples for viewing in editor window */
1449 static void update_sample_display(VideoState
*is
, short *samples
, int samples_size
)
1451 int size
, len
, channels
;
1453 channels
= is
->audio_st
->codec
->channels
;
1455 size
= samples_size
/ sizeof(short);
1457 len
= SAMPLE_ARRAY_SIZE
- is
->sample_array_index
;
1460 memcpy(is
->sample_array
+ is
->sample_array_index
, samples
, len
* sizeof(short));
1462 is
->sample_array_index
+= len
;
1463 if (is
->sample_array_index
>= SAMPLE_ARRAY_SIZE
)
1464 is
->sample_array_index
= 0;
1469 /* return the new audio buffer size (samples can be added or deleted
1470 to get better sync if video or external master clock) */
1471 static int synchronize_audio(VideoState
*is
, short *samples
,
1472 int samples_size1
, double pts
)
1474 int n
, samples_size
;
1477 n
= 2 * is
->audio_st
->codec
->channels
;
1478 samples_size
= samples_size1
;
1480 /* if not master, then we try to remove or add samples to correct the clock */
1481 if (((is
->av_sync_type
== AV_SYNC_VIDEO_MASTER
&& is
->video_st
) ||
1482 is
->av_sync_type
== AV_SYNC_EXTERNAL_CLOCK
)) {
1483 double diff
, avg_diff
;
1484 int wanted_size
, min_size
, max_size
, nb_samples
;
1486 ref_clock
= get_master_clock(is
);
1487 diff
= get_audio_clock(is
) - ref_clock
;
1489 if (diff
< AV_NOSYNC_THRESHOLD
) {
1490 is
->audio_diff_cum
= diff
+ is
->audio_diff_avg_coef
* is
->audio_diff_cum
;
1491 if (is
->audio_diff_avg_count
< AUDIO_DIFF_AVG_NB
) {
1492 /* not enough measures to have a correct estimate */
1493 is
->audio_diff_avg_count
++;
1495 /* estimate the A-V difference */
1496 avg_diff
= is
->audio_diff_cum
* (1.0 - is
->audio_diff_avg_coef
);
1498 if (fabs(avg_diff
) >= is
->audio_diff_threshold
) {
1499 wanted_size
= samples_size
+ ((int)(diff
* is
->audio_st
->codec
->sample_rate
) * n
);
1500 nb_samples
= samples_size
/ n
;
1502 min_size
= ((nb_samples
* (100 - SAMPLE_CORRECTION_PERCENT_MAX
)) / 100) * n
;
1503 max_size
= ((nb_samples
* (100 + SAMPLE_CORRECTION_PERCENT_MAX
)) / 100) * n
;
1504 if (wanted_size
< min_size
)
1505 wanted_size
= min_size
;
1506 else if (wanted_size
> max_size
)
1507 wanted_size
= max_size
;
1509 /* add or remove samples to correction the synchro */
1510 if (wanted_size
< samples_size
) {
1511 /* remove samples */
1512 samples_size
= wanted_size
;
1513 } else if (wanted_size
> samples_size
) {
1514 uint8_t *samples_end
, *q
;
1518 nb
= (samples_size
- wanted_size
);
1519 samples_end
= (uint8_t *)samples
+ samples_size
- n
;
1520 q
= samples_end
+ n
;
1522 memcpy(q
, samples_end
, n
);
1526 samples_size
= wanted_size
;
1530 printf("diff=%f adiff=%f sample_diff=%d apts=%0.3f vpts=%0.3f %f\n",
1531 diff
, avg_diff
, samples_size
- samples_size1
,
1532 is
->audio_clock
, is
->video_clock
, is
->audio_diff_threshold
);
1536 /* too big difference : may be initial PTS errors, so
1538 is
->audio_diff_avg_count
= 0;
1539 is
->audio_diff_cum
= 0;
1543 return samples_size
;
1546 /* decode one audio frame and returns its uncompressed size */
1547 static int audio_decode_frame(VideoState
*is
, uint8_t *audio_buf
, double *pts_ptr
)
1549 AVPacket
*pkt
= &is
->audio_pkt
;
1550 int n
, len1
, data_size
;
1554 /* NOTE: the audio packet can contain several frames */
1555 while (is
->audio_pkt_size
> 0) {
1556 len1
= avcodec_decode_audio(is
->audio_st
->codec
,
1557 (int16_t *)audio_buf
, &data_size
,
1558 is
->audio_pkt_data
, is
->audio_pkt_size
);
1560 /* if error, we skip the frame */
1561 is
->audio_pkt_size
= 0;
1565 is
->audio_pkt_data
+= len1
;
1566 is
->audio_pkt_size
-= len1
;
1569 /* if no pts, then compute it */
1570 pts
= is
->audio_clock
;
1572 n
= 2 * is
->audio_st
->codec
->channels
;
1573 is
->audio_clock
+= (double)data_size
/
1574 (double)(n
* is
->audio_st
->codec
->sample_rate
);
1575 #if defined(DEBUG_SYNC)
1577 static double last_clock
;
1578 printf("audio: delay=%0.3f clock=%0.3f pts=%0.3f\n",
1579 is
->audio_clock
- last_clock
,
1580 is
->audio_clock
, pts
);
1581 last_clock
= is
->audio_clock
;
1587 /* free the current packet */
1589 av_free_packet(pkt
);
1591 if (is
->paused
|| is
->audioq
.abort_request
) {
1595 /* read next packet */
1596 if (packet_queue_get(&is
->audioq
, pkt
, 1) < 0)
1598 if(pkt
->data
== flush_pkt
.data
){
1599 avcodec_flush_buffers(is
->audio_st
->codec
);
1603 is
->audio_pkt_data
= pkt
->data
;
1604 is
->audio_pkt_size
= pkt
->size
;
1606 /* if update the audio clock with the pts */
1607 if (pkt
->pts
!= AV_NOPTS_VALUE
) {
1608 is
->audio_clock
= av_q2d(is
->audio_st
->time_base
)*pkt
->pts
;
1613 /* get the current audio output buffer size, in samples. With SDL, we
1614 cannot have a precise information */
1615 static int audio_write_get_buf_size(VideoState
*is
)
1617 return is
->audio_hw_buf_size
- is
->audio_buf_index
;
1621 /* prepare a new audio buffer */
1622 void sdl_audio_callback(void *opaque
, Uint8
*stream
, int len
)
1624 VideoState
*is
= opaque
;
1625 int audio_size
, len1
;
1628 audio_callback_time
= av_gettime();
1631 if (is
->audio_buf_index
>= is
->audio_buf_size
) {
1632 audio_size
= audio_decode_frame(is
, is
->audio_buf
, &pts
);
1633 if (audio_size
< 0) {
1634 /* if error, just output silence */
1635 is
->audio_buf_size
= 1024;
1636 memset(is
->audio_buf
, 0, is
->audio_buf_size
);
1639 update_sample_display(is
, (int16_t *)is
->audio_buf
, audio_size
);
1640 audio_size
= synchronize_audio(is
, (int16_t *)is
->audio_buf
, audio_size
,
1642 is
->audio_buf_size
= audio_size
;
1644 is
->audio_buf_index
= 0;
1646 len1
= is
->audio_buf_size
- is
->audio_buf_index
;
1649 memcpy(stream
, (uint8_t *)is
->audio_buf
+ is
->audio_buf_index
, len1
);
1652 is
->audio_buf_index
+= len1
;
1656 /* open a given stream. Return 0 if OK */
1657 static int stream_component_open(VideoState
*is
, int stream_index
)
1659 AVFormatContext
*ic
= is
->ic
;
1660 AVCodecContext
*enc
;
1662 SDL_AudioSpec wanted_spec
, spec
;
1664 if (stream_index
< 0 || stream_index
>= ic
->nb_streams
)
1666 enc
= ic
->streams
[stream_index
]->codec
;
1668 /* prepare audio output */
1669 if (enc
->codec_type
== CODEC_TYPE_AUDIO
) {
1670 wanted_spec
.freq
= enc
->sample_rate
;
1671 wanted_spec
.format
= AUDIO_S16SYS
;
1672 /* hack for AC3. XXX: suppress that */
1673 if (enc
->channels
> 2)
1675 wanted_spec
.channels
= enc
->channels
;
1676 wanted_spec
.silence
= 0;
1677 wanted_spec
.samples
= SDL_AUDIO_BUFFER_SIZE
;
1678 wanted_spec
.callback
= sdl_audio_callback
;
1679 wanted_spec
.userdata
= is
;
1680 if (SDL_OpenAudio(&wanted_spec
, &spec
) < 0) {
1681 fprintf(stderr
, "SDL_OpenAudio: %s\n", SDL_GetError());
1684 is
->audio_hw_buf_size
= spec
.size
;
1687 codec
= avcodec_find_decoder(enc
->codec_id
);
1688 enc
->debug_mv
= debug_mv
;
1690 enc
->workaround_bugs
= workaround_bugs
;
1691 enc
->lowres
= lowres
;
1692 if(lowres
) enc
->flags
|= CODEC_FLAG_EMU_EDGE
;
1693 enc
->idct_algo
= idct
;
1694 if(fast
) enc
->flags2
|= CODEC_FLAG2_FAST
;
1695 enc
->skip_frame
= skip_frame
;
1696 enc
->skip_idct
= skip_idct
;
1697 enc
->skip_loop_filter
= skip_loop_filter
;
1698 enc
->error_resilience
= error_resilience
;
1699 enc
->error_concealment
= error_concealment
;
1701 avcodec_open(enc
, codec
) < 0)
1703 #if defined(HAVE_THREADS)
1705 avcodec_thread_init(enc
, thread_count
);
1707 enc
->thread_count
= thread_count
;
1708 switch(enc
->codec_type
) {
1709 case CODEC_TYPE_AUDIO
:
1710 is
->audio_stream
= stream_index
;
1711 is
->audio_st
= ic
->streams
[stream_index
];
1712 is
->audio_buf_size
= 0;
1713 is
->audio_buf_index
= 0;
1715 /* init averaging filter */
1716 is
->audio_diff_avg_coef
= exp(log(0.01) / AUDIO_DIFF_AVG_NB
);
1717 is
->audio_diff_avg_count
= 0;
1718 /* since we do not have a precise anough audio fifo fullness,
1719 we correct audio sync only if larger than this threshold */
1720 is
->audio_diff_threshold
= 2.0 * SDL_AUDIO_BUFFER_SIZE
/ enc
->sample_rate
;
1722 memset(&is
->audio_pkt
, 0, sizeof(is
->audio_pkt
));
1723 packet_queue_init(&is
->audioq
);
1726 case CODEC_TYPE_VIDEO
:
1727 is
->video_stream
= stream_index
;
1728 is
->video_st
= ic
->streams
[stream_index
];
1730 is
->frame_last_delay
= 40e-3;
1731 is
->frame_timer
= (double)av_gettime() / 1000000.0;
1732 is
->video_current_pts_time
= av_gettime();
1734 packet_queue_init(&is
->videoq
);
1735 is
->video_tid
= SDL_CreateThread(video_thread
, is
);
1737 case CODEC_TYPE_SUBTITLE
:
1738 is
->subtitle_stream
= stream_index
;
1739 is
->subtitle_st
= ic
->streams
[stream_index
];
1740 packet_queue_init(&is
->subtitleq
);
1742 is
->subtitle_tid
= SDL_CreateThread(subtitle_thread
, is
);
1750 static void stream_component_close(VideoState
*is
, int stream_index
)
1752 AVFormatContext
*ic
= is
->ic
;
1753 AVCodecContext
*enc
;
1755 if (stream_index
< 0 || stream_index
>= ic
->nb_streams
)
1757 enc
= ic
->streams
[stream_index
]->codec
;
1759 switch(enc
->codec_type
) {
1760 case CODEC_TYPE_AUDIO
:
1761 packet_queue_abort(&is
->audioq
);
1765 packet_queue_end(&is
->audioq
);
1767 case CODEC_TYPE_VIDEO
:
1768 packet_queue_abort(&is
->videoq
);
1770 /* note: we also signal this mutex to make sure we deblock the
1771 video thread in all cases */
1772 SDL_LockMutex(is
->pictq_mutex
);
1773 SDL_CondSignal(is
->pictq_cond
);
1774 SDL_UnlockMutex(is
->pictq_mutex
);
1776 SDL_WaitThread(is
->video_tid
, NULL
);
1778 packet_queue_end(&is
->videoq
);
1780 case CODEC_TYPE_SUBTITLE
:
1781 packet_queue_abort(&is
->subtitleq
);
1783 /* note: we also signal this mutex to make sure we deblock the
1784 video thread in all cases */
1785 SDL_LockMutex(is
->subpq_mutex
);
1786 is
->subtitle_stream_changed
= 1;
1788 SDL_CondSignal(is
->subpq_cond
);
1789 SDL_UnlockMutex(is
->subpq_mutex
);
1791 SDL_WaitThread(is
->subtitle_tid
, NULL
);
1793 packet_queue_end(&is
->subtitleq
);
1800 switch(enc
->codec_type
) {
1801 case CODEC_TYPE_AUDIO
:
1802 is
->audio_st
= NULL
;
1803 is
->audio_stream
= -1;
1805 case CODEC_TYPE_VIDEO
:
1806 is
->video_st
= NULL
;
1807 is
->video_stream
= -1;
1809 case CODEC_TYPE_SUBTITLE
:
1810 is
->subtitle_st
= NULL
;
1811 is
->subtitle_stream
= -1;
1818 static void dump_stream_info(const AVFormatContext
*s
)
1821 fprintf(stderr
, "Track: %d\n", s
->track
);
1822 if (s
->title
[0] != '\0')
1823 fprintf(stderr
, "Title: %s\n", s
->title
);
1824 if (s
->author
[0] != '\0')
1825 fprintf(stderr
, "Author: %s\n", s
->author
);
1826 if (s
->copyright
[0] != '\0')
1827 fprintf(stderr
, "Copyright: %s\n", s
->copyright
);
1828 if (s
->comment
[0] != '\0')
1829 fprintf(stderr
, "Comment: %s\n", s
->comment
);
1830 if (s
->album
[0] != '\0')
1831 fprintf(stderr
, "Album: %s\n", s
->album
);
1833 fprintf(stderr
, "Year: %d\n", s
->year
);
1834 if (s
->genre
[0] != '\0')
1835 fprintf(stderr
, "Genre: %s\n", s
->genre
);
1838 /* since we have only one decoding thread, we can use a global
1839 variable instead of a thread local variable */
1840 static VideoState
*global_video_state
;
1842 static int decode_interrupt_cb(void)
1844 return (global_video_state
&& global_video_state
->abort_request
);
1847 /* this thread gets the stream from the disk or the network */
1848 static int decode_thread(void *arg
)
1850 VideoState
*is
= arg
;
1851 AVFormatContext
*ic
;
1852 int err
, i
, ret
, video_index
, audio_index
, use_play
;
1853 AVPacket pkt1
, *pkt
= &pkt1
;
1854 AVFormatParameters params
, *ap
= ¶ms
;
1858 is
->video_stream
= -1;
1859 is
->audio_stream
= -1;
1860 is
->subtitle_stream
= -1;
1862 global_video_state
= is
;
1863 url_set_interrupt_cb(decode_interrupt_cb
);
1865 memset(ap
, 0, sizeof(*ap
));
1866 ap
->initial_pause
= 1; /* we force a pause when starting an RTSP
1869 ap
->width
= screen_width
;
1870 ap
->height
= screen_height
;
1871 ap
->time_base
= (AVRational
){1, 25};
1873 err
= av_open_input_file(&ic
, is
->filename
, is
->iformat
, 0, ap
);
1875 print_error(is
->filename
, err
);
1880 #ifdef CONFIG_NETWORK
1881 use_play
= (ic
->iformat
== &rtsp_demuxer
);
1887 ic
->flags
|= AVFMT_FLAG_GENPTS
;
1890 err
= av_find_stream_info(ic
);
1892 fprintf(stderr
, "%s: could not find codec parameters\n", is
->filename
);
1896 ic
->pb
.eof_reached
= 0; //FIXME hack, ffplay maybe shouldnt use url_feof() to test for the end
1899 /* if seeking requested, we execute it */
1900 if (start_time
!= AV_NOPTS_VALUE
) {
1903 timestamp
= start_time
;
1904 /* add the stream start time */
1905 if (ic
->start_time
!= AV_NOPTS_VALUE
)
1906 timestamp
+= ic
->start_time
;
1907 ret
= av_seek_frame(ic
, -1, timestamp
, AVSEEK_FLAG_BACKWARD
);
1909 fprintf(stderr
, "%s: could not seek to position %0.3f\n",
1910 is
->filename
, (double)timestamp
/ AV_TIME_BASE
);
1914 /* now we can begin to play (RTSP stream only) */
1918 err
= av_find_stream_info(ic
);
1920 fprintf(stderr
, "%s: could not find codec parameters\n", is
->filename
);
1926 for(i
= 0; i
< ic
->nb_streams
; i
++) {
1927 AVCodecContext
*enc
= ic
->streams
[i
]->codec
;
1928 switch(enc
->codec_type
) {
1929 case CODEC_TYPE_AUDIO
:
1930 if ((audio_index
< 0 || wanted_audio_stream
-- > 0) && !audio_disable
)
1933 case CODEC_TYPE_VIDEO
:
1934 if (video_index
< 0 && !video_disable
)
1942 dump_format(ic
, 0, is
->filename
, 0);
1943 dump_stream_info(ic
);
1946 /* open the streams */
1947 if (audio_index
>= 0) {
1948 stream_component_open(is
, audio_index
);
1951 if (video_index
>= 0) {
1952 stream_component_open(is
, video_index
);
1954 if (!display_disable
)
1958 if (is
->video_stream
< 0 && is
->audio_stream
< 0) {
1959 fprintf(stderr
, "%s: could not open codecs\n", is
->filename
);
1965 if (is
->abort_request
)
1967 #ifdef CONFIG_NETWORK
1968 if (is
->paused
!= is
->last_paused
) {
1969 is
->last_paused
= is
->paused
;
1975 if (is
->paused
&& ic
->iformat
== &rtsp_demuxer
) {
1976 /* wait 10 ms to avoid trying to get another packet */
1983 int stream_index
= -1;
1984 int64_t seek_target
= is
->seek_pos
;
1986 if (is
-> video_stream
>= 0) stream_index
= is
-> video_stream
;
1987 else if(is
-> audio_stream
>= 0) stream_index
= is
-> audio_stream
;
1988 else if(is
->subtitle_stream
>= 0) stream_index
= is
->subtitle_stream
;
1990 if(stream_index
>=0){
1991 seek_target
= av_rescale_q(seek_target
, AV_TIME_BASE_Q
, ic
->streams
[stream_index
]->time_base
);
1994 ret
= av_seek_frame(is
->ic
, stream_index
, seek_target
, is
->seek_flags
);
1996 fprintf(stderr
, "%s: error while seeking\n", is
->ic
->filename
);
1998 if (is
->audio_stream
>= 0) {
1999 packet_queue_flush(&is
->audioq
);
2000 packet_queue_put(&is
->audioq
, &flush_pkt
);
2002 if (is
->subtitle_stream
>= 0) {
2003 packet_queue_flush(&is
->subtitleq
);
2004 packet_queue_put(&is
->subtitleq
, &flush_pkt
);
2006 if (is
->video_stream
>= 0) {
2007 packet_queue_flush(&is
->videoq
);
2008 packet_queue_put(&is
->videoq
, &flush_pkt
);
2014 /* if the queue are full, no need to read more */
2015 if (is
->audioq
.size
> MAX_AUDIOQ_SIZE
||
2016 is
->videoq
.size
> MAX_VIDEOQ_SIZE
||
2017 is
->subtitleq
.size
> MAX_SUBTITLEQ_SIZE
||
2018 url_feof(&ic
->pb
)) {
2023 ret
= av_read_frame(ic
, pkt
);
2025 if (url_ferror(&ic
->pb
) == 0) {
2026 SDL_Delay(100); /* wait for user event */
2031 if (pkt
->stream_index
== is
->audio_stream
) {
2032 packet_queue_put(&is
->audioq
, pkt
);
2033 } else if (pkt
->stream_index
== is
->video_stream
) {
2034 packet_queue_put(&is
->videoq
, pkt
);
2035 } else if (pkt
->stream_index
== is
->subtitle_stream
) {
2036 packet_queue_put(&is
->subtitleq
, pkt
);
2038 av_free_packet(pkt
);
2041 /* wait until the end */
2042 while (!is
->abort_request
) {
2048 /* disable interrupting */
2049 global_video_state
= NULL
;
2051 /* close each stream */
2052 if (is
->audio_stream
>= 0)
2053 stream_component_close(is
, is
->audio_stream
);
2054 if (is
->video_stream
>= 0)
2055 stream_component_close(is
, is
->video_stream
);
2056 if (is
->subtitle_stream
>= 0)
2057 stream_component_close(is
, is
->subtitle_stream
);
2059 av_close_input_file(is
->ic
);
2060 is
->ic
= NULL
; /* safety */
2062 url_set_interrupt_cb(NULL
);
2067 event
.type
= FF_QUIT_EVENT
;
2068 event
.user
.data1
= is
;
2069 SDL_PushEvent(&event
);
2074 static VideoState
*stream_open(const char *filename
, AVInputFormat
*iformat
)
2078 is
= av_mallocz(sizeof(VideoState
));
2081 pstrcpy(is
->filename
, sizeof(is
->filename
), filename
);
2082 is
->iformat
= iformat
;
2086 /* start video display */
2087 is
->pictq_mutex
= SDL_CreateMutex();
2088 is
->pictq_cond
= SDL_CreateCond();
2090 is
->subpq_mutex
= SDL_CreateMutex();
2091 is
->subpq_cond
= SDL_CreateCond();
2093 /* add the refresh timer to draw the picture */
2094 schedule_refresh(is
, 40);
2096 is
->av_sync_type
= av_sync_type
;
2097 is
->parse_tid
= SDL_CreateThread(decode_thread
, is
);
2098 if (!is
->parse_tid
) {
2105 static void stream_close(VideoState
*is
)
2109 /* XXX: use a special url_shutdown call to abort parse cleanly */
2110 is
->abort_request
= 1;
2111 SDL_WaitThread(is
->parse_tid
, NULL
);
2113 /* free all pictures */
2114 for(i
=0;i
<VIDEO_PICTURE_QUEUE_SIZE
; i
++) {
2117 SDL_FreeYUVOverlay(vp
->bmp
);
2121 SDL_DestroyMutex(is
->pictq_mutex
);
2122 SDL_DestroyCond(is
->pictq_cond
);
2123 SDL_DestroyMutex(is
->subpq_mutex
);
2124 SDL_DestroyCond(is
->subpq_cond
);
2127 static void stream_cycle_channel(VideoState
*is
, int codec_type
)
2129 AVFormatContext
*ic
= is
->ic
;
2130 int start_index
, stream_index
;
2133 if (codec_type
== CODEC_TYPE_VIDEO
)
2134 start_index
= is
->video_stream
;
2135 else if (codec_type
== CODEC_TYPE_AUDIO
)
2136 start_index
= is
->audio_stream
;
2138 start_index
= is
->subtitle_stream
;
2139 if (start_index
< (codec_type
== CODEC_TYPE_SUBTITLE ?
-1 : 0))
2141 stream_index
= start_index
;
2143 if (++stream_index
>= is
->ic
->nb_streams
)
2145 if (codec_type
== CODEC_TYPE_SUBTITLE
)
2152 if (stream_index
== start_index
)
2154 st
= ic
->streams
[stream_index
];
2155 if (st
->codec
->codec_type
== codec_type
) {
2156 /* check that parameters are OK */
2157 switch(codec_type
) {
2158 case CODEC_TYPE_AUDIO
:
2159 if (st
->codec
->sample_rate
!= 0 &&
2160 st
->codec
->channels
!= 0)
2163 case CODEC_TYPE_VIDEO
:
2164 case CODEC_TYPE_SUBTITLE
:
2172 stream_component_close(is
, start_index
);
2173 stream_component_open(is
, stream_index
);
2177 static void toggle_full_screen(void)
2179 is_full_screen
= !is_full_screen
;
2180 if (!fs_screen_width
) {
2181 /* use default SDL method */
2182 // SDL_WM_ToggleFullScreen(screen);
2184 video_open(cur_stream
);
2187 static void toggle_pause(void)
2190 stream_pause(cur_stream
);
2194 static void step_to_next_frame(void)
2197 if (cur_stream
->paused
)
2198 cur_stream
->paused
=0;
2199 cur_stream
->video_current_pts
= get_video_clock(cur_stream
);
2204 static void do_exit(void)
2207 stream_close(cur_stream
);
2216 static void toggle_audio_display(void)
2219 cur_stream
->show_audio
= !cur_stream
->show_audio
;
2223 /* handle an event sent by the GUI */
2224 static void event_loop(void)
2227 double incr
, pos
, frac
;
2230 SDL_WaitEvent(&event
);
2231 switch(event
.type
) {
2233 switch(event
.key
.keysym
.sym
) {
2239 toggle_full_screen();
2245 case SDLK_s
: //S: Step to next frame
2246 step_to_next_frame();
2250 stream_cycle_channel(cur_stream
, CODEC_TYPE_AUDIO
);
2254 stream_cycle_channel(cur_stream
, CODEC_TYPE_VIDEO
);
2258 stream_cycle_channel(cur_stream
, CODEC_TYPE_SUBTITLE
);
2261 toggle_audio_display();
2276 if (seek_by_bytes
) {
2277 pos
= url_ftell(&cur_stream
->ic
->pb
);
2278 if (cur_stream
->ic
->bit_rate
)
2279 incr
*= cur_stream
->ic
->bit_rate
/ 60.0;
2283 stream_seek(cur_stream
, pos
, incr
);
2285 pos
= get_master_clock(cur_stream
);
2287 stream_seek(cur_stream
, (int64_t)(pos
* AV_TIME_BASE
), incr
);
2295 case SDL_MOUSEBUTTONDOWN
:
2298 int tns
, thh
, tmm
, tss
;
2299 tns
= cur_stream
->ic
->duration
/1000000LL;
2301 tmm
= (tns
%3600)/60;
2303 frac
= (double)event
.button
.x
/(double)cur_stream
->width
;
2308 fprintf(stderr
, "Seek to %2.0f%% (%2d:%02d:%02d) of total duration (%2d:%02d:%02d) \n", frac
*100,
2309 hh
, mm
, ss
, thh
, tmm
, tss
);
2310 stream_seek(cur_stream
, (int64_t)(cur_stream
->ic
->start_time
+frac
*cur_stream
->ic
->duration
), 0);
2313 case SDL_VIDEORESIZE
:
2315 screen
= SDL_SetVideoMode(event
.resize
.w
, event
.resize
.h
, 0,
2316 SDL_HWSURFACE
|SDL_RESIZABLE
|SDL_ASYNCBLIT
|SDL_HWACCEL
);
2317 screen_width
= cur_stream
->width
= event
.resize
.w
;
2318 screen_height
= cur_stream
->height
= event
.resize
.h
;
2325 case FF_ALLOC_EVENT
:
2326 video_open(event
.user
.data1
);
2327 alloc_picture(event
.user
.data1
);
2329 case FF_REFRESH_EVENT
:
2330 video_refresh_timer(event
.user
.data1
);
2338 void opt_width(const char *arg
)
2340 screen_width
= atoi(arg
);
2341 if(screen_width
<=0){
2342 fprintf(stderr
, "invalid width\n");
2347 void opt_height(const char *arg
)
2349 screen_height
= atoi(arg
);
2350 if(screen_height
<=0){
2351 fprintf(stderr
, "invalid height\n");
2356 static void opt_format(const char *arg
)
2358 file_iformat
= av_find_input_format(arg
);
2359 if (!file_iformat
) {
2360 fprintf(stderr
, "Unknown input format: %s\n", arg
);
2365 #ifdef CONFIG_NETWORK
2366 void opt_rtp_tcp(void)
2368 /* only tcp protocol */
2369 rtsp_default_protocols
= (1 << RTSP_PROTOCOL_RTP_TCP
);
2373 void opt_sync(const char *arg
)
2375 if (!strcmp(arg
, "audio"))
2376 av_sync_type
= AV_SYNC_AUDIO_MASTER
;
2377 else if (!strcmp(arg
, "video"))
2378 av_sync_type
= AV_SYNC_VIDEO_MASTER
;
2379 else if (!strcmp(arg
, "ext"))
2380 av_sync_type
= AV_SYNC_EXTERNAL_CLOCK
;
2385 void opt_seek(const char *arg
)
2387 start_time
= parse_date(arg
, 1);
2390 static void opt_debug(const char *arg
)
2396 static void opt_vismv(const char *arg
)
2398 debug_mv
= atoi(arg
);
2401 static void opt_thread_count(const char *arg
)
2403 thread_count
= atoi(arg
);
2404 #if !defined(HAVE_THREADS)
2405 fprintf(stderr
, "Warning: not compiled with thread support, using thread emulation\n");
2409 const OptionDef options
[] = {
2410 { "h", 0, {(void*)show_help
}, "show help" },
2411 { "x", HAS_ARG
, {(void*)opt_width
}, "force displayed width", "width" },
2412 { "y", HAS_ARG
, {(void*)opt_height
}, "force displayed height", "height" },
2413 { "fs", OPT_BOOL
, {(void*)&is_full_screen
}, "force full screen" },
2414 { "an", OPT_BOOL
, {(void*)&audio_disable
}, "disable audio" },
2415 { "vn", OPT_BOOL
, {(void*)&video_disable
}, "disable video" },
2416 { "ast", OPT_INT
| HAS_ARG
| OPT_EXPERT
, {(void*)&wanted_audio_stream
}, "", "" },
2417 { "ss", HAS_ARG
, {(void*)&opt_seek
}, "seek to a given position in seconds", "pos" },
2418 { "bytes", OPT_BOOL
, {(void*)&seek_by_bytes
}, "seek by bytes" },
2419 { "nodisp", OPT_BOOL
, {(void*)&display_disable
}, "disable graphical display" },
2420 { "f", HAS_ARG
, {(void*)opt_format
}, "force format", "fmt" },
2421 { "stats", OPT_BOOL
| OPT_EXPERT
, {(void*)&show_status
}, "show status", "" },
2422 { "debug", HAS_ARG
| OPT_EXPERT
, {(void*)opt_debug
}, "print specific debug info", "" },
2423 { "bug", OPT_INT
| HAS_ARG
| OPT_EXPERT
, {(void*)&workaround_bugs
}, "workaround bugs", "" },
2424 { "vismv", HAS_ARG
| OPT_EXPERT
, {(void*)opt_vismv
}, "visualize motion vectors", "" },
2425 { "fast", OPT_BOOL
| OPT_EXPERT
, {(void*)&fast
}, "non spec compliant optimizations", "" },
2426 { "genpts", OPT_BOOL
| OPT_EXPERT
, {(void*)&genpts
}, "generate pts", "" },
2427 { "lowres", OPT_INT
| HAS_ARG
| OPT_EXPERT
, {(void*)&lowres
}, "", "" },
2428 { "skiploop", OPT_INT
| HAS_ARG
| OPT_EXPERT
, {(void*)&skip_loop_filter
}, "", "" },
2429 { "skipframe", OPT_INT
| HAS_ARG
| OPT_EXPERT
, {(void*)&skip_frame
}, "", "" },
2430 { "skipidct", OPT_INT
| HAS_ARG
| OPT_EXPERT
, {(void*)&skip_idct
}, "", "" },
2431 { "idct", OPT_INT
| HAS_ARG
| OPT_EXPERT
, {(void*)&idct
}, "set idct algo", "algo" },
2432 { "er", OPT_INT
| HAS_ARG
| OPT_EXPERT
, {(void*)&error_resilience
}, "set error detection threshold (0-4)", "threshold" },
2433 { "ec", OPT_INT
| HAS_ARG
| OPT_EXPERT
, {(void*)&error_concealment
}, "set error concealment options", "bit_mask" },
2434 #ifdef CONFIG_NETWORK
2435 { "rtp_tcp", OPT_EXPERT
, {(void*)&opt_rtp_tcp
}, "force RTP/TCP protocol usage", "" },
2437 { "sync", HAS_ARG
| OPT_EXPERT
, {(void*)opt_sync
}, "set audio-video sync. type (type=audio/video/ext)", "type" },
2438 { "threads", HAS_ARG
| OPT_EXPERT
, {(void*)opt_thread_count
}, "thread count", "count" },
2442 void show_help(void)
2444 printf("ffplay version " FFMPEG_VERSION
", Copyright (c) 2003-2006 Fabrice Bellard, et al.\n"
2445 "usage: ffplay [options] input_file\n"
2446 "Simple media player\n");
2448 show_help_options(options
, "Main options:\n",
2450 show_help_options(options
, "\nAdvanced options:\n",
2451 OPT_EXPERT
, OPT_EXPERT
);
2452 printf("\nWhile playing:\n"
2454 "f toggle full screen\n"
2456 "a cycle audio channel\n"
2457 "v cycle video channel\n"
2458 "t cycle subtitle channel\n"
2459 "w show audio waves\n"
2460 "left/right seek backward/forward 10 seconds\n"
2461 "down/up seek backward/forward 1 minute\n"
2462 "mouse click seek to percentage in file corresponding to fraction of width\n"
2467 void parse_arg_file(const char *filename
)
2469 if (!strcmp(filename
, "-"))
2471 input_filename
= filename
;
2474 /* Called from the main */
2475 int main(int argc
, char **argv
)
2479 /* register all codecs, demux and protocols */
2483 MorphToPM(); // Morph the VIO application to a PM one to be able to use Win* functions
2485 // Make stdout and stderr unbuffered
2486 setbuf( stdout
, NULL
);
2487 setbuf( stderr
, NULL
);
2490 parse_options(argc
, argv
, options
);
2492 if (!input_filename
)
2495 if (display_disable
) {
2498 flags
= SDL_INIT_VIDEO
| SDL_INIT_AUDIO
| SDL_INIT_TIMER
;
2499 #if !defined(__MINGW32__) && !defined(CONFIG_DARWIN)
2500 flags
|= SDL_INIT_EVENTTHREAD
; /* Not supported on win32 or darwin */
2502 if (SDL_Init (flags
)) {
2503 fprintf(stderr
, "Could not initialize SDL - %s\n", SDL_GetError());
2507 if (!display_disable
) {
2508 #ifdef HAVE_SDL_VIDEO_SIZE
2509 const SDL_VideoInfo
*vi
= SDL_GetVideoInfo();
2510 fs_screen_width
= vi
->current_w
;
2511 fs_screen_height
= vi
->current_h
;
2515 SDL_EventState(SDL_ACTIVEEVENT
, SDL_IGNORE
);
2516 SDL_EventState(SDL_MOUSEMOTION
, SDL_IGNORE
);
2517 SDL_EventState(SDL_SYSWMEVENT
, SDL_IGNORE
);
2518 SDL_EventState(SDL_USEREVENT
, SDL_IGNORE
);
2520 av_init_packet(&flush_pkt
);
2521 flush_pkt
.data
= "FLUSH";
2523 cur_stream
= stream_open(input_filename
, file_iformat
);