ffplay.c 93.5 KB
Newer Older
F
Fabrice Bellard 已提交
1
/*
2
 * FFplay : Simple Media Player based on the FFmpeg libraries
F
Fabrice Bellard 已提交
3 4
 * Copyright (c) 2003 Fabrice Bellard
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
F
Fabrice Bellard 已提交
8 9
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
10
 * version 2.1 of the License, or (at your option) any later version.
F
Fabrice Bellard 已提交
11
 *
12
 * FFmpeg is distributed in the hope that it will be useful,
F
Fabrice Bellard 已提交
13 14 15 16 17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * 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
F
Fabrice Bellard 已提交
20
 */
21

22
#include "config.h"
23 24
#include <math.h>
#include <limits.h>
25
#include "libavutil/avstring.h"
26
#include "libavutil/pixdesc.h"
27 28 29
#include "libavformat/avformat.h"
#include "libavdevice/avdevice.h"
#include "libswscale/swscale.h"
30
#include "libavcodec/audioconvert.h"
31
#include "libavcodec/colorspace.h"
32
#include "libavcodec/opt.h"
33
#include "libavcodec/dsputil.h"
F
Fabrice Bellard 已提交
34

35 36 37 38 39 40
#if CONFIG_AVFILTER
# include "libavfilter/avfilter.h"
# include "libavfilter/avfiltergraph.h"
# include "libavfilter/graphparser.h"
#endif

F
Fabrice Bellard 已提交
41 42 43 44 45
#include "cmdutils.h"

#include <SDL.h>
#include <SDL_thread.h>

46
#ifdef __MINGW32__
47 48 49
#undef main /* We don't want SDL to override our main() */
#endif

M
Michael Niedermayer 已提交
50
#undef exit
51 52
#undef printf
#undef fprintf
M
Michael Niedermayer 已提交
53

54
const char program_name[] = "FFplay";
55
const int program_birth_year = 2003;
56

57 58
//#define DEBUG_SYNC

59 60 61
#define MAX_QUEUE_SIZE (15 * 1024 * 1024)
#define MIN_AUDIOQ_SIZE (20 * 16 * 1024)
#define MIN_FRAMES 5
F
Fabrice Bellard 已提交
62

63 64 65 66 67
/* SDL audio buffer size, in samples. Should be small to have precise
   A/V sync as SDL does not have hardware buffer fullness info. */
#define SDL_AUDIO_BUFFER_SIZE 1024

/* no AV sync correction is done if below the AV sync threshold */
68
#define AV_SYNC_THRESHOLD 0.01
69 70 71 72 73 74 75 76 77
/* no AV correction is done if too big error */
#define AV_NOSYNC_THRESHOLD 10.0

/* maximum audio speed change to get correct sync */
#define SAMPLE_CORRECTION_PERCENT_MAX 10

/* we use about AUDIO_DIFF_AVG_NB A-V differences to make the average */
#define AUDIO_DIFF_AVG_NB   20

F
Fabrice Bellard 已提交
78 79 80
/* NOTE: the size must be big enough to compensate the hardware audio buffersize size */
#define SAMPLE_ARRAY_SIZE (2*65536)

81
#if !CONFIG_AVFILTER
82
static int sws_flags = SWS_BICUBIC;
83
#endif
84

F
Fabrice Bellard 已提交
85 86 87 88 89 90 91 92 93 94
typedef struct PacketQueue {
    AVPacketList *first_pkt, *last_pkt;
    int nb_packets;
    int size;
    int abort_request;
    SDL_mutex *mutex;
    SDL_cond *cond;
} PacketQueue;

#define VIDEO_PICTURE_QUEUE_SIZE 1
95
#define SUBPICTURE_QUEUE_SIZE 4
F
Fabrice Bellard 已提交
96 97

typedef struct VideoPicture {
M
Michael Niedermayer 已提交
98
    double pts;                                  ///<presentation time stamp for this picture
99
    int64_t pos;                                 ///<byte position in file
F
Fabrice Bellard 已提交
100 101 102
    SDL_Overlay *bmp;
    int width, height; /* source height & width */
    int allocated;
103
    SDL_TimerID timer_id;
104 105 106 107 108
    enum PixelFormat pix_fmt;

#if CONFIG_AVFILTER
    AVFilterPicRef *picref;
#endif
F
Fabrice Bellard 已提交
109 110
} VideoPicture;

111 112 113 114 115
typedef struct SubPicture {
    double pts; /* presentation time stamp for this picture */
    AVSubtitle sub;
} SubPicture;

F
Fabrice Bellard 已提交
116 117 118
enum {
    AV_SYNC_AUDIO_MASTER, /* default choice */
    AV_SYNC_VIDEO_MASTER,
119
    AV_SYNC_EXTERNAL_CLOCK, /* synchronize to an external clock */
F
Fabrice Bellard 已提交
120 121 122 123 124
};

typedef struct VideoState {
    SDL_Thread *parse_tid;
    SDL_Thread *video_tid;
125
    AVInputFormat *iformat;
F
Fabrice Bellard 已提交
126 127 128
    int no_background;
    int abort_request;
    int paused;
129
    int last_paused;
F
Fabrice Bellard 已提交
130
    int seek_req;
131
    int seek_flags;
F
Fabrice Bellard 已提交
132
    int64_t seek_pos;
133
    int64_t seek_rel;
134
    int read_pause_return;
F
Fabrice Bellard 已提交
135 136 137 138
    AVFormatContext *ic;
    int dtg_active_format;

    int audio_stream;
139

F
Fabrice Bellard 已提交
140
    int av_sync_type;
141 142
    double external_clock; /* external clock base */
    int64_t external_clock_time;
143

144 145 146 147 148
    double audio_clock;
    double audio_diff_cum; /* used for AV difference average computation */
    double audio_diff_avg_coef;
    double audio_diff_threshold;
    int audio_diff_avg_count;
F
Fabrice Bellard 已提交
149 150 151 152 153
    AVStream *audio_st;
    PacketQueue audioq;
    int audio_hw_buf_size;
    /* samples output by the codec. we reserve more space for avsync
       compensation */
154 155
    DECLARE_ALIGNED(16,uint8_t,audio_buf1)[(AVCODEC_MAX_AUDIO_FRAME_SIZE * 3) / 2];
    DECLARE_ALIGNED(16,uint8_t,audio_buf2)[(AVCODEC_MAX_AUDIO_FRAME_SIZE * 3) / 2];
156
    uint8_t *audio_buf;
157
    unsigned int audio_buf_size; /* in bytes */
F
Fabrice Bellard 已提交
158
    int audio_buf_index; /* in bytes */
159
    AVPacket audio_pkt_temp;
F
Fabrice Bellard 已提交
160
    AVPacket audio_pkt;
161 162
    enum SampleFormat audio_src_fmt;
    AVAudioConvert *reformat_ctx;
163

F
Fabrice Bellard 已提交
164 165 166
    int show_audio; /* if true, display audio samples */
    int16_t sample_array[SAMPLE_ARRAY_SIZE];
    int sample_array_index;
167
    int last_i_start;
168 169 170
    RDFTContext rdft;
    int rdft_bits;
    int xpos;
171

172 173 174 175 176 177 178 179 180
    SDL_Thread *subtitle_tid;
    int subtitle_stream;
    int subtitle_stream_changed;
    AVStream *subtitle_st;
    PacketQueue subtitleq;
    SubPicture subpq[SUBPICTURE_QUEUE_SIZE];
    int subpq_size, subpq_rindex, subpq_windex;
    SDL_mutex *subpq_mutex;
    SDL_cond *subpq_cond;
181

182 183 184
    double frame_timer;
    double frame_last_pts;
    double frame_last_delay;
185
    double video_clock;                          ///<pts of last decoded frame / predicted pts of next decoded frame
F
Fabrice Bellard 已提交
186 187 188
    int video_stream;
    AVStream *video_st;
    PacketQueue videoq;
M
Michael Niedermayer 已提交
189
    double video_current_pts;                    ///<current displayed pts (different from video_clock if frame fifos are used)
190
    double video_current_pts_drift;              ///<video_current_pts - time (av_gettime) at which we updated video_current_pts - used to have running video pts
191
    int64_t video_current_pos;                   ///<current displayed file pos
F
Fabrice Bellard 已提交
192 193 194 195
    VideoPicture pictq[VIDEO_PICTURE_QUEUE_SIZE];
    int pictq_size, pictq_rindex, pictq_windex;
    SDL_mutex *pictq_mutex;
    SDL_cond *pictq_cond;
196
#if !CONFIG_AVFILTER
197
    struct SwsContext *img_convert_ctx;
198
#endif
199

F
Fabrice Bellard 已提交
200 201 202
    //    QETimer *video_timer;
    char filename[1024];
    int width, height, xleft, ytop;
203 204 205 206 207 208

    int64_t faulty_pts;
    int64_t faulty_dts;
    int64_t last_dts_for_fault_detection;
    int64_t last_pts_for_fault_detection;

209 210 211
#if CONFIG_AVFILTER
    AVFilterContext *out_video_filter;          ///<the last filter in the video chain
#endif
F
Fabrice Bellard 已提交
212 213
} VideoState;

214
static void show_help(void);
215
static int audio_write_get_buf_size(VideoState *is);
F
Fabrice Bellard 已提交
216 217 218 219 220 221

/* options specified by the user */
static AVInputFormat *file_iformat;
static const char *input_filename;
static int fs_screen_width;
static int fs_screen_height;
222 223
static int screen_width = 0;
static int screen_height = 0;
224 225 226
static int frame_width = 0;
static int frame_height = 0;
static enum PixelFormat frame_pix_fmt = PIX_FMT_NONE;
F
Fabrice Bellard 已提交
227 228
static int audio_disable;
static int video_disable;
229
static int wanted_stream[CODEC_TYPE_NB]={
230 231
    [CODEC_TYPE_AUDIO]=-1,
    [CODEC_TYPE_VIDEO]=-1,
232 233
    [CODEC_TYPE_SUBTITLE]=-1,
};
234
static int seek_by_bytes=-1;
F
Fabrice Bellard 已提交
235
static int display_disable;
236
static int show_status = 1;
237
static int av_sync_type = AV_SYNC_AUDIO_MASTER;
F
Fabrice Bellard 已提交
238
static int64_t start_time = AV_NOPTS_VALUE;
239
static int debug = 0;
240
static int debug_mv = 0;
241
static int step = 0;
242
static int thread_count = 1;
M
-bug  
Michael Niedermayer 已提交
243
static int workaround_bugs = 1;
244
static int fast = 0;
245
static int genpts = 0;
M
Michael Niedermayer 已提交
246 247
static int lowres = 0;
static int idct = FF_IDCT_AUTO;
M
Michael Niedermayer 已提交
248 249 250
static enum AVDiscard skip_frame= AVDISCARD_DEFAULT;
static enum AVDiscard skip_idct= AVDISCARD_DEFAULT;
static enum AVDiscard skip_loop_filter= AVDISCARD_DEFAULT;
251
static int error_recognition = FF_ER_CAREFUL;
252
static int error_concealment = 3;
253
static int decoder_reorder_pts= -1;
M
Michael Niedermayer 已提交
254
static int autoexit;
255 256 257
#if CONFIG_AVFILTER
static char *vfilters = NULL;
#endif
F
Fabrice Bellard 已提交
258 259 260 261

/* current context */
static int is_full_screen;
static VideoState *cur_stream;
262
static int64_t audio_callback_time;
F
Fabrice Bellard 已提交
263

264
static AVPacket flush_pkt;
265

F
Fabrice Bellard 已提交
266 267
#define FF_ALLOC_EVENT   (SDL_USEREVENT)
#define FF_REFRESH_EVENT (SDL_USEREVENT + 1)
268
#define FF_QUIT_EVENT    (SDL_USEREVENT + 2)
F
Fabrice Bellard 已提交
269

270
static SDL_Surface *screen;
F
Fabrice Bellard 已提交
271

272 273
static int packet_queue_put(PacketQueue *q, AVPacket *pkt);

F
Fabrice Bellard 已提交
274 275 276 277 278 279
/* packet queue handling */
static void packet_queue_init(PacketQueue *q)
{
    memset(q, 0, sizeof(PacketQueue));
    q->mutex = SDL_CreateMutex();
    q->cond = SDL_CreateCond();
280
    packet_queue_put(q, &flush_pkt);
F
Fabrice Bellard 已提交
281 282
}

F
Fabrice Bellard 已提交
283
static void packet_queue_flush(PacketQueue *q)
F
Fabrice Bellard 已提交
284 285 286
{
    AVPacketList *pkt, *pkt1;

287
    SDL_LockMutex(q->mutex);
F
Fabrice Bellard 已提交
288 289 290
    for(pkt = q->first_pkt; pkt != NULL; pkt = pkt1) {
        pkt1 = pkt->next;
        av_free_packet(&pkt->pkt);
291
        av_freep(&pkt);
F
Fabrice Bellard 已提交
292
    }
F
Fabrice Bellard 已提交
293 294 295 296
    q->last_pkt = NULL;
    q->first_pkt = NULL;
    q->nb_packets = 0;
    q->size = 0;
297
    SDL_UnlockMutex(q->mutex);
F
Fabrice Bellard 已提交
298 299 300 301 302
}

static void packet_queue_end(PacketQueue *q)
{
    packet_queue_flush(q);
F
Fabrice Bellard 已提交
303 304 305 306 307 308 309 310
    SDL_DestroyMutex(q->mutex);
    SDL_DestroyCond(q->cond);
}

static int packet_queue_put(PacketQueue *q, AVPacket *pkt)
{
    AVPacketList *pkt1;

F
Fabrice Bellard 已提交
311
    /* duplicate the packet */
312
    if (pkt!=&flush_pkt && av_dup_packet(pkt) < 0)
F
Fabrice Bellard 已提交
313
        return -1;
314

F
Fabrice Bellard 已提交
315 316 317 318 319 320
    pkt1 = av_malloc(sizeof(AVPacketList));
    if (!pkt1)
        return -1;
    pkt1->pkt = *pkt;
    pkt1->next = NULL;

F
Fabrice Bellard 已提交
321

F
Fabrice Bellard 已提交
322 323 324 325 326 327 328 329 330
    SDL_LockMutex(q->mutex);

    if (!q->last_pkt)

        q->first_pkt = pkt1;
    else
        q->last_pkt->next = pkt1;
    q->last_pkt = pkt1;
    q->nb_packets++;
331
    q->size += pkt1->pkt.size + sizeof(*pkt1);
F
Fabrice Bellard 已提交
332 333 334 335 336 337 338 339 340 341 342 343
    /* XXX: should duplicate packet data in DV case */
    SDL_CondSignal(q->cond);

    SDL_UnlockMutex(q->mutex);
    return 0;
}

static void packet_queue_abort(PacketQueue *q)
{
    SDL_LockMutex(q->mutex);

    q->abort_request = 1;
344

F
Fabrice Bellard 已提交
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
    SDL_CondSignal(q->cond);

    SDL_UnlockMutex(q->mutex);
}

/* return < 0 if aborted, 0 if no packet and > 0 if packet.  */
static int packet_queue_get(PacketQueue *q, AVPacket *pkt, int block)
{
    AVPacketList *pkt1;
    int ret;

    SDL_LockMutex(q->mutex);

    for(;;) {
        if (q->abort_request) {
            ret = -1;
            break;
        }
363

F
Fabrice Bellard 已提交
364 365 366 367 368 369
        pkt1 = q->first_pkt;
        if (pkt1) {
            q->first_pkt = pkt1->next;
            if (!q->first_pkt)
                q->last_pkt = NULL;
            q->nb_packets--;
370
            q->size -= pkt1->pkt.size + sizeof(*pkt1);
F
Fabrice Bellard 已提交
371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
            *pkt = pkt1->pkt;
            av_free(pkt1);
            ret = 1;
            break;
        } else if (!block) {
            ret = 0;
            break;
        } else {
            SDL_CondWait(q->cond, q->mutex);
        }
    }
    SDL_UnlockMutex(q->mutex);
    return ret;
}

386
static inline void fill_rectangle(SDL_Surface *screen,
F
Fabrice Bellard 已提交
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
                                  int x, int y, int w, int h, int color)
{
    SDL_Rect rect;
    rect.x = x;
    rect.y = y;
    rect.w = w;
    rect.h = h;
    SDL_FillRect(screen, &rect, color);
}

#if 0
/* draw only the border of a rectangle */
void fill_border(VideoState *s, int x, int y, int w, int h, int color)
{
    int w1, w2, h1, h2;

    /* fill the background */
    w1 = x;
    if (w1 < 0)
        w1 = 0;
    w2 = s->width - (x + w);
    if (w2 < 0)
        w2 = 0;
    h1 = y;
    if (h1 < 0)
        h1 = 0;
    h2 = s->height - (y + h);
    if (h2 < 0)
        h2 = 0;
416 417 418
    fill_rectangle(screen,
                   s->xleft, s->ytop,
                   w1, s->height,
F
Fabrice Bellard 已提交
419
                   color);
420 421 422
    fill_rectangle(screen,
                   s->xleft + s->width - w2, s->ytop,
                   w2, s->height,
F
Fabrice Bellard 已提交
423
                   color);
424 425 426
    fill_rectangle(screen,
                   s->xleft + w1, s->ytop,
                   s->width - w1 - w2, h1,
F
Fabrice Bellard 已提交
427
                   color);
428
    fill_rectangle(screen,
F
Fabrice Bellard 已提交
429 430 431 432 433 434
                   s->xleft + w1, s->ytop + s->height - h2,
                   s->width - w1 - w2, h2,
                   color);
}
#endif

435 436 437 438 439 440 441 442 443 444 445 446 447 448
#define ALPHA_BLEND(a, oldp, newp, s)\
((((oldp << s) * (255 - (a))) + (newp * (a))) / (255 << s))

#define RGBA_IN(r, g, b, a, s)\
{\
    unsigned int v = ((const uint32_t *)(s))[0];\
    a = (v >> 24) & 0xff;\
    r = (v >> 16) & 0xff;\
    g = (v >> 8) & 0xff;\
    b = v & 0xff;\
}

#define YUVA_IN(y, u, v, a, s, pal)\
{\
449
    unsigned int val = ((const uint32_t *)(pal))[*(const uint8_t*)(s)];\
450 451 452 453 454 455 456 457 458 459 460 461 462 463
    a = (val >> 24) & 0xff;\
    y = (val >> 16) & 0xff;\
    u = (val >> 8) & 0xff;\
    v = val & 0xff;\
}

#define YUVA_OUT(d, y, u, v, a)\
{\
    ((uint32_t *)(d))[0] = (a << 24) | (y << 16) | (u << 8) | v;\
}


#define BPP 1

464
static void blend_subrect(AVPicture *dst, const AVSubtitleRect *rect, int imgw, int imgh)
465 466 467 468 469 470
{
    int wrap, wrap3, width2, skip2;
    int y, u, v, a, u1, v1, a1, w, h;
    uint8_t *lum, *cb, *cr;
    const uint8_t *p;
    const uint32_t *pal;
471 472
    int dstx, dsty, dstw, dsth;

473 474 475 476
    dstw = av_clip(rect->w, 0, imgw);
    dsth = av_clip(rect->h, 0, imgh);
    dstx = av_clip(rect->x, 0, imgw - dstw);
    dsty = av_clip(rect->y, 0, imgh - dsth);
477 478 479 480
    lum = dst->data[0] + dsty * dst->linesize[0];
    cb = dst->data[1] + (dsty >> 1) * dst->linesize[1];
    cr = dst->data[2] + (dsty >> 1) * dst->linesize[2];

481
    width2 = ((dstw + 1) >> 1) + (dstx & ~dstw & 1);
482
    skip2 = dstx >> 1;
483
    wrap = dst->linesize[0];
484 485 486
    wrap3 = rect->pict.linesize[0];
    p = rect->pict.data[0];
    pal = (const uint32_t *)rect->pict.data[1];  /* Now in YCrCb! */
487

488 489
    if (dsty & 1) {
        lum += dstx;
490 491
        cb += skip2;
        cr += skip2;
492

493
        if (dstx & 1) {
494 495 496 497 498 499 500 501 502
            YUVA_IN(y, u, v, a, p, pal);
            lum[0] = ALPHA_BLEND(a, lum[0], y, 0);
            cb[0] = ALPHA_BLEND(a >> 2, cb[0], u, 0);
            cr[0] = ALPHA_BLEND(a >> 2, cr[0], v, 0);
            cb++;
            cr++;
            lum++;
            p += BPP;
        }
503
        for(w = dstw - (dstx & 1); w >= 2; w -= 2) {
504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
            YUVA_IN(y, u, v, a, p, pal);
            u1 = u;
            v1 = v;
            a1 = a;
            lum[0] = ALPHA_BLEND(a, lum[0], y, 0);

            YUVA_IN(y, u, v, a, p + BPP, pal);
            u1 += u;
            v1 += v;
            a1 += a;
            lum[1] = ALPHA_BLEND(a, lum[1], y, 0);
            cb[0] = ALPHA_BLEND(a1 >> 2, cb[0], u1, 1);
            cr[0] = ALPHA_BLEND(a1 >> 2, cr[0], v1, 1);
            cb++;
            cr++;
            p += 2 * BPP;
            lum += 2;
        }
        if (w) {
            YUVA_IN(y, u, v, a, p, pal);
            lum[0] = ALPHA_BLEND(a, lum[0], y, 0);
            cb[0] = ALPHA_BLEND(a >> 2, cb[0], u, 0);
            cr[0] = ALPHA_BLEND(a >> 2, cr[0], v, 0);
527 528
            p++;
            lum++;
529
        }
530 531
        p += wrap3 - dstw * BPP;
        lum += wrap - dstw - dstx;
532 533 534
        cb += dst->linesize[1] - width2 - skip2;
        cr += dst->linesize[2] - width2 - skip2;
    }
535 536
    for(h = dsth - (dsty & 1); h >= 2; h -= 2) {
        lum += dstx;
537 538
        cb += skip2;
        cr += skip2;
539

540
        if (dstx & 1) {
541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559
            YUVA_IN(y, u, v, a, p, pal);
            u1 = u;
            v1 = v;
            a1 = a;
            lum[0] = ALPHA_BLEND(a, lum[0], y, 0);
            p += wrap3;
            lum += wrap;
            YUVA_IN(y, u, v, a, p, pal);
            u1 += u;
            v1 += v;
            a1 += a;
            lum[0] = ALPHA_BLEND(a, lum[0], y, 0);
            cb[0] = ALPHA_BLEND(a1 >> 2, cb[0], u1, 1);
            cr[0] = ALPHA_BLEND(a1 >> 2, cr[0], v1, 1);
            cb++;
            cr++;
            p += -wrap3 + BPP;
            lum += -wrap + 1;
        }
560
        for(w = dstw - (dstx & 1); w >= 2; w -= 2) {
561 562 563 564 565 566
            YUVA_IN(y, u, v, a, p, pal);
            u1 = u;
            v1 = v;
            a1 = a;
            lum[0] = ALPHA_BLEND(a, lum[0], y, 0);

567
            YUVA_IN(y, u, v, a, p + BPP, pal);
568 569 570 571 572 573 574 575 576 577 578 579 580
            u1 += u;
            v1 += v;
            a1 += a;
            lum[1] = ALPHA_BLEND(a, lum[1], y, 0);
            p += wrap3;
            lum += wrap;

            YUVA_IN(y, u, v, a, p, pal);
            u1 += u;
            v1 += v;
            a1 += a;
            lum[0] = ALPHA_BLEND(a, lum[0], y, 0);

581
            YUVA_IN(y, u, v, a, p + BPP, pal);
582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614
            u1 += u;
            v1 += v;
            a1 += a;
            lum[1] = ALPHA_BLEND(a, lum[1], y, 0);

            cb[0] = ALPHA_BLEND(a1 >> 2, cb[0], u1, 2);
            cr[0] = ALPHA_BLEND(a1 >> 2, cr[0], v1, 2);

            cb++;
            cr++;
            p += -wrap3 + 2 * BPP;
            lum += -wrap + 2;
        }
        if (w) {
            YUVA_IN(y, u, v, a, p, pal);
            u1 = u;
            v1 = v;
            a1 = a;
            lum[0] = ALPHA_BLEND(a, lum[0], y, 0);
            p += wrap3;
            lum += wrap;
            YUVA_IN(y, u, v, a, p, pal);
            u1 += u;
            v1 += v;
            a1 += a;
            lum[0] = ALPHA_BLEND(a, lum[0], y, 0);
            cb[0] = ALPHA_BLEND(a1 >> 2, cb[0], u1, 1);
            cr[0] = ALPHA_BLEND(a1 >> 2, cr[0], v1, 1);
            cb++;
            cr++;
            p += -wrap3 + BPP;
            lum += -wrap + 1;
        }
615 616
        p += wrap3 + (wrap3 - dstw * BPP);
        lum += wrap + (wrap - dstw - dstx);
617 618 619 620 621
        cb += dst->linesize[1] - width2 - skip2;
        cr += dst->linesize[2] - width2 - skip2;
    }
    /* handle odd height */
    if (h) {
622
        lum += dstx;
623 624
        cb += skip2;
        cr += skip2;
625

626
        if (dstx & 1) {
627 628 629 630 631 632 633 634 635
            YUVA_IN(y, u, v, a, p, pal);
            lum[0] = ALPHA_BLEND(a, lum[0], y, 0);
            cb[0] = ALPHA_BLEND(a >> 2, cb[0], u, 0);
            cr[0] = ALPHA_BLEND(a >> 2, cr[0], v, 0);
            cb++;
            cr++;
            lum++;
            p += BPP;
        }
636
        for(w = dstw - (dstx & 1); w >= 2; w -= 2) {
637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666
            YUVA_IN(y, u, v, a, p, pal);
            u1 = u;
            v1 = v;
            a1 = a;
            lum[0] = ALPHA_BLEND(a, lum[0], y, 0);

            YUVA_IN(y, u, v, a, p + BPP, pal);
            u1 += u;
            v1 += v;
            a1 += a;
            lum[1] = ALPHA_BLEND(a, lum[1], y, 0);
            cb[0] = ALPHA_BLEND(a1 >> 2, cb[0], u, 1);
            cr[0] = ALPHA_BLEND(a1 >> 2, cr[0], v, 1);
            cb++;
            cr++;
            p += 2 * BPP;
            lum += 2;
        }
        if (w) {
            YUVA_IN(y, u, v, a, p, pal);
            lum[0] = ALPHA_BLEND(a, lum[0], y, 0);
            cb[0] = ALPHA_BLEND(a >> 2, cb[0], u, 0);
            cr[0] = ALPHA_BLEND(a >> 2, cr[0], v, 0);
        }
    }
}

static void free_subpicture(SubPicture *sp)
{
    int i;
667

668 669
    for (i = 0; i < sp->sub.num_rects; i++)
    {
670 671
        av_freep(&sp->sub.rects[i]->pict.data[0]);
        av_freep(&sp->sub.rects[i]->pict.data[1]);
672
        av_freep(&sp->sub.rects[i]);
673
    }
674

675
    av_free(sp->sub.rects);
676

677 678 679
    memset(&sp->sub, 0, sizeof(AVSubtitle));
}

F
Fabrice Bellard 已提交
680 681 682
static void video_image_display(VideoState *is)
{
    VideoPicture *vp;
683 684
    SubPicture *sp;
    AVPicture pict;
F
Fabrice Bellard 已提交
685 686 687
    float aspect_ratio;
    int width, height, x, y;
    SDL_Rect rect;
688
    int i;
F
Fabrice Bellard 已提交
689 690 691

    vp = &is->pictq[is->pictq_rindex];
    if (vp->bmp) {
692 693 694 695 696 697 698
#if CONFIG_AVFILTER
         if (vp->picref->pixel_aspect.num == 0)
             aspect_ratio = 0;
         else
             aspect_ratio = av_q2d(vp->picref->pixel_aspect);
#else

F
Fabrice Bellard 已提交
699
        /* XXX: use variable in the frame */
700 701 702 703
        if (is->video_st->sample_aspect_ratio.num)
            aspect_ratio = av_q2d(is->video_st->sample_aspect_ratio);
        else if (is->video_st->codec->sample_aspect_ratio.num)
            aspect_ratio = av_q2d(is->video_st->codec->sample_aspect_ratio);
F
Fabrice Bellard 已提交
704
        else
705
            aspect_ratio = 0;
706
#endif
F
Fabrice Bellard 已提交
707
        if (aspect_ratio <= 0.0)
708
            aspect_ratio = 1.0;
709
        aspect_ratio *= (float)vp->width / (float)vp->height;
F
Fabrice Bellard 已提交
710 711 712
        /* if an active format is indicated, then it overrides the
           mpeg format */
#if 0
713 714
        if (is->video_st->codec->dtg_active_format != is->dtg_active_format) {
            is->dtg_active_format = is->video_st->codec->dtg_active_format;
F
Fabrice Bellard 已提交
715 716 717 718
            printf("dtg_active_format=%d\n", is->dtg_active_format);
        }
#endif
#if 0
719
        switch(is->video_st->codec->dtg_active_format) {
F
Fabrice Bellard 已提交
720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744
        case FF_DTG_AFD_SAME:
        default:
            /* nothing to do */
            break;
        case FF_DTG_AFD_4_3:
            aspect_ratio = 4.0 / 3.0;
            break;
        case FF_DTG_AFD_16_9:
            aspect_ratio = 16.0 / 9.0;
            break;
        case FF_DTG_AFD_14_9:
            aspect_ratio = 14.0 / 9.0;
            break;
        case FF_DTG_AFD_4_3_SP_14_9:
            aspect_ratio = 14.0 / 9.0;
            break;
        case FF_DTG_AFD_16_9_SP_14_9:
            aspect_ratio = 14.0 / 9.0;
            break;
        case FF_DTG_AFD_SP_4_3:
            aspect_ratio = 4.0 / 3.0;
            break;
        }
#endif

745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763
        if (is->subtitle_st)
        {
            if (is->subpq_size > 0)
            {
                sp = &is->subpq[is->subpq_rindex];

                if (vp->pts >= sp->pts + ((float) sp->sub.start_display_time / 1000))
                {
                    SDL_LockYUVOverlay (vp->bmp);

                    pict.data[0] = vp->bmp->pixels[0];
                    pict.data[1] = vp->bmp->pixels[2];
                    pict.data[2] = vp->bmp->pixels[1];

                    pict.linesize[0] = vp->bmp->pitches[0];
                    pict.linesize[1] = vp->bmp->pitches[2];
                    pict.linesize[2] = vp->bmp->pitches[1];

                    for (i = 0; i < sp->sub.num_rects; i++)
764
                        blend_subrect(&pict, sp->sub.rects[i],
765
                                      vp->bmp->w, vp->bmp->h);
766 767 768 769 770 771 772

                    SDL_UnlockYUVOverlay (vp->bmp);
                }
            }
        }


F
Fabrice Bellard 已提交
773 774
        /* XXX: we suppose the screen has a 1.0 pixel ratio */
        height = is->height;
775
        width = ((int)rint(height * aspect_ratio)) & ~1;
F
Fabrice Bellard 已提交
776 777
        if (width > is->width) {
            width = is->width;
778
            height = ((int)rint(width / aspect_ratio)) & ~1;
F
Fabrice Bellard 已提交
779 780 781 782 783 784 785 786 787 788
        }
        x = (is->width - width) / 2;
        y = (is->height - height) / 2;
        if (!is->no_background) {
            /* fill the background */
            //            fill_border(is, x, y, width, height, QERGB(0x00, 0x00, 0x00));
        } else {
            is->no_background = 0;
        }
        rect.x = is->xleft + x;
B
Baptiste Coudurier 已提交
789
        rect.y = is->ytop  + y;
F
Fabrice Bellard 已提交
790 791 792 793 794
        rect.w = width;
        rect.h = height;
        SDL_DisplayYUVOverlay(vp->bmp, &rect);
    } else {
#if 0
795 796
        fill_rectangle(screen,
                       is->xleft, is->ytop, is->width, is->height,
F
Fabrice Bellard 已提交
797 798 799 800 801 802 803 804
                       QERGB(0x00, 0x00, 0x00));
#endif
    }
}

static inline int compute_mod(int a, int b)
{
    a = a % b;
805
    if (a >= 0)
F
Fabrice Bellard 已提交
806 807 808 809 810 811 812 813 814 815
        return a;
    else
        return a + b;
}

static void video_audio_display(VideoState *s)
{
    int i, i_start, x, y1, y, ys, delay, n, nb_display_channels;
    int ch, channels, h, h2, bgcolor, fgcolor;
    int16_t time_diff;
816 817 818 819 820
    int rdft_bits, nb_freq;

    for(rdft_bits=1; (1<<rdft_bits)<2*s->height; rdft_bits++)
        ;
    nb_freq= 1<<(rdft_bits-1);
821

F
Fabrice Bellard 已提交
822
    /* compute display index : center on currently output samples */
823
    channels = s->audio_st->codec->channels;
F
Fabrice Bellard 已提交
824
    nb_display_channels = channels;
825
    if (!s->paused) {
826
        int data_used= s->show_audio==1 ? s->width : (2*nb_freq);
827 828 829
        n = 2 * channels;
        delay = audio_write_get_buf_size(s);
        delay /= n;
830

831 832 833 834
        /* to be more precise, we take into account the time spent since
           the last buffer computation */
        if (audio_callback_time) {
            time_diff = av_gettime() - audio_callback_time;
835
            delay += (time_diff * s->audio_st->codec->sample_rate) / 1000000;
836
        }
837

838 839 840
        delay -= data_used / 2;
        if (delay < data_used)
            delay = data_used;
841 842

        i_start= x = compute_mod(s->sample_array_index - delay * channels, SAMPLE_ARRAY_SIZE);
843
        if(s->show_audio==1){
J
Jai Menon 已提交
844 845 846 847 848 849 850 851 852 853 854 855
            h= INT_MIN;
            for(i=0; i<1000; i+=channels){
                int idx= (SAMPLE_ARRAY_SIZE + x - i) % SAMPLE_ARRAY_SIZE;
                int a= s->sample_array[idx];
                int b= s->sample_array[(idx + 4*channels)%SAMPLE_ARRAY_SIZE];
                int c= s->sample_array[(idx + 5*channels)%SAMPLE_ARRAY_SIZE];
                int d= s->sample_array[(idx + 9*channels)%SAMPLE_ARRAY_SIZE];
                int score= a-d;
                if(h<score && (b^c)<0){
                    h= score;
                    i_start= idx;
                }
856 857 858
            }
        }

859 860 861
        s->last_i_start = i_start;
    } else {
        i_start = s->last_i_start;
F
Fabrice Bellard 已提交
862 863 864
    }

    bgcolor = SDL_MapRGB(screen->format, 0x00, 0x00, 0x00);
865
    if(s->show_audio==1){
J
Jai Menon 已提交
866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892
        fill_rectangle(screen,
                       s->xleft, s->ytop, s->width, s->height,
                       bgcolor);

        fgcolor = SDL_MapRGB(screen->format, 0xff, 0xff, 0xff);

        /* total height for one channel */
        h = s->height / nb_display_channels;
        /* graph height / 2 */
        h2 = (h * 9) / 20;
        for(ch = 0;ch < nb_display_channels; ch++) {
            i = i_start + ch;
            y1 = s->ytop + ch * h + (h / 2); /* position of center line */
            for(x = 0; x < s->width; x++) {
                y = (s->sample_array[i] * h2) >> 15;
                if (y < 0) {
                    y = -y;
                    ys = y1 - y;
                } else {
                    ys = y1;
                }
                fill_rectangle(screen,
                               s->xleft + x, ys, 1, y,
                               fgcolor);
                i += channels;
                if (i >= SAMPLE_ARRAY_SIZE)
                    i -= SAMPLE_ARRAY_SIZE;
F
Fabrice Bellard 已提交
893 894 895
            }
        }

J
Jai Menon 已提交
896
        fgcolor = SDL_MapRGB(screen->format, 0x00, 0x00, 0xff);
F
Fabrice Bellard 已提交
897

J
Jai Menon 已提交
898 899 900 901 902 903 904
        for(ch = 1;ch < nb_display_channels; ch++) {
            y = s->ytop + ch * h;
            fill_rectangle(screen,
                           s->xleft, y, s->width, 1,
                           fgcolor);
        }
        SDL_UpdateRect(screen, s->xleft, s->ytop, s->width, s->height);
905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925
    }else{
        nb_display_channels= FFMIN(nb_display_channels, 2);
        if(rdft_bits != s->rdft_bits){
            ff_rdft_end(&s->rdft);
            ff_rdft_init(&s->rdft, rdft_bits, RDFT);
            s->rdft_bits= rdft_bits;
        }
        {
            FFTSample data[2][2*nb_freq];
            for(ch = 0;ch < nb_display_channels; ch++) {
                i = i_start + ch;
                for(x = 0; x < 2*nb_freq; x++) {
                    double w= (x-nb_freq)*(1.0/nb_freq);
                    data[ch][x]= s->sample_array[i]*(1.0-w*w);
                    i += channels;
                    if (i >= SAMPLE_ARRAY_SIZE)
                        i -= SAMPLE_ARRAY_SIZE;
                }
                ff_rdft_calc(&s->rdft, data[ch]);
            }
            //least efficient way to do this, we should of course directly access it but its more than fast enough
926
            for(y=0; y<s->height; y++){
927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943
                double w= 1/sqrt(nb_freq);
                int a= sqrt(w*sqrt(data[0][2*y+0]*data[0][2*y+0] + data[0][2*y+1]*data[0][2*y+1]));
                int b= sqrt(w*sqrt(data[1][2*y+0]*data[1][2*y+0] + data[1][2*y+1]*data[1][2*y+1]));
                a= FFMIN(a,255);
                b= FFMIN(b,255);
                fgcolor = SDL_MapRGB(screen->format, a, b, (a+b)/2);

                fill_rectangle(screen,
                            s->xpos, s->height-y, 1, 1,
                            fgcolor);
            }
        }
        SDL_UpdateRect(screen, s->xpos, s->ytop, 1, s->height);
        s->xpos++;
        if(s->xpos >= s->width)
            s->xpos= s->xleft;
    }
F
Fabrice Bellard 已提交
944 945
}

946 947 948 949
static int video_open(VideoState *is){
    int flags = SDL_HWSURFACE|SDL_ASYNCBLIT|SDL_HWACCEL;
    int w,h;

950 951 952
    if(is_full_screen) flags |= SDL_FULLSCREEN;
    else               flags |= SDL_RESIZABLE;

953 954 955
    if (is_full_screen && fs_screen_width) {
        w = fs_screen_width;
        h = fs_screen_height;
956 957 958
    } else if(!is_full_screen && screen_width){
        w = screen_width;
        h = screen_height;
959 960 961 962 963
#if CONFIG_AVFILTER
    }else if (is->out_video_filter && is->out_video_filter->inputs[0]){
        w = is->out_video_filter->inputs[0]->w;
        h = is->out_video_filter->inputs[0]->h;
#else
964 965 966
    }else if (is->video_st && is->video_st->codec->width){
        w = is->video_st->codec->width;
        h = is->video_st->codec->height;
967
#endif
968
    } else {
969 970
        w = 640;
        h = 480;
971
    }
972
#ifndef __APPLE__
973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988
    screen = SDL_SetVideoMode(w, h, 0, flags);
#else
    /* setting bits_per_pixel = 0 or 32 causes blank video on OS X */
    screen = SDL_SetVideoMode(w, h, 24, flags);
#endif
    if (!screen) {
        fprintf(stderr, "SDL: could not set video mode - exiting\n");
        return -1;
    }
    SDL_WM_SetCaption("FFplay", "FFplay");

    is->width = screen->w;
    is->height = screen->h;

    return 0;
}
989

F
Fabrice Bellard 已提交
990 991 992
/* display the current picture, if any */
static void video_display(VideoState *is)
{
993 994
    if(!screen)
        video_open(cur_stream);
995
    if (is->audio_st && is->show_audio)
F
Fabrice Bellard 已提交
996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
        video_audio_display(is);
    else if (is->video_st)
        video_image_display(is);
}

static Uint32 sdl_refresh_timer_cb(Uint32 interval, void *opaque)
{
    SDL_Event event;
    event.type = FF_REFRESH_EVENT;
    event.user.data1 = opaque;
    SDL_PushEvent(&event);
    return 0; /* 0 means stop timer */
}

/* schedule a video refresh in 'delay' ms */
1011
static SDL_TimerID schedule_refresh(VideoState *is, int delay)
F
Fabrice Bellard 已提交
1012
{
1013
    if(!delay) delay=1; //SDL seems to be buggy when the delay is 0
1014
    return SDL_AddTimer(delay, sdl_refresh_timer_cb, is);
F
Fabrice Bellard 已提交
1015 1016
}

1017 1018 1019 1020 1021 1022 1023 1024 1025
/* get the current audio clock value */
static double get_audio_clock(VideoState *is)
{
    double pts;
    int hw_buf_size, bytes_per_sec;
    pts = is->audio_clock;
    hw_buf_size = audio_write_get_buf_size(is);
    bytes_per_sec = 0;
    if (is->audio_st) {
1026
        bytes_per_sec = is->audio_st->codec->sample_rate *
1027
            2 * is->audio_st->codec->channels;
1028 1029 1030 1031 1032 1033 1034 1035 1036
    }
    if (bytes_per_sec)
        pts -= (double)hw_buf_size / bytes_per_sec;
    return pts;
}

/* get the current video clock value */
static double get_video_clock(VideoState *is)
{
M
oops  
Michael Niedermayer 已提交
1037
    if (is->paused) {
M
Michael Niedermayer 已提交
1038
        return is->video_current_pts;
F
Fabrice Bellard 已提交
1039
    } else {
1040
        return is->video_current_pts_drift + av_gettime() / 1000000.0;
F
Fabrice Bellard 已提交
1041
    }
1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056
}

/* get the current external clock value */
static double get_external_clock(VideoState *is)
{
    int64_t ti;
    ti = av_gettime();
    return is->external_clock + ((ti - is->external_clock_time) * 1e-6);
}

/* get the current master clock value */
static double get_master_clock(VideoState *is)
{
    double val;

F
Fabrice Bellard 已提交
1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067
    if (is->av_sync_type == AV_SYNC_VIDEO_MASTER) {
        if (is->video_st)
            val = get_video_clock(is);
        else
            val = get_audio_clock(is);
    } else if (is->av_sync_type == AV_SYNC_AUDIO_MASTER) {
        if (is->audio_st)
            val = get_audio_clock(is);
        else
            val = get_video_clock(is);
    } else {
1068
        val = get_external_clock(is);
F
Fabrice Bellard 已提交
1069
    }
1070 1071 1072
    return val;
}

F
Fabrice Bellard 已提交
1073
/* seek in the stream */
1074
static void stream_seek(VideoState *is, int64_t pos, int64_t rel, int seek_by_bytes)
F
Fabrice Bellard 已提交
1075
{
1076 1077
    if (!is->seek_req) {
        is->seek_pos = pos;
1078
        is->seek_rel = rel;
M
Michael Niedermayer 已提交
1079
        is->seek_flags &= ~AVSEEK_FLAG_BYTE;
1080 1081
        if (seek_by_bytes)
            is->seek_flags |= AVSEEK_FLAG_BYTE;
1082 1083
        is->seek_req = 1;
    }
F
Fabrice Bellard 已提交
1084 1085 1086 1087 1088
}

/* pause or resume the video */
static void stream_pause(VideoState *is)
{
1089 1090
    if (is->paused) {
        is->frame_timer += av_gettime() / 1000000.0 + is->video_current_pts_drift - is->video_current_pts;
1091
        if(is->read_pause_return != AVERROR(ENOSYS)){
1092
            is->video_current_pts = is->video_current_pts_drift + av_gettime() / 1000000.0;
1093
        }
1094
        is->video_current_pts_drift = is->video_current_pts - av_gettime() / 1000000.0;
F
Fabrice Bellard 已提交
1095
    }
1096
    is->paused = !is->paused;
F
Fabrice Bellard 已提交
1097 1098
}

1099 1100
static double compute_frame_delay(double frame_current_pts, VideoState *is)
{
1101
    double actual_delay, delay, sync_threshold, diff;
1102 1103 1104 1105 1106 1107

    /* compute nominal delay */
    delay = frame_current_pts - is->frame_last_pts;
    if (delay <= 0 || delay >= 10.0) {
        /* if incorrect delay, use previous one */
        delay = is->frame_last_delay;
1108
    } else {
1109
        is->frame_last_delay = delay;
1110
    }
1111 1112 1113 1114 1115 1116 1117
    is->frame_last_pts = frame_current_pts;

    /* update delay to follow master synchronisation source */
    if (((is->av_sync_type == AV_SYNC_AUDIO_MASTER && is->audio_st) ||
         is->av_sync_type == AV_SYNC_EXTERNAL_CLOCK)) {
        /* if video is slave, we try to correct big delays by
           duplicating or deleting a frame */
1118
        diff = get_video_clock(is) - get_master_clock(is);
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140

        /* skip or repeat frame. We take into account the
           delay to compute the threshold. I still don't know
           if it is the best guess */
        sync_threshold = FFMAX(AV_SYNC_THRESHOLD, delay);
        if (fabs(diff) < AV_NOSYNC_THRESHOLD) {
            if (diff <= -sync_threshold)
                delay = 0;
            else if (diff >= sync_threshold)
                delay = 2 * delay;
        }
    }

    is->frame_timer += delay;
    /* compute the REAL delay (we need to do that to avoid
       long term errors */
    actual_delay = is->frame_timer - (av_gettime() / 1000000.0);
    if (actual_delay < 0.010) {
        /* XXX: should skip picture */
        actual_delay = 0.010;
    }

1141 1142 1143 1144 1145
#if defined(DEBUG_SYNC)
    printf("video: delay=%0.3f actual_delay=%0.3f pts=%0.3f A-V=%f\n",
            delay, actual_delay, frame_current_pts, -diff);
#endif

1146 1147 1148
    return actual_delay;
}

F
Fabrice Bellard 已提交
1149 1150 1151 1152 1153
/* called to display each frame */
static void video_refresh_timer(void *opaque)
{
    VideoState *is = opaque;
    VideoPicture *vp;
1154

1155
    SubPicture *sp, *sp2;
F
Fabrice Bellard 已提交
1156 1157 1158

    if (is->video_st) {
        if (is->pictq_size == 0) {
1159
            fprintf(stderr, "Internal error detected in the SDL timer\n");
F
Fabrice Bellard 已提交
1160
        } else {
1161
            /* dequeue the picture */
F
Fabrice Bellard 已提交
1162
            vp = &is->pictq[is->pictq_rindex];
1163 1164 1165

            /* update current video pts */
            is->video_current_pts = vp->pts;
1166
            is->video_current_pts_drift = is->video_current_pts - av_gettime() / 1000000.0;
1167
            is->video_current_pos = vp->pos;
1168

1169 1170 1171
            if(is->subtitle_st) {
                if (is->subtitle_stream_changed) {
                    SDL_LockMutex(is->subpq_mutex);
1172

1173 1174
                    while (is->subpq_size) {
                        free_subpicture(&is->subpq[is->subpq_rindex]);
1175

1176 1177 1178
                        /* update queue size and signal for next picture */
                        if (++is->subpq_rindex == SUBPICTURE_QUEUE_SIZE)
                            is->subpq_rindex = 0;
1179

1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212
                        is->subpq_size--;
                    }
                    is->subtitle_stream_changed = 0;

                    SDL_CondSignal(is->subpq_cond);
                    SDL_UnlockMutex(is->subpq_mutex);
                } else {
                    if (is->subpq_size > 0) {
                        sp = &is->subpq[is->subpq_rindex];

                        if (is->subpq_size > 1)
                            sp2 = &is->subpq[(is->subpq_rindex + 1) % SUBPICTURE_QUEUE_SIZE];
                        else
                            sp2 = NULL;

                        if ((is->video_current_pts > (sp->pts + ((float) sp->sub.end_display_time / 1000)))
                                || (sp2 && is->video_current_pts > (sp2->pts + ((float) sp2->sub.start_display_time / 1000))))
                        {
                            free_subpicture(sp);

                            /* update queue size and signal for next picture */
                            if (++is->subpq_rindex == SUBPICTURE_QUEUE_SIZE)
                                is->subpq_rindex = 0;

                            SDL_LockMutex(is->subpq_mutex);
                            is->subpq_size--;
                            SDL_CondSignal(is->subpq_cond);
                            SDL_UnlockMutex(is->subpq_mutex);
                        }
                    }
                }
            }

F
Fabrice Bellard 已提交
1213 1214
            /* display picture */
            video_display(is);
1215

F
Fabrice Bellard 已提交
1216 1217 1218
            /* update queue size and signal for next picture */
            if (++is->pictq_rindex == VIDEO_PICTURE_QUEUE_SIZE)
                is->pictq_rindex = 0;
1219

F
Fabrice Bellard 已提交
1220
            SDL_LockMutex(is->pictq_mutex);
1221
            vp->timer_id= 0;
F
Fabrice Bellard 已提交
1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232
            is->pictq_size--;
            SDL_CondSignal(is->pictq_cond);
            SDL_UnlockMutex(is->pictq_mutex);
        }
    } else if (is->audio_st) {
        /* draw the next audio frame */

        schedule_refresh(is, 40);

        /* if only audio stream, then display the audio bars (better
           than nothing, just to test the implementation */
1233

F
Fabrice Bellard 已提交
1234 1235 1236 1237 1238 1239 1240 1241
        /* display picture */
        video_display(is);
    } else {
        schedule_refresh(is, 100);
    }
    if (show_status) {
        static int64_t last_time;
        int64_t cur_time;
1242
        int aqsize, vqsize, sqsize;
1243
        double av_diff;
1244

F
Fabrice Bellard 已提交
1245
        cur_time = av_gettime();
1246
        if (!last_time || (cur_time - last_time) >= 30000) {
F
Fabrice Bellard 已提交
1247 1248
            aqsize = 0;
            vqsize = 0;
1249
            sqsize = 0;
F
Fabrice Bellard 已提交
1250 1251 1252 1253
            if (is->audio_st)
                aqsize = is->audioq.size;
            if (is->video_st)
                vqsize = is->videoq.size;
1254 1255
            if (is->subtitle_st)
                sqsize = is->subtitleq.size;
1256 1257 1258
            av_diff = 0;
            if (is->audio_st && is->video_st)
                av_diff = get_audio_clock(is) - get_video_clock(is);
1259 1260
            printf("%7.2f A-V:%7.3f aq=%5dKB vq=%5dKB sq=%5dB f=%Ld/%Ld   \r",
                   get_master_clock(is), av_diff, aqsize / 1024, vqsize / 1024, sqsize, is->faulty_dts, is->faulty_pts);
F
Fabrice Bellard 已提交
1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278
            fflush(stdout);
            last_time = cur_time;
        }
    }
}

/* allocate a picture (needs to do that in main thread to avoid
   potential locking problems */
static void alloc_picture(void *opaque)
{
    VideoState *is = opaque;
    VideoPicture *vp;

    vp = &is->pictq[is->pictq_windex];

    if (vp->bmp)
        SDL_FreeYUVOverlay(vp->bmp);

1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293
#if CONFIG_AVFILTER
    if (vp->picref)
        avfilter_unref_pic(vp->picref);
    vp->picref = NULL;

    vp->width   = is->out_video_filter->inputs[0]->w;
    vp->height  = is->out_video_filter->inputs[0]->h;
    vp->pix_fmt = is->out_video_filter->inputs[0]->format;
#else
    vp->width   = is->video_st->codec->width;
    vp->height  = is->video_st->codec->height;
    vp->pix_fmt = is->video_st->codec->pix_fmt;
#endif

    vp->bmp = SDL_CreateYUVOverlay(vp->width, vp->height,
1294
                                   SDL_YV12_OVERLAY,
1295
                                   screen);
F
Fabrice Bellard 已提交
1296 1297 1298 1299 1300 1301 1302

    SDL_LockMutex(is->pictq_mutex);
    vp->allocated = 1;
    SDL_CondSignal(is->pictq_cond);
    SDL_UnlockMutex(is->pictq_mutex);
}

M
Michael Niedermayer 已提交
1303 1304 1305 1306
/**
 *
 * @param pts the dts of the pkt / pts of the frame and guessed if not known
 */
1307
static int queue_picture(VideoState *is, AVFrame *src_frame, double pts, int64_t pos)
F
Fabrice Bellard 已提交
1308 1309 1310
{
    VideoPicture *vp;
    int dst_pix_fmt;
1311 1312 1313
#if CONFIG_AVFILTER
    AVPicture pict_src;
#endif
F
Fabrice Bellard 已提交
1314 1315 1316 1317 1318 1319 1320
    /* wait until we have space to put a new picture */
    SDL_LockMutex(is->pictq_mutex);
    while (is->pictq_size >= VIDEO_PICTURE_QUEUE_SIZE &&
           !is->videoq.abort_request) {
        SDL_CondWait(is->pictq_cond, is->pictq_mutex);
    }
    SDL_UnlockMutex(is->pictq_mutex);
1321

F
Fabrice Bellard 已提交
1322 1323 1324 1325 1326 1327
    if (is->videoq.abort_request)
        return -1;

    vp = &is->pictq[is->pictq_windex];

    /* alloc or resize hardware picture buffer */
1328
    if (!vp->bmp ||
1329 1330 1331 1332
#if CONFIG_AVFILTER
        vp->width  != is->out_video_filter->inputs[0]->w ||
        vp->height != is->out_video_filter->inputs[0]->h) {
#else
1333 1334
        vp->width != is->video_st->codec->width ||
        vp->height != is->video_st->codec->height) {
1335
#endif
F
Fabrice Bellard 已提交
1336 1337 1338 1339 1340 1341 1342 1343 1344
        SDL_Event event;

        vp->allocated = 0;

        /* the allocation must be done in the main thread to avoid
           locking problems */
        event.type = FF_ALLOC_EVENT;
        event.user.data1 = is;
        SDL_PushEvent(&event);
1345

F
Fabrice Bellard 已提交
1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356
        /* wait until the picture is allocated */
        SDL_LockMutex(is->pictq_mutex);
        while (!vp->allocated && !is->videoq.abort_request) {
            SDL_CondWait(is->pictq_cond, is->pictq_mutex);
        }
        SDL_UnlockMutex(is->pictq_mutex);

        if (is->videoq.abort_request)
            return -1;
    }

1357
    /* if the frame is not skipped, then display it */
F
Fabrice Bellard 已提交
1358
    if (vp->bmp) {
1359
        AVPicture pict;
1360 1361 1362 1363 1364
#if CONFIG_AVFILTER
        if(vp->picref)
            avfilter_unref_pic(vp->picref);
        vp->picref = src_frame->opaque;
#endif
1365

F
Fabrice Bellard 已提交
1366 1367 1368 1369
        /* get a pointer on the bitmap */
        SDL_LockYUVOverlay (vp->bmp);

        dst_pix_fmt = PIX_FMT_YUV420P;
1370
        memset(&pict,0,sizeof(AVPicture));
F
Fabrice Bellard 已提交
1371 1372 1373 1374 1375 1376 1377
        pict.data[0] = vp->bmp->pixels[0];
        pict.data[1] = vp->bmp->pixels[2];
        pict.data[2] = vp->bmp->pixels[1];

        pict.linesize[0] = vp->bmp->pitches[0];
        pict.linesize[1] = vp->bmp->pitches[2];
        pict.linesize[2] = vp->bmp->pitches[1];
1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391

#if CONFIG_AVFILTER
        pict_src.data[0] = src_frame->data[0];
        pict_src.data[1] = src_frame->data[1];
        pict_src.data[2] = src_frame->data[2];

        pict_src.linesize[0] = src_frame->linesize[0];
        pict_src.linesize[1] = src_frame->linesize[1];
        pict_src.linesize[2] = src_frame->linesize[2];

        //FIXME use direct rendering
        av_picture_copy(&pict, &pict_src,
                        vp->pix_fmt, vp->width, vp->height);
#else
1392
        sws_flags = av_get_int(sws_opts, "sws_flags", NULL);
1393
        is->img_convert_ctx = sws_getCachedContext(is->img_convert_ctx,
1394
            vp->width, vp->height, vp->pix_fmt, vp->width, vp->height,
1395
            dst_pix_fmt, sws_flags, NULL, NULL, NULL);
1396
        if (is->img_convert_ctx == NULL) {
A
Alex Beregszaszi 已提交
1397 1398 1399
            fprintf(stderr, "Cannot initialize the conversion context\n");
            exit(1);
        }
1400
        sws_scale(is->img_convert_ctx, src_frame->data, src_frame->linesize,
1401 1402
                  0, vp->height, pict.data, pict.linesize);
#endif
F
Fabrice Bellard 已提交
1403 1404 1405
        /* update the bitmap content */
        SDL_UnlockYUVOverlay(vp->bmp);

1406
        vp->pts = pts;
1407
        vp->pos = pos;
F
Fabrice Bellard 已提交
1408 1409 1410 1411 1412 1413

        /* now we can update the picture count */
        if (++is->pictq_windex == VIDEO_PICTURE_QUEUE_SIZE)
            is->pictq_windex = 0;
        SDL_LockMutex(is->pictq_mutex);
        is->pictq_size++;
1414 1415
        //We must schedule in a mutex as we must store the timer id before the timer dies or might end up freeing a alraedy freed id
        vp->timer_id= schedule_refresh(is, (int)(compute_frame_delay(vp->pts, is) * 1000 + 0.5));
F
Fabrice Bellard 已提交
1416 1417
        SDL_UnlockMutex(is->pictq_mutex);
    }
1418 1419 1420
    return 0;
}

1421 1422
/**
 * compute the exact PTS for the picture if it is omitted in the stream
M
Michael Niedermayer 已提交
1423 1424
 * @param pts1 the dts of the pkt / pts of the frame
 */
1425
static int output_picture2(VideoState *is, AVFrame *src_frame, double pts1, int64_t pos)
1426 1427
{
    double frame_delay, pts;
1428

1429 1430
    pts = pts1;

F
Fabrice Bellard 已提交
1431
    if (pts != 0) {
1432
        /* update video clock with pts, if present */
F
Fabrice Bellard 已提交
1433 1434
        is->video_clock = pts;
    } else {
F
Fabrice Bellard 已提交
1435 1436 1437
        pts = is->video_clock;
    }
    /* update video clock for next frame */
1438
    frame_delay = av_q2d(is->video_st->codec->time_base);
F
Fabrice Bellard 已提交
1439 1440
    /* for MPEG2, the frame can be repeated, so we update the
       clock accordingly */
M
Michael Niedermayer 已提交
1441
    frame_delay += src_frame->repeat_pict * (frame_delay * 0.5);
F
Fabrice Bellard 已提交
1442
    is->video_clock += frame_delay;
1443 1444 1445 1446 1447 1448 1449 1450 1451 1452

#if defined(DEBUG_SYNC) && 0
    {
        int ftype;
        if (src_frame->pict_type == FF_B_TYPE)
            ftype = 'B';
        else if (src_frame->pict_type == FF_I_TYPE)
            ftype = 'I';
        else
            ftype = 'P';
1453
        printf("frame_type=%c clock=%0.3f pts=%0.3f\n",
F
Fabrice Bellard 已提交
1454
               ftype, pts, pts1);
1455 1456
    }
#endif
1457
    return queue_picture(is, src_frame, pts, pos);
F
Fabrice Bellard 已提交
1458 1459
}

1460
static int get_video_frame(VideoState *is, AVFrame *frame, uint64_t *pts, AVPacket *pkt)
F
Fabrice Bellard 已提交
1461
{
1462
    int len1, got_picture, i;
F
Fabrice Bellard 已提交
1463 1464

        if (packet_queue_get(&is->videoq, pkt, 1) < 0)
1465
            return -1;
1466 1467 1468

        if(pkt->data == flush_pkt.data){
            avcodec_flush_buffers(is->video_st->codec);
1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481

            SDL_LockMutex(is->pictq_mutex);
            //Make sure there are no long delay timers (ideally we should just flush the que but thats harder)
            for(i=0; i<VIDEO_PICTURE_QUEUE_SIZE; i++){
                if(is->pictq[i].timer_id){
                    SDL_RemoveTimer(is->pictq[i].timer_id);
                    is->pictq[i].timer_id=0;
                    schedule_refresh(is, 1);
                }
            }
            while (is->pictq_size && !is->videoq.abort_request) {
                SDL_CondWait(is->pictq_cond, is->pictq_mutex);
            }
1482
            is->video_current_pos= -1;
1483 1484
            SDL_UnlockMutex(is->pictq_mutex);

1485 1486
            is->last_dts_for_fault_detection=
            is->last_pts_for_fault_detection= INT64_MIN;
1487
            is->frame_last_pts= AV_NOPTS_VALUE;
1488
            is->frame_last_delay = 0;
1489
            is->frame_timer = (double)av_gettime() / 1000000.0;
1490

1491
            return 0;
1492 1493
        }

1494 1495
        /* NOTE: ipts is the PTS of the _first_ picture beginning in
           this packet, if any */
1496
        is->video_st->codec->reordered_opaque= pkt->pts;
1497
        len1 = avcodec_decode_video2(is->video_st->codec,
M
Michael Niedermayer 已提交
1498
                                    frame, &got_picture,
1499
                                    pkt);
M
Michael Niedermayer 已提交
1500

1501
        if (got_picture) {
S
Stefano Sabatini 已提交
1502 1503 1504 1505 1506 1507 1508 1509
            if(pkt->dts != AV_NOPTS_VALUE){
                is->faulty_dts += pkt->dts <= is->last_dts_for_fault_detection;
                is->last_dts_for_fault_detection= pkt->dts;
            }
            if(frame->reordered_opaque != AV_NOPTS_VALUE){
                is->faulty_pts += frame->reordered_opaque <= is->last_pts_for_fault_detection;
                is->last_pts_for_fault_detection= frame->reordered_opaque;
            }
1510
        }
1511 1512

        if(   (   decoder_reorder_pts==1
1513
               || (decoder_reorder_pts && is->faulty_pts<is->faulty_dts)
1514
               || pkt->dts == AV_NOPTS_VALUE)
1515
           && frame->reordered_opaque != AV_NOPTS_VALUE)
1516
            *pts= frame->reordered_opaque;
M
Michael Niedermayer 已提交
1517
        else if(pkt->dts != AV_NOPTS_VALUE)
1518
            *pts= pkt->dts;
M
Michael Niedermayer 已提交
1519
        else
1520 1521 1522 1523
            *pts= 0;

        /* put pts into units of 1/AV_TIME_BASE */
        *pts = av_rescale_q(pts,is->video_st->time_base, AV_TIME_BASE_Q);
1524

1525 1526
//            if (len1 < 0)
//                break;
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751
    if (got_picture)
        return 1;
    return 0;
}

#if CONFIG_AVFILTER
typedef struct {
    VideoState *is;
    AVFrame *frame;
} FilterPriv;

static int input_init(AVFilterContext *ctx, const char *args, void *opaque)
{
    FilterPriv *priv = ctx->priv;
    if(!opaque) return -1;

    priv->is = opaque;
    priv->frame = avcodec_alloc_frame();

    return 0;
}

static void input_uninit(AVFilterContext *ctx)
{
    FilterPriv *priv = ctx->priv;
    av_free(priv->frame);
}

static int input_request_frame(AVFilterLink *link)
{
    FilterPriv *priv = link->src->priv;
    AVFilterPicRef *picref;
    uint64_t pts = 0;
    AVPacket pkt;
    int ret;

    while (!(ret = get_video_frame(priv->is, priv->frame, &pts, &pkt)))
        av_free_packet(&pkt);
    if (ret < 0)
        return -1;

    /* FIXME: until I figure out how to hook everything up to the codec
     * right, we're just copying the entire frame. */
    picref = avfilter_get_video_buffer(link, AV_PERM_WRITE, link->w, link->h);
    av_picture_copy((AVPicture *)&picref->data, (AVPicture *)priv->frame,
                    picref->pic->format, link->w, link->h);
    av_free_packet(&pkt);

    picref->pts = pts;
    picref->pixel_aspect = priv->is->video_st->codec->sample_aspect_ratio;
    avfilter_start_frame(link, avfilter_ref_pic(picref, ~0));
    avfilter_draw_slice(link, 0, link->h, 1);
    avfilter_end_frame(link);
    avfilter_unref_pic(picref);

    return 0;
}

static int input_query_formats(AVFilterContext *ctx)
{
    FilterPriv *priv = ctx->priv;
    enum PixelFormat pix_fmts[] = {
        priv->is->video_st->codec->pix_fmt, PIX_FMT_NONE
    };

    avfilter_set_common_formats(ctx, avfilter_make_format_list(pix_fmts));
    return 0;
}

static int input_config_props(AVFilterLink *link)
{
    FilterPriv *priv  = link->src->priv;
    AVCodecContext *c = priv->is->video_st->codec;

    link->w = c->width;
    link->h = c->height;

    return 0;
}

static AVFilter input_filter =
{
    .name      = "ffplay_input",

    .priv_size = sizeof(FilterPriv),

    .init      = input_init,
    .uninit    = input_uninit,

    .query_formats = input_query_formats,

    .inputs    = (AVFilterPad[]) {{ .name = NULL }},
    .outputs   = (AVFilterPad[]) {{ .name = "default",
                                    .type = CODEC_TYPE_VIDEO,
                                    .request_frame = input_request_frame,
                                    .config_props  = input_config_props, },
                                  { .name = NULL }},
};

static void output_end_frame(AVFilterLink *link)
{
}

static int output_query_formats(AVFilterContext *ctx)
{
    enum PixelFormat pix_fmts[] = { PIX_FMT_YUV420P, PIX_FMT_NONE };

    avfilter_set_common_formats(ctx, avfilter_make_format_list(pix_fmts));
    return 0;
}

static int get_filtered_video_frame(AVFilterContext *ctx, AVFrame *frame,
                                    uint64_t *pts)
{
    AVFilterPicRef *pic;

    if(avfilter_request_frame(ctx->inputs[0]))
        return -1;
    if(!(pic = ctx->inputs[0]->cur_pic))
        return -1;
    ctx->inputs[0]->cur_pic = NULL;

    frame->opaque = pic;
    *pts          = pic->pts;

    memcpy(frame->data,     pic->data,     sizeof(frame->data));
    memcpy(frame->linesize, pic->linesize, sizeof(frame->linesize));

    return 1;
}

static AVFilter output_filter =
{
    .name      = "ffplay_output",

    .query_formats = output_query_formats,

    .inputs    = (AVFilterPad[]) {{ .name          = "default",
                                    .type          = CODEC_TYPE_VIDEO,
                                    .end_frame     = output_end_frame,
                                    .min_perms     = AV_PERM_READ, },
                                  { .name = NULL }},
    .outputs   = (AVFilterPad[]) {{ .name = NULL }},
};
#endif  /* CONFIG_AVFILTER */

static int video_thread(void *arg)
{
    VideoState *is = arg;
    AVFrame *frame= avcodec_alloc_frame();
    uint64_t pts_int;
    double pts;
    int ret;

#if CONFIG_AVFILTER
    AVFilterContext *filt_src = NULL, *filt_out = NULL;
    AVFilterGraph *graph = av_mallocz(sizeof(AVFilterGraph));
    graph->scale_sws_opts = av_strdup("sws_flags=bilinear");

    if(!(filt_src = avfilter_open(&input_filter,  "src")))   goto the_end;
    if(!(filt_out = avfilter_open(&output_filter, "out")))   goto the_end;

    if(avfilter_init_filter(filt_src, NULL, is))             goto the_end;
    if(avfilter_init_filter(filt_out, NULL, frame))          goto the_end;


    if(vfilters) {
        AVFilterInOut *outputs = av_malloc(sizeof(AVFilterInOut));
        AVFilterInOut *inputs  = av_malloc(sizeof(AVFilterInOut));

        outputs->name    = av_strdup("in");
        outputs->filter  = filt_src;
        outputs->pad_idx = 0;
        outputs->next    = NULL;

        inputs->name    = av_strdup("out");
        inputs->filter  = filt_out;
        inputs->pad_idx = 0;
        inputs->next    = NULL;

        if (avfilter_graph_parse(graph, vfilters, inputs, outputs, NULL) < 0)
            goto the_end;
        av_freep(&vfilters);
    } else {
        if(avfilter_link(filt_src, 0, filt_out, 0) < 0)          goto the_end;
    }
    avfilter_graph_add_filter(graph, filt_src);
    avfilter_graph_add_filter(graph, filt_out);

    if(avfilter_graph_check_validity(graph, NULL))           goto the_end;
    if(avfilter_graph_config_formats(graph, NULL))           goto the_end;
    if(avfilter_graph_config_links(graph, NULL))             goto the_end;

    is->out_video_filter = filt_out;
#endif

    for(;;) {
#if !CONFIG_AVFILTER
        AVPacket pkt;
#endif
        while (is->paused && !is->videoq.abort_request)
            SDL_Delay(10);
#if CONFIG_AVFILTER
        ret = get_filtered_video_frame(filt_out, frame, &pts_int);
#else
        ret = get_video_frame(is, frame, &pts_int, &pkt);
#endif

        if (ret < 0) goto the_end;

        if (!ret)
            continue;

        pts  = pts_int;
        pts /= AV_TIME_BASE;

#if CONFIG_AVFILTER
        ret = output_picture2(is, frame, pts,  -1); /* fixme: unknown pos */
#else
        ret = output_picture2(is, frame, pts,  pkt->pos);
        av_free_packet(&pkt);
#endif
        if (ret < 0)
            goto the_end;

1752
        if (step)
1753 1754
            if (cur_stream)
                stream_pause(cur_stream);
F
Fabrice Bellard 已提交
1755 1756
    }
 the_end:
1757 1758 1759 1760
#if CONFIG_AVFILTER
    avfilter_graph_destroy(graph);
    av_freep(&graph);
#endif
M
Michael Niedermayer 已提交
1761
    av_free(frame);
F
Fabrice Bellard 已提交
1762 1763 1764
    return 0;
}

1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780
static int subtitle_thread(void *arg)
{
    VideoState *is = arg;
    SubPicture *sp;
    AVPacket pkt1, *pkt = &pkt1;
    int len1, got_subtitle;
    double pts;
    int i, j;
    int r, g, b, y, u, v, a;

    for(;;) {
        while (is->paused && !is->subtitleq.abort_request) {
            SDL_Delay(10);
        }
        if (packet_queue_get(&is->subtitleq, pkt, 1) < 0)
            break;
1781

1782 1783 1784 1785
        if(pkt->data == flush_pkt.data){
            avcodec_flush_buffers(is->subtitle_st->codec);
            continue;
        }
1786 1787 1788 1789 1790 1791
        SDL_LockMutex(is->subpq_mutex);
        while (is->subpq_size >= SUBPICTURE_QUEUE_SIZE &&
               !is->subtitleq.abort_request) {
            SDL_CondWait(is->subpq_cond, is->subpq_mutex);
        }
        SDL_UnlockMutex(is->subpq_mutex);
1792

1793 1794
        if (is->subtitleq.abort_request)
            goto the_end;
1795

1796 1797 1798 1799 1800 1801 1802 1803
        sp = &is->subpq[is->subpq_windex];

       /* NOTE: ipts is the PTS of the _first_ picture beginning in
           this packet, if any */
        pts = 0;
        if (pkt->pts != AV_NOPTS_VALUE)
            pts = av_q2d(is->subtitle_st->time_base)*pkt->pts;

1804
        len1 = avcodec_decode_subtitle2(is->subtitle_st->codec,
1805
                                    &sp->sub, &got_subtitle,
1806
                                    pkt);
1807 1808 1809 1810
//            if (len1 < 0)
//                break;
        if (got_subtitle && sp->sub.format == 0) {
            sp->pts = pts;
1811

1812 1813
            for (i = 0; i < sp->sub.num_rects; i++)
            {
1814
                for (j = 0; j < sp->sub.rects[i]->nb_colors; j++)
1815
                {
1816
                    RGBA_IN(r, g, b, a, (uint32_t*)sp->sub.rects[i]->pict.data[1] + j);
1817 1818 1819
                    y = RGB_TO_Y_CCIR(r, g, b);
                    u = RGB_TO_U_CCIR(r, g, b, 0);
                    v = RGB_TO_V_CCIR(r, g, b, 0);
1820
                    YUVA_OUT((uint32_t*)sp->sub.rects[i]->pict.data[1] + j, y, u, v, a);
1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831
                }
            }

            /* now we can update the picture count */
            if (++is->subpq_windex == SUBPICTURE_QUEUE_SIZE)
                is->subpq_windex = 0;
            SDL_LockMutex(is->subpq_mutex);
            is->subpq_size++;
            SDL_UnlockMutex(is->subpq_mutex);
        }
        av_free_packet(pkt);
1832
//        if (step)
1833 1834 1835 1836 1837 1838 1839
//            if (cur_stream)
//                stream_pause(cur_stream);
    }
 the_end:
    return 0;
}

F
Fabrice Bellard 已提交
1840 1841 1842 1843 1844
/* copy samples for viewing in editor window */
static void update_sample_display(VideoState *is, short *samples, int samples_size)
{
    int size, len, channels;

1845
    channels = is->audio_st->codec->channels;
F
Fabrice Bellard 已提交
1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862

    size = samples_size / sizeof(short);
    while (size > 0) {
        len = SAMPLE_ARRAY_SIZE - is->sample_array_index;
        if (len > size)
            len = size;
        memcpy(is->sample_array + is->sample_array_index, samples, len * sizeof(short));
        samples += len;
        is->sample_array_index += len;
        if (is->sample_array_index >= SAMPLE_ARRAY_SIZE)
            is->sample_array_index = 0;
        size -= len;
    }
}

/* return the new audio buffer size (samples can be added or deleted
   to get better sync if video or external master clock) */
1863
static int synchronize_audio(VideoState *is, short *samples,
1864
                             int samples_size1, double pts)
F
Fabrice Bellard 已提交
1865
{
1866
    int n, samples_size;
F
Fabrice Bellard 已提交
1867
    double ref_clock;
1868

1869
    n = 2 * is->audio_st->codec->channels;
1870
    samples_size = samples_size1;
F
Fabrice Bellard 已提交
1871 1872 1873

    /* if not master, then we try to remove or add samples to correct the clock */
    if (((is->av_sync_type == AV_SYNC_VIDEO_MASTER && is->video_st) ||
1874 1875
         is->av_sync_type == AV_SYNC_EXTERNAL_CLOCK)) {
        double diff, avg_diff;
F
Fabrice Bellard 已提交
1876
        int wanted_size, min_size, max_size, nb_samples;
1877

1878 1879
        ref_clock = get_master_clock(is);
        diff = get_audio_clock(is) - ref_clock;
1880

1881 1882 1883 1884 1885 1886 1887 1888 1889 1890
        if (diff < AV_NOSYNC_THRESHOLD) {
            is->audio_diff_cum = diff + is->audio_diff_avg_coef * is->audio_diff_cum;
            if (is->audio_diff_avg_count < AUDIO_DIFF_AVG_NB) {
                /* not enough measures to have a correct estimate */
                is->audio_diff_avg_count++;
            } else {
                /* estimate the A-V difference */
                avg_diff = is->audio_diff_cum * (1.0 - is->audio_diff_avg_coef);

                if (fabs(avg_diff) >= is->audio_diff_threshold) {
1891
                    wanted_size = samples_size + ((int)(diff * is->audio_st->codec->sample_rate) * n);
1892
                    nb_samples = samples_size / n;
1893

1894 1895 1896 1897 1898 1899
                    min_size = ((nb_samples * (100 - SAMPLE_CORRECTION_PERCENT_MAX)) / 100) * n;
                    max_size = ((nb_samples * (100 + SAMPLE_CORRECTION_PERCENT_MAX)) / 100) * n;
                    if (wanted_size < min_size)
                        wanted_size = min_size;
                    else if (wanted_size > max_size)
                        wanted_size = max_size;
1900

1901 1902 1903 1904 1905 1906 1907
                    /* add or remove samples to correction the synchro */
                    if (wanted_size < samples_size) {
                        /* remove samples */
                        samples_size = wanted_size;
                    } else if (wanted_size > samples_size) {
                        uint8_t *samples_end, *q;
                        int nb;
1908

1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921
                        /* add samples */
                        nb = (samples_size - wanted_size);
                        samples_end = (uint8_t *)samples + samples_size - n;
                        q = samples_end + n;
                        while (nb > 0) {
                            memcpy(q, samples_end, n);
                            q += n;
                            nb -= n;
                        }
                        samples_size = wanted_size;
                    }
                }
#if 0
1922 1923
                printf("diff=%f adiff=%f sample_diff=%d apts=%0.3f vpts=%0.3f %f\n",
                       diff, avg_diff, samples_size - samples_size1,
1924 1925
                       is->audio_clock, is->video_clock, is->audio_diff_threshold);
#endif
F
Fabrice Bellard 已提交
1926
            }
1927 1928 1929 1930 1931
        } else {
            /* too big difference : may be initial PTS errors, so
               reset A-V filter */
            is->audio_diff_avg_count = 0;
            is->audio_diff_cum = 0;
F
Fabrice Bellard 已提交
1932 1933 1934 1935 1936 1937 1938
        }
    }

    return samples_size;
}

/* decode one audio frame and returns its uncompressed size */
1939
static int audio_decode_frame(VideoState *is, double *pts_ptr)
F
Fabrice Bellard 已提交
1940
{
1941
    AVPacket *pkt_temp = &is->audio_pkt_temp;
F
Fabrice Bellard 已提交
1942
    AVPacket *pkt = &is->audio_pkt;
1943
    AVCodecContext *dec= is->audio_st->codec;
F
Fabrice Bellard 已提交
1944
    int n, len1, data_size;
F
Fabrice Bellard 已提交
1945 1946 1947
    double pts;

    for(;;) {
F
Fabrice Bellard 已提交
1948
        /* NOTE: the audio packet can contain several frames */
1949
        while (pkt_temp->size > 0) {
1950
            data_size = sizeof(is->audio_buf1);
1951
            len1 = avcodec_decode_audio3(dec,
1952
                                        (int16_t *)is->audio_buf1, &data_size,
1953
                                        pkt_temp);
F
Fabrice Bellard 已提交
1954 1955
            if (len1 < 0) {
                /* if error, we skip the frame */
1956
                pkt_temp->size = 0;
F
Fabrice Bellard 已提交
1957
                break;
F
Fabrice Bellard 已提交
1958
            }
1959

1960 1961
            pkt_temp->data += len1;
            pkt_temp->size -= len1;
F
Fabrice Bellard 已提交
1962 1963
            if (data_size <= 0)
                continue;
1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996

            if (dec->sample_fmt != is->audio_src_fmt) {
                if (is->reformat_ctx)
                    av_audio_convert_free(is->reformat_ctx);
                is->reformat_ctx= av_audio_convert_alloc(SAMPLE_FMT_S16, 1,
                                                         dec->sample_fmt, 1, NULL, 0);
                if (!is->reformat_ctx) {
                    fprintf(stderr, "Cannot convert %s sample format to %s sample format\n",
                        avcodec_get_sample_fmt_name(dec->sample_fmt),
                        avcodec_get_sample_fmt_name(SAMPLE_FMT_S16));
                        break;
                }
                is->audio_src_fmt= dec->sample_fmt;
            }

            if (is->reformat_ctx) {
                const void *ibuf[6]= {is->audio_buf1};
                void *obuf[6]= {is->audio_buf2};
                int istride[6]= {av_get_bits_per_sample_format(dec->sample_fmt)/8};
                int ostride[6]= {2};
                int len= data_size/istride[0];
                if (av_audio_convert(is->reformat_ctx, obuf, ostride, ibuf, istride, len)<0) {
                    printf("av_audio_convert() failed\n");
                    break;
                }
                is->audio_buf= is->audio_buf2;
                /* FIXME: existing code assume that data_size equals framesize*channels*2
                          remove this legacy cruft */
                data_size= len*2;
            }else{
                is->audio_buf= is->audio_buf1;
            }

F
Fabrice Bellard 已提交
1997 1998 1999
            /* if no pts, then compute it */
            pts = is->audio_clock;
            *pts_ptr = pts;
2000
            n = 2 * dec->channels;
2001
            is->audio_clock += (double)data_size /
2002
                (double)(n * dec->sample_rate);
2003
#if defined(DEBUG_SYNC)
F
Fabrice Bellard 已提交
2004 2005 2006 2007 2008 2009
            {
                static double last_clock;
                printf("audio: delay=%0.3f clock=%0.3f pts=%0.3f\n",
                       is->audio_clock - last_clock,
                       is->audio_clock, pts);
                last_clock = is->audio_clock;
F
Fabrice Bellard 已提交
2010
            }
F
Fabrice Bellard 已提交
2011 2012
#endif
            return data_size;
F
Fabrice Bellard 已提交
2013 2014
        }

F
Fabrice Bellard 已提交
2015 2016
        /* free the current packet */
        if (pkt->data)
F
Fabrice Bellard 已提交
2017
            av_free_packet(pkt);
2018

F
Fabrice Bellard 已提交
2019 2020 2021
        if (is->paused || is->audioq.abort_request) {
            return -1;
        }
2022

F
Fabrice Bellard 已提交
2023 2024 2025
        /* read next packet */
        if (packet_queue_get(&is->audioq, pkt, 1) < 0)
            return -1;
2026
        if(pkt->data == flush_pkt.data){
2027
            avcodec_flush_buffers(dec);
2028 2029 2030
            continue;
        }

2031 2032
        pkt_temp->data = pkt->data;
        pkt_temp->size = pkt->size;
2033

F
Fabrice Bellard 已提交
2034 2035
        /* if update the audio clock with the pts */
        if (pkt->pts != AV_NOPTS_VALUE) {
2036
            is->audio_clock = av_q2d(is->audio_st->time_base)*pkt->pts;
F
Fabrice Bellard 已提交
2037
        }
F
Fabrice Bellard 已提交
2038 2039 2040
    }
}

2041 2042 2043
/* get the current audio output buffer size, in samples. With SDL, we
   cannot have a precise information */
static int audio_write_get_buf_size(VideoState *is)
F
Fabrice Bellard 已提交
2044
{
2045
    return is->audio_buf_size - is->audio_buf_index;
F
Fabrice Bellard 已提交
2046 2047 2048 2049
}


/* prepare a new audio buffer */
2050
static void sdl_audio_callback(void *opaque, Uint8 *stream, int len)
F
Fabrice Bellard 已提交
2051 2052 2053 2054 2055 2056
{
    VideoState *is = opaque;
    int audio_size, len1;
    double pts;

    audio_callback_time = av_gettime();
2057

F
Fabrice Bellard 已提交
2058 2059
    while (len > 0) {
        if (is->audio_buf_index >= is->audio_buf_size) {
2060
           audio_size = audio_decode_frame(is, &pts);
F
Fabrice Bellard 已提交
2061 2062
           if (audio_size < 0) {
                /* if error, just output silence */
2063
               is->audio_buf = is->audio_buf1;
F
Fabrice Bellard 已提交
2064 2065 2066 2067 2068
               is->audio_buf_size = 1024;
               memset(is->audio_buf, 0, is->audio_buf_size);
           } else {
               if (is->show_audio)
                   update_sample_display(is, (int16_t *)is->audio_buf, audio_size);
2069
               audio_size = synchronize_audio(is, (int16_t *)is->audio_buf, audio_size,
F
Fabrice Bellard 已提交
2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088
                                              pts);
               is->audio_buf_size = audio_size;
           }
           is->audio_buf_index = 0;
        }
        len1 = is->audio_buf_size - is->audio_buf_index;
        if (len1 > len)
            len1 = len;
        memcpy(stream, (uint8_t *)is->audio_buf + is->audio_buf_index, len1);
        len -= len1;
        stream += len1;
        is->audio_buf_index += len1;
    }
}

/* open a given stream. Return 0 if OK */
static int stream_component_open(VideoState *is, int stream_index)
{
    AVFormatContext *ic = is->ic;
2089
    AVCodecContext *avctx;
F
Fabrice Bellard 已提交
2090 2091 2092 2093 2094
    AVCodec *codec;
    SDL_AudioSpec wanted_spec, spec;

    if (stream_index < 0 || stream_index >= ic->nb_streams)
        return -1;
2095
    avctx = ic->streams[stream_index]->codec;
2096

F
Fabrice Bellard 已提交
2097
    /* prepare audio output */
2098 2099 2100
    if (avctx->codec_type == CODEC_TYPE_AUDIO) {
        if (avctx->channels > 0) {
            avctx->request_channels = FFMIN(2, avctx->channels);
2101
        } else {
2102
            avctx->request_channels = 2;
2103
        }
F
Fabrice Bellard 已提交
2104 2105
    }

2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121
    codec = avcodec_find_decoder(avctx->codec_id);
    avctx->debug_mv = debug_mv;
    avctx->debug = debug;
    avctx->workaround_bugs = workaround_bugs;
    avctx->lowres = lowres;
    if(lowres) avctx->flags |= CODEC_FLAG_EMU_EDGE;
    avctx->idct_algo= idct;
    if(fast) avctx->flags2 |= CODEC_FLAG2_FAST;
    avctx->skip_frame= skip_frame;
    avctx->skip_idct= skip_idct;
    avctx->skip_loop_filter= skip_loop_filter;
    avctx->error_recognition= error_recognition;
    avctx->error_concealment= error_concealment;
    avcodec_thread_init(avctx, thread_count);

    set_context_opts(avctx, avcodec_opts[avctx->codec_type], 0);
2122

F
Fabrice Bellard 已提交
2123
    if (!codec ||
2124
        avcodec_open(avctx, codec) < 0)
F
Fabrice Bellard 已提交
2125
        return -1;
2126 2127

    /* prepare audio output */
2128 2129
    if (avctx->codec_type == CODEC_TYPE_AUDIO) {
        wanted_spec.freq = avctx->sample_rate;
2130
        wanted_spec.format = AUDIO_S16SYS;
2131
        wanted_spec.channels = avctx->channels;
2132 2133 2134 2135 2136 2137 2138 2139 2140
        wanted_spec.silence = 0;
        wanted_spec.samples = SDL_AUDIO_BUFFER_SIZE;
        wanted_spec.callback = sdl_audio_callback;
        wanted_spec.userdata = is;
        if (SDL_OpenAudio(&wanted_spec, &spec) < 0) {
            fprintf(stderr, "SDL_OpenAudio: %s\n", SDL_GetError());
            return -1;
        }
        is->audio_hw_buf_size = spec.size;
2141
        is->audio_src_fmt= SAMPLE_FMT_S16;
2142 2143
    }

2144
    ic->streams[stream_index]->discard = AVDISCARD_DEFAULT;
2145
    switch(avctx->codec_type) {
F
Fabrice Bellard 已提交
2146 2147 2148 2149 2150
    case CODEC_TYPE_AUDIO:
        is->audio_stream = stream_index;
        is->audio_st = ic->streams[stream_index];
        is->audio_buf_size = 0;
        is->audio_buf_index = 0;
2151 2152 2153 2154 2155 2156

        /* init averaging filter */
        is->audio_diff_avg_coef = exp(log(0.01) / AUDIO_DIFF_AVG_NB);
        is->audio_diff_avg_count = 0;
        /* since we do not have a precise anough audio fifo fullness,
           we correct audio sync only if larger than this threshold */
2157
        is->audio_diff_threshold = 2.0 * SDL_AUDIO_BUFFER_SIZE / avctx->sample_rate;
2158

F
Fabrice Bellard 已提交
2159 2160
        memset(&is->audio_pkt, 0, sizeof(is->audio_pkt));
        packet_queue_init(&is->audioq);
2161
        SDL_PauseAudio(0);
F
Fabrice Bellard 已提交
2162 2163 2164 2165 2166
        break;
    case CODEC_TYPE_VIDEO:
        is->video_stream = stream_index;
        is->video_st = ic->streams[stream_index];

2167
//        is->video_current_pts_time = av_gettime();
2168

F
Fabrice Bellard 已提交
2169 2170 2171
        packet_queue_init(&is->videoq);
        is->video_tid = SDL_CreateThread(video_thread, is);
        break;
2172 2173 2174 2175
    case CODEC_TYPE_SUBTITLE:
        is->subtitle_stream = stream_index;
        is->subtitle_st = ic->streams[stream_index];
        packet_queue_init(&is->subtitleq);
2176

2177 2178
        is->subtitle_tid = SDL_CreateThread(subtitle_thread, is);
        break;
F
Fabrice Bellard 已提交
2179 2180 2181 2182 2183 2184 2185 2186 2187
    default:
        break;
    }
    return 0;
}

static void stream_component_close(VideoState *is, int stream_index)
{
    AVFormatContext *ic = is->ic;
2188
    AVCodecContext *avctx;
2189

2190 2191
    if (stream_index < 0 || stream_index >= ic->nb_streams)
        return;
2192
    avctx = ic->streams[stream_index]->codec;
F
Fabrice Bellard 已提交
2193

2194
    switch(avctx->codec_type) {
F
Fabrice Bellard 已提交
2195 2196 2197 2198 2199 2200
    case CODEC_TYPE_AUDIO:
        packet_queue_abort(&is->audioq);

        SDL_CloseAudio();

        packet_queue_end(&is->audioq);
2201 2202
        if (is->reformat_ctx)
            av_audio_convert_free(is->reformat_ctx);
R
Ramiro Polla 已提交
2203
        is->reformat_ctx = NULL;
F
Fabrice Bellard 已提交
2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217
        break;
    case CODEC_TYPE_VIDEO:
        packet_queue_abort(&is->videoq);

        /* note: we also signal this mutex to make sure we deblock the
           video thread in all cases */
        SDL_LockMutex(is->pictq_mutex);
        SDL_CondSignal(is->pictq_cond);
        SDL_UnlockMutex(is->pictq_mutex);

        SDL_WaitThread(is->video_tid, NULL);

        packet_queue_end(&is->videoq);
        break;
2218 2219
    case CODEC_TYPE_SUBTITLE:
        packet_queue_abort(&is->subtitleq);
2220

2221 2222 2223 2224
        /* note: we also signal this mutex to make sure we deblock the
           video thread in all cases */
        SDL_LockMutex(is->subpq_mutex);
        is->subtitle_stream_changed = 1;
2225

2226 2227 2228 2229 2230 2231 2232
        SDL_CondSignal(is->subpq_cond);
        SDL_UnlockMutex(is->subpq_mutex);

        SDL_WaitThread(is->subtitle_tid, NULL);

        packet_queue_end(&is->subtitleq);
        break;
F
Fabrice Bellard 已提交
2233 2234 2235 2236
    default:
        break;
    }

2237
    ic->streams[stream_index]->discard = AVDISCARD_ALL;
2238 2239
    avcodec_close(avctx);
    switch(avctx->codec_type) {
F
Fabrice Bellard 已提交
2240 2241 2242 2243 2244 2245 2246 2247
    case CODEC_TYPE_AUDIO:
        is->audio_st = NULL;
        is->audio_stream = -1;
        break;
    case CODEC_TYPE_VIDEO:
        is->video_st = NULL;
        is->video_stream = -1;
        break;
2248 2249 2250 2251
    case CODEC_TYPE_SUBTITLE:
        is->subtitle_st = NULL;
        is->subtitle_stream = -1;
        break;
F
Fabrice Bellard 已提交
2252 2253 2254 2255 2256
    default:
        break;
    }
}

2257 2258 2259 2260 2261 2262 2263 2264
/* since we have only one decoding thread, we can use a global
   variable instead of a thread local variable */
static VideoState *global_video_state;

static int decode_interrupt_cb(void)
{
    return (global_video_state && global_video_state->abort_request);
}
F
Fabrice Bellard 已提交
2265 2266 2267 2268 2269 2270

/* this thread gets the stream from the disk or the network */
static int decode_thread(void *arg)
{
    VideoState *is = arg;
    AVFormatContext *ic;
2271 2272
    int err, i, ret;
    int st_index[CODEC_TYPE_NB];
M
Michael Niedermayer 已提交
2273
    int st_count[CODEC_TYPE_NB]={0};
2274
    int st_best_packet_count[CODEC_TYPE_NB];
F
Fabrice Bellard 已提交
2275
    AVPacket pkt1, *pkt = &pkt1;
2276
    AVFormatParameters params, *ap = &params;
2277
    int eof=0;
F
Fabrice Bellard 已提交
2278

M
Michael Niedermayer 已提交
2279 2280
    ic = avformat_alloc_context();

2281
    memset(st_index, -1, sizeof(st_index));
2282
    memset(st_best_packet_count, -1, sizeof(st_best_packet_count));
F
Fabrice Bellard 已提交
2283 2284
    is->video_stream = -1;
    is->audio_stream = -1;
2285
    is->subtitle_stream = -1;
F
Fabrice Bellard 已提交
2286

2287 2288 2289
    global_video_state = is;
    url_set_interrupt_cb(decode_interrupt_cb);

2290
    memset(ap, 0, sizeof(*ap));
2291

M
Michael Niedermayer 已提交
2292
    ap->prealloced_context = 1;
2293 2294
    ap->width = frame_width;
    ap->height= frame_height;
M
Michael Niedermayer 已提交
2295
    ap->time_base= (AVRational){1, 25};
2296
    ap->pix_fmt = frame_pix_fmt;
M
Michael Niedermayer 已提交
2297

M
Michael Niedermayer 已提交
2298 2299
    set_context_opts(ic, avformat_opts, AV_OPT_FLAG_DECODING_PARAM);

2300
    err = av_open_input_file(&ic, is->filename, is->iformat, 0, ap);
2301 2302 2303 2304 2305
    if (err < 0) {
        print_error(is->filename, err);
        ret = -1;
        goto fail;
    }
F
Fabrice Bellard 已提交
2306
    is->ic = ic;
2307 2308 2309 2310

    if(genpts)
        ic->flags |= AVFMT_FLAG_GENPTS;

2311 2312 2313 2314 2315 2316
    err = av_find_stream_info(ic);
    if (err < 0) {
        fprintf(stderr, "%s: could not find codec parameters\n", is->filename);
        ret = -1;
        goto fail;
    }
2317 2318
    if(ic->pb)
        ic->pb->eof_reached= 0; //FIXME hack, ffplay maybe should not use url_feof() to test for the end
F
Fabrice Bellard 已提交
2319

2320 2321 2322
    if(seek_by_bytes<0)
        seek_by_bytes= !!(ic->iformat->flags & AVFMT_TS_DISCONT);

F
Fabrice Bellard 已提交
2323 2324 2325 2326 2327 2328 2329 2330
    /* if seeking requested, we execute it */
    if (start_time != AV_NOPTS_VALUE) {
        int64_t timestamp;

        timestamp = start_time;
        /* add the stream start time */
        if (ic->start_time != AV_NOPTS_VALUE)
            timestamp += ic->start_time;
2331
        ret = avformat_seek_file(ic, -1, INT64_MIN, timestamp, INT64_MAX, 0);
F
Fabrice Bellard 已提交
2332
        if (ret < 0) {
2333
            fprintf(stderr, "%s: could not seek to position %0.3f\n",
F
Fabrice Bellard 已提交
2334 2335 2336 2337
                    is->filename, (double)timestamp / AV_TIME_BASE);
        }
    }

F
Fabrice Bellard 已提交
2338
    for(i = 0; i < ic->nb_streams; i++) {
2339 2340
        AVStream *st= ic->streams[i];
        AVCodecContext *avctx = st->codec;
2341
        ic->streams[i]->discard = AVDISCARD_ALL;
M
Michael Niedermayer 已提交
2342
        if(avctx->codec_type >= (unsigned)CODEC_TYPE_NB)
2343
            continue;
M
Michael Niedermayer 已提交
2344 2345 2346
        if(st_count[avctx->codec_type]++ != wanted_stream[avctx->codec_type] && wanted_stream[avctx->codec_type] >= 0)
            continue;

2347 2348 2349 2350
        if(st_best_packet_count[avctx->codec_type] >= st->codec_info_nb_frames)
            continue;
        st_best_packet_count[avctx->codec_type]= st->codec_info_nb_frames;

2351
        switch(avctx->codec_type) {
F
Fabrice Bellard 已提交
2352
        case CODEC_TYPE_AUDIO:
M
Michael Niedermayer 已提交
2353
            if (!audio_disable)
2354
                st_index[CODEC_TYPE_AUDIO] = i;
F
Fabrice Bellard 已提交
2355 2356
            break;
        case CODEC_TYPE_VIDEO:
2357
        case CODEC_TYPE_SUBTITLE:
M
Michael Niedermayer 已提交
2358 2359
            if (!video_disable)
                st_index[avctx->codec_type] = i;
2360
            break;
F
Fabrice Bellard 已提交
2361 2362 2363 2364 2365 2366 2367 2368 2369
        default:
            break;
        }
    }
    if (show_status) {
        dump_format(ic, 0, is->filename, 0);
    }

    /* open the streams */
2370 2371
    if (st_index[CODEC_TYPE_AUDIO] >= 0) {
        stream_component_open(is, st_index[CODEC_TYPE_AUDIO]);
F
Fabrice Bellard 已提交
2372 2373
    }

M
Michael Niedermayer 已提交
2374
    ret=-1;
2375 2376
    if (st_index[CODEC_TYPE_VIDEO] >= 0) {
        ret= stream_component_open(is, st_index[CODEC_TYPE_VIDEO]);
M
Michael Niedermayer 已提交
2377 2378
    }
    if(ret<0) {
2379 2380 2381
        /* add the refresh timer to draw the picture */
        schedule_refresh(is, 40);

F
Fabrice Bellard 已提交
2382
        if (!display_disable)
2383
            is->show_audio = 2;
F
Fabrice Bellard 已提交
2384 2385
    }

2386 2387
    if (st_index[CODEC_TYPE_SUBTITLE] >= 0) {
        stream_component_open(is, st_index[CODEC_TYPE_SUBTITLE]);
2388 2389
    }

F
Fabrice Bellard 已提交
2390
    if (is->video_stream < 0 && is->audio_stream < 0) {
2391 2392
        fprintf(stderr, "%s: could not open codecs\n", is->filename);
        ret = -1;
F
Fabrice Bellard 已提交
2393 2394 2395 2396 2397 2398
        goto fail;
    }

    for(;;) {
        if (is->abort_request)
            break;
2399 2400
        if (is->paused != is->last_paused) {
            is->last_paused = is->paused;
F
Fabrice Bellard 已提交
2401
            if (is->paused)
2402
                is->read_pause_return= av_read_pause(ic);
F
Fabrice Bellard 已提交
2403 2404
            else
                av_read_play(ic);
2405
        }
2406 2407
#if CONFIG_RTSP_DEMUXER
        if (is->paused && !strcmp(ic->iformat->name, "rtsp")) {
2408 2409 2410 2411 2412
            /* wait 10 ms to avoid trying to get another packet */
            /* XXX: horrible */
            SDL_Delay(10);
            continue;
        }
2413
#endif
F
Fabrice Bellard 已提交
2414
        if (is->seek_req) {
2415
            int64_t seek_target= is->seek_pos;
2416 2417 2418 2419
            int64_t seek_min= is->seek_rel > 0 ? seek_target - is->seek_rel + 2: INT64_MIN;
            int64_t seek_max= is->seek_rel < 0 ? seek_target - is->seek_rel - 2: INT64_MAX;
//FIXME the +-2 is due to rounding being not done in the correct direction in generation
//      of the seek_pos/seek_rel variables
2420

2421
            ret = avformat_seek_file(is->ic, -1, seek_min, seek_target, seek_max, is->seek_flags);
F
Fabrice Bellard 已提交
2422 2423
            if (ret < 0) {
                fprintf(stderr, "%s: error while seeking\n", is->ic->filename);
2424 2425 2426
            }else{
                if (is->audio_stream >= 0) {
                    packet_queue_flush(&is->audioq);
2427
                    packet_queue_put(&is->audioq, &flush_pkt);
2428
                }
2429 2430
                if (is->subtitle_stream >= 0) {
                    packet_queue_flush(&is->subtitleq);
2431
                    packet_queue_put(&is->subtitleq, &flush_pkt);
2432
                }
2433 2434
                if (is->video_stream >= 0) {
                    packet_queue_flush(&is->videoq);
2435
                    packet_queue_put(&is->videoq, &flush_pkt);
2436
                }
F
Fabrice Bellard 已提交
2437 2438
            }
            is->seek_req = 0;
2439
            eof= 0;
F
Fabrice Bellard 已提交
2440
        }
2441

F
Fabrice Bellard 已提交
2442
        /* if the queue are full, no need to read more */
2443 2444 2445 2446
        if (   is->audioq.size + is->videoq.size + is->subtitleq.size > MAX_QUEUE_SIZE
            || (   (is->audioq   .size  > MIN_AUDIOQ_SIZE || is->audio_stream<0)
                && (is->videoq   .nb_packets > MIN_FRAMES || is->video_stream<0)
                && (is->subtitleq.nb_packets > MIN_FRAMES || is->subtitle_stream<0))) {
F
Fabrice Bellard 已提交
2447 2448 2449 2450
            /* wait 10 ms */
            SDL_Delay(10);
            continue;
        }
2451
        if(url_feof(ic->pb) || eof) {
2452
            if(is->video_stream >= 0){
M
indent  
Michael Niedermayer 已提交
2453 2454 2455 2456 2457
                av_init_packet(pkt);
                pkt->data=NULL;
                pkt->size=0;
                pkt->stream_index= is->video_stream;
                packet_queue_put(&is->videoq, pkt);
2458
            }
2459
            SDL_Delay(10);
M
Michael Niedermayer 已提交
2460 2461 2462 2463
            if(autoexit && is->audioq.size + is->videoq.size + is->subtitleq.size ==0){
                ret=AVERROR_EOF;
                goto fail;
            }
2464 2465
            continue;
        }
F
Fabrice Bellard 已提交
2466
        ret = av_read_frame(ic, pkt);
F
Fabrice Bellard 已提交
2467
        if (ret < 0) {
2468 2469 2470
            if (ret == AVERROR_EOF)
                eof=1;
            if (url_ferror(ic->pb))
2471
                break;
2472 2473
            SDL_Delay(100); /* wait for user event */
            continue;
F
Fabrice Bellard 已提交
2474 2475 2476 2477 2478
        }
        if (pkt->stream_index == is->audio_stream) {
            packet_queue_put(&is->audioq, pkt);
        } else if (pkt->stream_index == is->video_stream) {
            packet_queue_put(&is->videoq, pkt);
2479 2480
        } else if (pkt->stream_index == is->subtitle_stream) {
            packet_queue_put(&is->subtitleq, pkt);
F
Fabrice Bellard 已提交
2481 2482 2483 2484 2485 2486 2487 2488 2489
        } else {
            av_free_packet(pkt);
        }
    }
    /* wait until the end */
    while (!is->abort_request) {
        SDL_Delay(100);
    }

2490
    ret = 0;
F
Fabrice Bellard 已提交
2491
 fail:
2492 2493 2494
    /* disable interrupting */
    global_video_state = NULL;

F
Fabrice Bellard 已提交
2495 2496 2497 2498 2499
    /* close each stream */
    if (is->audio_stream >= 0)
        stream_component_close(is, is->audio_stream);
    if (is->video_stream >= 0)
        stream_component_close(is, is->video_stream);
2500 2501
    if (is->subtitle_stream >= 0)
        stream_component_close(is, is->subtitle_stream);
2502 2503 2504 2505
    if (is->ic) {
        av_close_input_file(is->ic);
        is->ic = NULL; /* safety */
    }
2506 2507
    url_set_interrupt_cb(NULL);

2508 2509
    if (ret != 0) {
        SDL_Event event;
2510

2511 2512 2513 2514
        event.type = FF_QUIT_EVENT;
        event.user.data1 = is;
        SDL_PushEvent(&event);
    }
F
Fabrice Bellard 已提交
2515 2516 2517
    return 0;
}

2518
static VideoState *stream_open(const char *filename, AVInputFormat *iformat)
F
Fabrice Bellard 已提交
2519 2520 2521 2522 2523 2524
{
    VideoState *is;

    is = av_mallocz(sizeof(VideoState));
    if (!is)
        return NULL;
2525
    av_strlcpy(is->filename, filename, sizeof(is->filename));
2526
    is->iformat = iformat;
F
Fabrice Bellard 已提交
2527 2528 2529 2530 2531 2532
    is->ytop = 0;
    is->xleft = 0;

    /* start video display */
    is->pictq_mutex = SDL_CreateMutex();
    is->pictq_cond = SDL_CreateCond();
2533

2534 2535
    is->subpq_mutex = SDL_CreateMutex();
    is->subpq_cond = SDL_CreateCond();
2536

2537
    is->av_sync_type = av_sync_type;
F
Fabrice Bellard 已提交
2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556
    is->parse_tid = SDL_CreateThread(decode_thread, is);
    if (!is->parse_tid) {
        av_free(is);
        return NULL;
    }
    return is;
}

static void stream_close(VideoState *is)
{
    VideoPicture *vp;
    int i;
    /* XXX: use a special url_shutdown call to abort parse cleanly */
    is->abort_request = 1;
    SDL_WaitThread(is->parse_tid, NULL);

    /* free all pictures */
    for(i=0;i<VIDEO_PICTURE_QUEUE_SIZE; i++) {
        vp = &is->pictq[i];
2557 2558 2559 2560 2561 2562
#if CONFIG_AVFILTER
        if (vp->picref) {
            avfilter_unref_pic(vp->picref);
            vp->picref = NULL;
        }
#endif
F
Fabrice Bellard 已提交
2563 2564 2565 2566 2567 2568 2569
        if (vp->bmp) {
            SDL_FreeYUVOverlay(vp->bmp);
            vp->bmp = NULL;
        }
    }
    SDL_DestroyMutex(is->pictq_mutex);
    SDL_DestroyCond(is->pictq_cond);
2570 2571
    SDL_DestroyMutex(is->subpq_mutex);
    SDL_DestroyCond(is->subpq_cond);
2572
#if !CONFIG_AVFILTER
2573 2574
    if (is->img_convert_ctx)
        sws_freeContext(is->img_convert_ctx);
2575
#endif
2576
    av_free(is);
F
Fabrice Bellard 已提交
2577 2578
}

2579
static void stream_cycle_channel(VideoState *is, int codec_type)
2580 2581 2582 2583 2584 2585 2586
{
    AVFormatContext *ic = is->ic;
    int start_index, stream_index;
    AVStream *st;

    if (codec_type == CODEC_TYPE_VIDEO)
        start_index = is->video_stream;
2587
    else if (codec_type == CODEC_TYPE_AUDIO)
2588
        start_index = is->audio_stream;
2589 2590 2591
    else
        start_index = is->subtitle_stream;
    if (start_index < (codec_type == CODEC_TYPE_SUBTITLE ? -1 : 0))
2592 2593 2594 2595
        return;
    stream_index = start_index;
    for(;;) {
        if (++stream_index >= is->ic->nb_streams)
2596 2597 2598 2599 2600 2601 2602 2603
        {
            if (codec_type == CODEC_TYPE_SUBTITLE)
            {
                stream_index = -1;
                goto the_end;
            } else
                stream_index = 0;
        }
2604 2605 2606
        if (stream_index == start_index)
            return;
        st = ic->streams[stream_index];
2607
        if (st->codec->codec_type == codec_type) {
2608 2609 2610
            /* check that parameters are OK */
            switch(codec_type) {
            case CODEC_TYPE_AUDIO:
2611 2612
                if (st->codec->sample_rate != 0 &&
                    st->codec->channels != 0)
2613 2614 2615
                    goto the_end;
                break;
            case CODEC_TYPE_VIDEO:
2616
            case CODEC_TYPE_SUBTITLE:
2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628
                goto the_end;
            default:
                break;
            }
        }
    }
 the_end:
    stream_component_close(is, start_index);
    stream_component_open(is, stream_index);
}


2629
static void toggle_full_screen(void)
F
Fabrice Bellard 已提交
2630 2631
{
    is_full_screen = !is_full_screen;
2632 2633
    if (!fs_screen_width) {
        /* use default SDL method */
2634
//        SDL_WM_ToggleFullScreen(screen);
F
Fabrice Bellard 已提交
2635
    }
2636
    video_open(cur_stream);
F
Fabrice Bellard 已提交
2637 2638
}

2639
static void toggle_pause(void)
F
Fabrice Bellard 已提交
2640 2641 2642
{
    if (cur_stream)
        stream_pause(cur_stream);
2643 2644 2645
    step = 0;
}

2646
static void step_to_next_frame(void)
2647 2648
{
    if (cur_stream) {
2649
        /* if the stream is paused unpause it, then step */
2650
        if (cur_stream->paused)
2651
            stream_pause(cur_stream);
2652 2653
    }
    step = 1;
F
Fabrice Bellard 已提交
2654 2655
}

2656
static void do_exit(void)
F
Fabrice Bellard 已提交
2657
{
2658
    int i;
F
Fabrice Bellard 已提交
2659 2660 2661 2662
    if (cur_stream) {
        stream_close(cur_stream);
        cur_stream = NULL;
    }
2663 2664 2665 2666
    for (i = 0; i < CODEC_TYPE_NB; i++)
        av_free(avcodec_opts[i]);
    av_free(avformat_opts);
    av_free(sws_opts);
2667 2668 2669
#if CONFIG_AVFILTER
    avfilter_uninit();
#endif
F
Fabrice Bellard 已提交
2670 2671 2672 2673 2674 2675
    if (show_status)
        printf("\n");
    SDL_Quit();
    exit(0);
}

2676
static void toggle_audio_display(void)
F
Fabrice Bellard 已提交
2677 2678
{
    if (cur_stream) {
M
Michael Niedermayer 已提交
2679
        int bgcolor = SDL_MapRGB(screen->format, 0x00, 0x00, 0x00);
2680
        cur_stream->show_audio = (cur_stream->show_audio + 1) % 3;
M
Michael Niedermayer 已提交
2681 2682 2683 2684
        fill_rectangle(screen,
                    cur_stream->xleft, cur_stream->ytop, cur_stream->width, cur_stream->height,
                    bgcolor);
        SDL_UpdateRect(screen, cur_stream->xleft, cur_stream->ytop, cur_stream->width, cur_stream->height);
F
Fabrice Bellard 已提交
2685 2686 2687 2688
    }
}

/* handle an event sent by the GUI */
2689
static void event_loop(void)
F
Fabrice Bellard 已提交
2690 2691
{
    SDL_Event event;
2692
    double incr, pos, frac;
F
Fabrice Bellard 已提交
2693 2694

    for(;;) {
M
Michael Niedermayer 已提交
2695
        double x;
F
Fabrice Bellard 已提交
2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710
        SDL_WaitEvent(&event);
        switch(event.type) {
        case SDL_KEYDOWN:
            switch(event.key.keysym.sym) {
            case SDLK_ESCAPE:
            case SDLK_q:
                do_exit();
                break;
            case SDLK_f:
                toggle_full_screen();
                break;
            case SDLK_p:
            case SDLK_SPACE:
                toggle_pause();
                break;
2711 2712 2713
            case SDLK_s: //S: Step to next frame
                step_to_next_frame();
                break;
F
Fabrice Bellard 已提交
2714
            case SDLK_a:
2715
                if (cur_stream)
2716 2717 2718
                    stream_cycle_channel(cur_stream, CODEC_TYPE_AUDIO);
                break;
            case SDLK_v:
2719
                if (cur_stream)
2720 2721
                    stream_cycle_channel(cur_stream, CODEC_TYPE_VIDEO);
                break;
2722
            case SDLK_t:
2723
                if (cur_stream)
2724 2725
                    stream_cycle_channel(cur_stream, CODEC_TYPE_SUBTITLE);
                break;
2726
            case SDLK_w:
F
Fabrice Bellard 已提交
2727 2728
                toggle_audio_display();
                break;
F
Fabrice Bellard 已提交
2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741
            case SDLK_LEFT:
                incr = -10.0;
                goto do_seek;
            case SDLK_RIGHT:
                incr = 10.0;
                goto do_seek;
            case SDLK_UP:
                incr = 60.0;
                goto do_seek;
            case SDLK_DOWN:
                incr = -60.0;
            do_seek:
                if (cur_stream) {
2742
                    if (seek_by_bytes) {
2743 2744 2745 2746 2747 2748
                        if (cur_stream->video_stream >= 0 && cur_stream->video_current_pos>=0){
                            pos= cur_stream->video_current_pos;
                        }else if(cur_stream->audio_stream >= 0 && cur_stream->audio_pkt.pos>=0){
                            pos= cur_stream->audio_pkt.pos;
                        }else
                            pos = url_ftell(cur_stream->ic->pb);
2749
                        if (cur_stream->ic->bit_rate)
2750
                            incr *= cur_stream->ic->bit_rate / 8.0;
2751 2752 2753
                        else
                            incr *= 180000.0;
                        pos += incr;
2754
                        stream_seek(cur_stream, pos, incr, 1);
2755 2756 2757
                    } else {
                        pos = get_master_clock(cur_stream);
                        pos += incr;
2758
                        stream_seek(cur_stream, (int64_t)(pos * AV_TIME_BASE), (int64_t)(incr * AV_TIME_BASE), 0);
2759
                    }
F
Fabrice Bellard 已提交
2760 2761
                }
                break;
F
Fabrice Bellard 已提交
2762 2763 2764 2765
            default:
                break;
            }
            break;
2766
        case SDL_MOUSEBUTTONDOWN:
M
Michael Niedermayer 已提交
2767 2768 2769 2770 2771 2772 2773 2774
        case SDL_MOUSEMOTION:
            if(event.type ==SDL_MOUSEBUTTONDOWN){
                x= event.button.x;
            }else{
                if(event.motion.state != SDL_PRESSED)
                    break;
                x= event.motion.x;
            }
2775
            if (cur_stream) {
2776 2777
                if(seek_by_bytes || cur_stream->ic->duration<=0){
                    uint64_t size=  url_fsize(cur_stream->ic->pb);
M
Michael Niedermayer 已提交
2778
                    stream_seek(cur_stream, size*x/cur_stream->width, 0, 1);
2779
                }else{
M
Michael Niedermayer 已提交
2780 2781 2782 2783 2784 2785 2786
                    int64_t ts;
                    int ns, hh, mm, ss;
                    int tns, thh, tmm, tss;
                    tns = cur_stream->ic->duration/1000000LL;
                    thh = tns/3600;
                    tmm = (tns%3600)/60;
                    tss = (tns%60);
M
Michael Niedermayer 已提交
2787
                    frac = x/cur_stream->width;
M
Michael Niedermayer 已提交
2788 2789 2790 2791 2792 2793 2794 2795 2796 2797
                    ns = frac*tns;
                    hh = ns/3600;
                    mm = (ns%3600)/60;
                    ss = (ns%60);
                    fprintf(stderr, "Seek to %2.0f%% (%2d:%02d:%02d) of total duration (%2d:%02d:%02d)       \n", frac*100,
                            hh, mm, ss, thh, tmm, tss);
                    ts = frac*cur_stream->ic->duration;
                    if (cur_stream->ic->start_time != AV_NOPTS_VALUE)
                        ts += cur_stream->ic->start_time;
                    stream_seek(cur_stream, ts, 0, 0);
2798
                }
2799 2800
            }
            break;
F
Fabrice Bellard 已提交
2801 2802
        case SDL_VIDEORESIZE:
            if (cur_stream) {
2803
                screen = SDL_SetVideoMode(event.resize.w, event.resize.h, 0,
F
Fabrice Bellard 已提交
2804
                                          SDL_HWSURFACE|SDL_RESIZABLE|SDL_ASYNCBLIT|SDL_HWACCEL);
2805 2806
                screen_width = cur_stream->width = event.resize.w;
                screen_height= cur_stream->height= event.resize.h;
F
Fabrice Bellard 已提交
2807 2808 2809
            }
            break;
        case SDL_QUIT:
2810
        case FF_QUIT_EVENT:
F
Fabrice Bellard 已提交
2811 2812 2813
            do_exit();
            break;
        case FF_ALLOC_EVENT:
2814
            video_open(event.user.data1);
F
Fabrice Bellard 已提交
2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825
            alloc_picture(event.user.data1);
            break;
        case FF_REFRESH_EVENT:
            video_refresh_timer(event.user.data1);
            break;
        default:
            break;
        }
    }
}

2826 2827
static void opt_frame_size(const char *arg)
{
2828
    if (av_parse_video_frame_size(&frame_width, &frame_height, arg) < 0) {
2829 2830 2831 2832 2833 2834 2835 2836 2837
        fprintf(stderr, "Incorrect frame size\n");
        exit(1);
    }
    if ((frame_width % 2) != 0 || (frame_height % 2) != 0) {
        fprintf(stderr, "Frame size must be a multiple of 2\n");
        exit(1);
    }
}

2838
static int opt_width(const char *opt, const char *arg)
F
Fabrice Bellard 已提交
2839
{
2840 2841
    screen_width = parse_number_or_die(opt, arg, OPT_INT64, 1, INT_MAX);
    return 0;
F
Fabrice Bellard 已提交
2842 2843
}

2844
static int opt_height(const char *opt, const char *arg)
F
Fabrice Bellard 已提交
2845
{
2846 2847
    screen_height = parse_number_or_die(opt, arg, OPT_INT64, 1, INT_MAX);
    return 0;
F
Fabrice Bellard 已提交
2848 2849 2850 2851 2852 2853 2854 2855 2856 2857
}

static void opt_format(const char *arg)
{
    file_iformat = av_find_input_format(arg);
    if (!file_iformat) {
        fprintf(stderr, "Unknown input format: %s\n", arg);
        exit(1);
    }
}
2858

2859 2860
static void opt_frame_pix_fmt(const char *arg)
{
2861
    frame_pix_fmt = av_get_pix_fmt(arg);
2862 2863
}

2864
static int opt_sync(const char *opt, const char *arg)
2865 2866 2867 2868 2869 2870 2871
{
    if (!strcmp(arg, "audio"))
        av_sync_type = AV_SYNC_AUDIO_MASTER;
    else if (!strcmp(arg, "video"))
        av_sync_type = AV_SYNC_VIDEO_MASTER;
    else if (!strcmp(arg, "ext"))
        av_sync_type = AV_SYNC_EXTERNAL_CLOCK;
2872
    else {
2873
        fprintf(stderr, "Unknown value for %s: %s\n", opt, arg);
2874 2875
        exit(1);
    }
2876
    return 0;
2877 2878
}

2879
static int opt_seek(const char *opt, const char *arg)
F
Fabrice Bellard 已提交
2880
{
2881 2882
    start_time = parse_time_or_die(opt, arg, 1);
    return 0;
F
Fabrice Bellard 已提交
2883 2884
}

2885
static int opt_debug(const char *opt, const char *arg)
2886
{
M
Måns Rullgård 已提交
2887
    av_log_set_level(99);
2888 2889
    debug = parse_number_or_die(opt, arg, OPT_INT64, 0, INT_MAX);
    return 0;
2890
}
2891

2892
static int opt_vismv(const char *opt, const char *arg)
2893
{
2894 2895
    debug_mv = parse_number_or_die(opt, arg, OPT_INT64, INT_MIN, INT_MAX);
    return 0;
2896
}
2897

2898
static int opt_thread_count(const char *opt, const char *arg)
2899
{
2900
    thread_count= parse_number_or_die(opt, arg, OPT_INT64, 0, INT_MAX);
2901
#if !HAVE_THREADS
2902 2903
    fprintf(stderr, "Warning: not compiled with thread support, using thread emulation\n");
#endif
2904
    return 0;
2905
}
2906

2907
static const OptionDef options[] = {
2908
#include "cmdutils_common_opts.h"
2909 2910
    { "x", HAS_ARG | OPT_FUNC2, {(void*)opt_width}, "force displayed width", "width" },
    { "y", HAS_ARG | OPT_FUNC2, {(void*)opt_height}, "force displayed height", "height" },
2911
    { "s", HAS_ARG | OPT_VIDEO, {(void*)opt_frame_size}, "set frame size (WxH or abbreviation)", "size" },
2912
    { "fs", OPT_BOOL, {(void*)&is_full_screen}, "force full screen" },
F
Fabrice Bellard 已提交
2913 2914
    { "an", OPT_BOOL, {(void*)&audio_disable}, "disable audio" },
    { "vn", OPT_BOOL, {(void*)&video_disable}, "disable video" },
2915 2916 2917
    { "ast", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&wanted_stream[CODEC_TYPE_AUDIO]}, "select desired audio stream", "stream_number" },
    { "vst", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&wanted_stream[CODEC_TYPE_VIDEO]}, "select desired video stream", "stream_number" },
    { "sst", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&wanted_stream[CODEC_TYPE_SUBTITLE]}, "select desired subtitle stream", "stream_number" },
2918
    { "ss", HAS_ARG | OPT_FUNC2, {(void*)&opt_seek}, "seek to a given position in seconds", "pos" },
2919
    { "bytes", OPT_INT | HAS_ARG, {(void*)&seek_by_bytes}, "seek by bytes 0=off 1=on -1=auto", "val" },
F
Fabrice Bellard 已提交
2920 2921
    { "nodisp", OPT_BOOL, {(void*)&display_disable}, "disable graphical display" },
    { "f", HAS_ARG, {(void*)opt_format}, "force format", "fmt" },
2922
    { "pix_fmt", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_frame_pix_fmt}, "set pixel format", "format" },
B
Benoit Fouet 已提交
2923
    { "stats", OPT_BOOL | OPT_EXPERT, {(void*)&show_status}, "show status", "" },
2924
    { "debug", HAS_ARG | OPT_FUNC2 | OPT_EXPERT, {(void*)opt_debug}, "print specific debug info", "" },
M
-bug  
Michael Niedermayer 已提交
2925
    { "bug", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&workaround_bugs}, "workaround bugs", "" },
2926
    { "vismv", HAS_ARG | OPT_FUNC2 | OPT_EXPERT, {(void*)opt_vismv}, "visualize motion vectors", "" },
2927
    { "fast", OPT_BOOL | OPT_EXPERT, {(void*)&fast}, "non spec compliant optimizations", "" },
2928
    { "genpts", OPT_BOOL | OPT_EXPERT, {(void*)&genpts}, "generate pts", "" },
2929
    { "drp", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&decoder_reorder_pts}, "let decoder reorder pts 0=off 1=on -1=auto", ""},
M
Michael Niedermayer 已提交
2930
    { "lowres", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&lowres}, "", "" },
M
Michael Niedermayer 已提交
2931 2932 2933
    { "skiploop", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&skip_loop_filter}, "", "" },
    { "skipframe", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&skip_frame}, "", "" },
    { "skipidct", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&skip_idct}, "", "" },
M
Michael Niedermayer 已提交
2934
    { "idct", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&idct}, "set idct algo",  "algo" },
2935
    { "er", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&error_recognition}, "set error detection threshold (0-4)",  "threshold" },
2936
    { "ec", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&error_concealment}, "set error concealment options",  "bit_mask" },
2937
    { "sync", HAS_ARG | OPT_FUNC2 | OPT_EXPERT, {(void*)opt_sync}, "set audio-video sync. type (type=audio/video/ext)", "type" },
2938
    { "threads", HAS_ARG | OPT_FUNC2 | OPT_EXPERT, {(void*)opt_thread_count}, "thread count", "count" },
M
Michael Niedermayer 已提交
2939
    { "autoexit", OPT_BOOL | OPT_EXPERT, {(void*)&autoexit}, "exit at the end", "" },
2940 2941 2942
#if CONFIG_AVFILTER
    { "vfilters", OPT_STRING | HAS_ARG, {(void*)&vfilters}, "video filters", "filter list" },
#endif
2943
    { "default", OPT_FUNC2 | HAS_ARG | OPT_AUDIO | OPT_VIDEO | OPT_EXPERT, {(void*)opt_default}, "generic catch all option", "" },
F
Fabrice Bellard 已提交
2944 2945 2946
    { NULL, },
};

2947
static void show_usage(void)
F
Fabrice Bellard 已提交
2948
{
2949 2950
    printf("Simple media player\n");
    printf("usage: ffplay [options] input_file\n");
F
Fabrice Bellard 已提交
2951
    printf("\n");
2952 2953 2954 2955 2956
}

static void show_help(void)
{
    show_usage();
2957 2958 2959 2960
    show_help_options(options, "Main options:\n",
                      OPT_EXPERT, 0);
    show_help_options(options, "\nAdvanced options:\n",
                      OPT_EXPERT, OPT_EXPERT);
F
Fabrice Bellard 已提交
2961 2962 2963 2964
    printf("\nWhile playing:\n"
           "q, ESC              quit\n"
           "f                   toggle full screen\n"
           "p, SPC              pause\n"
2965 2966
           "a                   cycle audio channel\n"
           "v                   cycle video channel\n"
2967
           "t                   cycle subtitle channel\n"
2968
           "w                   show audio waves\n"
F
Fabrice Bellard 已提交
2969 2970
           "left/right          seek backward/forward 10 seconds\n"
           "down/up             seek backward/forward 1 minute\n"
2971
           "mouse click         seek to percentage in file corresponding to fraction of width\n"
F
Fabrice Bellard 已提交
2972 2973 2974
           );
}

2975
static void opt_input_file(const char *filename)
F
Fabrice Bellard 已提交
2976
{
2977 2978 2979 2980 2981
    if (input_filename) {
        fprintf(stderr, "Argument '%s' provided as input filename, but '%s' was already specified.\n",
                filename, input_filename);
        exit(1);
    }
2982
    if (!strcmp(filename, "-"))
D
Diego Biurrun 已提交
2983
        filename = "pipe:";
F
Fabrice Bellard 已提交
2984 2985 2986 2987 2988 2989
    input_filename = filename;
}

/* Called from the main */
int main(int argc, char **argv)
{
2990
    int flags, i;
2991

F
Fabrice Bellard 已提交
2992
    /* register all codecs, demux and protocols */
L
Luca Abeni 已提交
2993 2994
    avcodec_register_all();
    avdevice_register_all();
2995 2996 2997
#if CONFIG_AVFILTER
    avfilter_register_all();
#endif
F
Fabrice Bellard 已提交
2998 2999
    av_register_all();

3000
    for(i=0; i<CODEC_TYPE_NB; i++){
3001
        avcodec_opts[i]= avcodec_alloc_context2(i);
3002
    }
3003
    avformat_opts = avformat_alloc_context();
3004
#if !CONFIG_AVFILTER
3005
    sws_opts = sws_getContext(16,16,0, 16,16,0, sws_flags, NULL,NULL,NULL);
3006
#endif
3007

3008
    show_banner();
3009

3010
    parse_options(argc, argv, options, opt_input_file);
F
Fabrice Bellard 已提交
3011

3012
    if (!input_filename) {
3013
        show_usage();
3014
        fprintf(stderr, "An input file must be specified\n");
3015
        fprintf(stderr, "Use -h to get full help or, even better, run 'man ffplay'\n");
3016 3017
        exit(1);
    }
F
Fabrice Bellard 已提交
3018 3019 3020 3021

    if (display_disable) {
        video_disable = 1;
    }
3022
    flags = SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_TIMER;
3023 3024
#if !defined(__MINGW32__) && !defined(__APPLE__)
    flags |= SDL_INIT_EVENTTHREAD; /* Not supported on Windows or Mac OS X */
3025
#endif
F
Fabrice Bellard 已提交
3026
    if (SDL_Init (flags)) {
3027
        fprintf(stderr, "Could not initialize SDL - %s\n", SDL_GetError());
F
Fabrice Bellard 已提交
3028 3029 3030 3031
        exit(1);
    }

    if (!display_disable) {
3032
#if HAVE_SDL_VIDEO_SIZE
3033 3034 3035
        const SDL_VideoInfo *vi = SDL_GetVideoInfo();
        fs_screen_width = vi->current_w;
        fs_screen_height = vi->current_h;
3036
#endif
F
Fabrice Bellard 已提交
3037 3038 3039 3040 3041 3042
    }

    SDL_EventState(SDL_ACTIVEEVENT, SDL_IGNORE);
    SDL_EventState(SDL_SYSWMEVENT, SDL_IGNORE);
    SDL_EventState(SDL_USEREVENT, SDL_IGNORE);

3043 3044 3045
    av_init_packet(&flush_pkt);
    flush_pkt.data= "FLUSH";

3046
    cur_stream = stream_open(input_filename, file_iformat);
F
Fabrice Bellard 已提交
3047 3048 3049 3050 3051 3052 3053

    event_loop();

    /* never returns */

    return 0;
}