ffplay.c 99.9 KB
Newer Older
Fabrice Bellard's avatar
Fabrice Bellard committed
1
/*
2
 * FFplay : Simple Media Player based on the FFmpeg libraries
Fabrice Bellard's avatar
Fabrice Bellard committed
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
Fabrice Bellard's avatar
Fabrice Bellard committed
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.
Fabrice Bellard's avatar
Fabrice Bellard committed
11
 *
12
 * FFmpeg is distributed in the hope that it will be useful,
Fabrice Bellard's avatar
Fabrice Bellard committed
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
Fabrice Bellard's avatar
Fabrice Bellard committed
20
 */
21

22
#include "config.h"
23
#include <inttypes.h>
24 25
#include <math.h>
#include <limits.h>
26
#include "libavutil/avstring.h"
27
#include "libavutil/colorspace.h"
28
#include "libavutil/pixdesc.h"
29
#include "libavcore/parseutils.h"
30 31 32
#include "libavformat/avformat.h"
#include "libavdevice/avdevice.h"
#include "libswscale/swscale.h"
33
#include "libavcodec/audioconvert.h"
34
#include "libavcodec/opt.h"
35
#include "libavcodec/avfft.h"
Fabrice Bellard's avatar
Fabrice Bellard committed
36

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

Fabrice Bellard's avatar
Fabrice Bellard committed
43 44 45 46 47
#include "cmdutils.h"

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

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

52 53 54
#include <unistd.h>
#include <assert.h>

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

58 59
//#define DEBUG_SYNC

60 61 62
#define MAX_QUEUE_SIZE (15 * 1024 * 1024)
#define MIN_AUDIOQ_SIZE (20 * 16 * 1024)
#define MIN_FRAMES 5
Fabrice Bellard's avatar
Fabrice Bellard committed
63

64 65 66 67 68
/* 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 */
69
#define AV_SYNC_THRESHOLD 0.01
70 71 72
/* no AV correction is done if too big error */
#define AV_NOSYNC_THRESHOLD 10.0

73 74
#define FRAME_SKIP_FACTOR 0.05

75 76 77 78 79 80
/* 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

Fabrice Bellard's avatar
Fabrice Bellard committed
81 82 83
/* NOTE: the size must be big enough to compensate the hardware audio buffersize size */
#define SAMPLE_ARRAY_SIZE (2*65536)

84 85
static int sws_flags = SWS_BICUBIC;

Fabrice Bellard's avatar
Fabrice Bellard committed
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;

95
#define VIDEO_PICTURE_QUEUE_SIZE 2
96
#define SUBPICTURE_QUEUE_SIZE 4
Fabrice Bellard's avatar
Fabrice Bellard committed
97 98

typedef struct VideoPicture {
99
    double pts;                                  ///<presentation time stamp for this picture
100
    double target_clock;                         ///<av_gettime() time at which this should be displayed ideally
101
    int64_t pos;                                 ///<byte position in file
Fabrice Bellard's avatar
Fabrice Bellard committed
102 103 104
    SDL_Overlay *bmp;
    int width, height; /* source height & width */
    int allocated;
105 106 107
    enum PixelFormat pix_fmt;

#if CONFIG_AVFILTER
108
    AVFilterBufferRef *picref;
109
#endif
Fabrice Bellard's avatar
Fabrice Bellard committed
110 111
} VideoPicture;

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

Fabrice Bellard's avatar
Fabrice Bellard committed
117 118 119
enum {
    AV_SYNC_AUDIO_MASTER, /* default choice */
    AV_SYNC_VIDEO_MASTER,
120
    AV_SYNC_EXTERNAL_CLOCK, /* synchronize to an external clock */
Fabrice Bellard's avatar
Fabrice Bellard committed
121 122 123 124 125
};

typedef struct VideoState {
    SDL_Thread *parse_tid;
    SDL_Thread *video_tid;
126
    SDL_Thread *refresh_tid;
127
    AVInputFormat *iformat;
Fabrice Bellard's avatar
Fabrice Bellard committed
128 129 130
    int no_background;
    int abort_request;
    int paused;
131
    int last_paused;
Fabrice Bellard's avatar
Fabrice Bellard committed
132
    int seek_req;
133
    int seek_flags;
Fabrice Bellard's avatar
Fabrice Bellard committed
134
    int64_t seek_pos;
135
    int64_t seek_rel;
136
    int read_pause_return;
Fabrice Bellard's avatar
Fabrice Bellard committed
137 138 139 140
    AVFormatContext *ic;
    int dtg_active_format;

    int audio_stream;
141

Fabrice Bellard's avatar
Fabrice Bellard committed
142
    int av_sync_type;
143 144
    double external_clock; /* external clock base */
    int64_t external_clock_time;
145

146 147 148 149 150
    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;
Fabrice Bellard's avatar
Fabrice Bellard committed
151 152 153 154 155
    AVStream *audio_st;
    PacketQueue audioq;
    int audio_hw_buf_size;
    /* samples output by the codec. we reserve more space for avsync
       compensation */
156 157
    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];
158
    uint8_t *audio_buf;
159
    unsigned int audio_buf_size; /* in bytes */
Fabrice Bellard's avatar
Fabrice Bellard committed
160
    int audio_buf_index; /* in bytes */
161
    AVPacket audio_pkt_temp;
Fabrice Bellard's avatar
Fabrice Bellard committed
162
    AVPacket audio_pkt;
163 164
    enum SampleFormat audio_src_fmt;
    AVAudioConvert *reformat_ctx;
165

Fabrice Bellard's avatar
Fabrice Bellard committed
166 167 168
    int show_audio; /* if true, display audio samples */
    int16_t sample_array[SAMPLE_ARRAY_SIZE];
    int sample_array_index;
169
    int last_i_start;
170
    RDFTContext *rdft;
171
    int rdft_bits;
Måns Rullgård's avatar
Måns Rullgård committed
172
    FFTSample *rdft_data;
173
    int xpos;
174

175 176 177 178 179 180 181 182 183
    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;
184

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

Fabrice Bellard's avatar
Fabrice Bellard committed
203 204 205
    //    QETimer *video_timer;
    char filename[1024];
    int width, height, xleft, ytop;
206 207 208 209 210 211

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

212 213 214
#if CONFIG_AVFILTER
    AVFilterContext *out_video_filter;          ///<the last filter in the video chain
#endif
215 216 217 218

    float skip_frames;
    float skip_frames_index;
    int refresh;
Fabrice Bellard's avatar
Fabrice Bellard committed
219 220
} VideoState;

221
static void show_help(void);
222
static int audio_write_get_buf_size(VideoState *is);
Fabrice Bellard's avatar
Fabrice Bellard committed
223 224 225 226

/* options specified by the user */
static AVInputFormat *file_iformat;
static const char *input_filename;
227
static const char *window_title;
Fabrice Bellard's avatar
Fabrice Bellard committed
228 229
static int fs_screen_width;
static int fs_screen_height;
230 231
static int screen_width = 0;
static int screen_height = 0;
232 233 234
static int frame_width = 0;
static int frame_height = 0;
static enum PixelFormat frame_pix_fmt = PIX_FMT_NONE;
Fabrice Bellard's avatar
Fabrice Bellard committed
235 236
static int audio_disable;
static int video_disable;
237 238 239 240
static int wanted_stream[AVMEDIA_TYPE_NB]={
    [AVMEDIA_TYPE_AUDIO]=-1,
    [AVMEDIA_TYPE_VIDEO]=-1,
    [AVMEDIA_TYPE_SUBTITLE]=-1,
241
};
242
static int seek_by_bytes=-1;
Fabrice Bellard's avatar
Fabrice Bellard committed
243
static int display_disable;
244
static int show_status = 1;
245
static int av_sync_type = AV_SYNC_AUDIO_MASTER;
Fabrice Bellard's avatar
Fabrice Bellard committed
246
static int64_t start_time = AV_NOPTS_VALUE;
247
static int64_t duration = AV_NOPTS_VALUE;
248
static int debug = 0;
249
static int debug_mv = 0;
250
static int step = 0;
251
static int thread_count = 1;
Michael Niedermayer's avatar
Michael Niedermayer committed
252
static int workaround_bugs = 1;
253
static int fast = 0;
254
static int genpts = 0;
255 256
static int lowres = 0;
static int idct = FF_IDCT_AUTO;
Michael Niedermayer's avatar
Michael Niedermayer committed
257 258 259
static enum AVDiscard skip_frame= AVDISCARD_DEFAULT;
static enum AVDiscard skip_idct= AVDISCARD_DEFAULT;
static enum AVDiscard skip_loop_filter= AVDISCARD_DEFAULT;
260
static int error_recognition = FF_ER_CAREFUL;
261
static int error_concealment = 3;
262
static int decoder_reorder_pts= -1;
Michael Niedermayer's avatar
Michael Niedermayer committed
263
static int autoexit;
264 265
static int exit_on_keydown;
static int exit_on_mousedown;
266
static int loop=1;
267
static int framedrop=1;
268 269

static int rdftspeed=20;
270 271 272
#if CONFIG_AVFILTER
static char *vfilters = NULL;
#endif
Fabrice Bellard's avatar
Fabrice Bellard committed
273 274 275 276

/* current context */
static int is_full_screen;
static VideoState *cur_stream;
277
static int64_t audio_callback_time;
Fabrice Bellard's avatar
Fabrice Bellard committed
278

279
static AVPacket flush_pkt;
280

Fabrice Bellard's avatar
Fabrice Bellard committed
281 282
#define FF_ALLOC_EVENT   (SDL_USEREVENT)
#define FF_REFRESH_EVENT (SDL_USEREVENT + 1)
283
#define FF_QUIT_EVENT    (SDL_USEREVENT + 2)
Fabrice Bellard's avatar
Fabrice Bellard committed
284

285
static SDL_Surface *screen;
Fabrice Bellard's avatar
Fabrice Bellard committed
286

287 288
static int packet_queue_put(PacketQueue *q, AVPacket *pkt);

Fabrice Bellard's avatar
Fabrice Bellard committed
289 290 291 292 293 294
/* packet queue handling */
static void packet_queue_init(PacketQueue *q)
{
    memset(q, 0, sizeof(PacketQueue));
    q->mutex = SDL_CreateMutex();
    q->cond = SDL_CreateCond();
295
    packet_queue_put(q, &flush_pkt);
Fabrice Bellard's avatar
Fabrice Bellard committed
296 297
}

Fabrice Bellard's avatar
Fabrice Bellard committed
298
static void packet_queue_flush(PacketQueue *q)
Fabrice Bellard's avatar
Fabrice Bellard committed
299 300 301
{
    AVPacketList *pkt, *pkt1;

302
    SDL_LockMutex(q->mutex);
Fabrice Bellard's avatar
Fabrice Bellard committed
303 304 305
    for(pkt = q->first_pkt; pkt != NULL; pkt = pkt1) {
        pkt1 = pkt->next;
        av_free_packet(&pkt->pkt);
306
        av_freep(&pkt);
Fabrice Bellard's avatar
Fabrice Bellard committed
307
    }
Fabrice Bellard's avatar
Fabrice Bellard committed
308 309 310 311
    q->last_pkt = NULL;
    q->first_pkt = NULL;
    q->nb_packets = 0;
    q->size = 0;
312
    SDL_UnlockMutex(q->mutex);
Fabrice Bellard's avatar
Fabrice Bellard committed
313 314 315 316 317
}

static void packet_queue_end(PacketQueue *q)
{
    packet_queue_flush(q);
Fabrice Bellard's avatar
Fabrice Bellard committed
318 319 320 321 322 323 324 325
    SDL_DestroyMutex(q->mutex);
    SDL_DestroyCond(q->cond);
}

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

Fabrice Bellard's avatar
Fabrice Bellard committed
326
    /* duplicate the packet */
327
    if (pkt!=&flush_pkt && av_dup_packet(pkt) < 0)
Fabrice Bellard's avatar
Fabrice Bellard committed
328
        return -1;
329

Fabrice Bellard's avatar
Fabrice Bellard committed
330 331 332 333 334 335
    pkt1 = av_malloc(sizeof(AVPacketList));
    if (!pkt1)
        return -1;
    pkt1->pkt = *pkt;
    pkt1->next = NULL;

Fabrice Bellard's avatar
Fabrice Bellard committed
336

Fabrice Bellard's avatar
Fabrice Bellard committed
337 338 339 340 341 342 343 344 345
    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++;
346
    q->size += pkt1->pkt.size + sizeof(*pkt1);
Fabrice Bellard's avatar
Fabrice Bellard committed
347 348 349 350 351 352 353 354 355 356 357 358
    /* 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;
359

Fabrice Bellard's avatar
Fabrice Bellard committed
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
    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;
        }
378

Fabrice Bellard's avatar
Fabrice Bellard committed
379 380 381 382 383 384
        pkt1 = q->first_pkt;
        if (pkt1) {
            q->first_pkt = pkt1->next;
            if (!q->first_pkt)
                q->last_pkt = NULL;
            q->nb_packets--;
385
            q->size -= pkt1->pkt.size + sizeof(*pkt1);
Fabrice Bellard's avatar
Fabrice Bellard committed
386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
            *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;
}

401
static inline void fill_rectangle(SDL_Surface *screen,
Fabrice Bellard's avatar
Fabrice Bellard committed
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
                                  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;
431 432 433
    fill_rectangle(screen,
                   s->xleft, s->ytop,
                   w1, s->height,
Fabrice Bellard's avatar
Fabrice Bellard committed
434
                   color);
435 436 437
    fill_rectangle(screen,
                   s->xleft + s->width - w2, s->ytop,
                   w2, s->height,
Fabrice Bellard's avatar
Fabrice Bellard committed
438
                   color);
439 440 441
    fill_rectangle(screen,
                   s->xleft + w1, s->ytop,
                   s->width - w1 - w2, h1,
Fabrice Bellard's avatar
Fabrice Bellard committed
442
                   color);
443
    fill_rectangle(screen,
Fabrice Bellard's avatar
Fabrice Bellard committed
444 445 446 447 448 449
                   s->xleft + w1, s->ytop + s->height - h2,
                   s->width - w1 - w2, h2,
                   color);
}
#endif

450 451 452 453 454 455 456 457 458 459 460 461 462 463
#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)\
{\
464
    unsigned int val = ((const uint32_t *)(pal))[*(const uint8_t*)(s)];\
465 466 467 468 469 470 471 472 473 474 475 476 477 478
    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

479
static void blend_subrect(AVPicture *dst, const AVSubtitleRect *rect, int imgw, int imgh)
480 481 482 483 484 485
{
    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;
486 487
    int dstx, dsty, dstw, dsth;

488 489 490 491
    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);
492 493 494 495
    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];

496
    width2 = ((dstw + 1) >> 1) + (dstx & ~dstw & 1);
497
    skip2 = dstx >> 1;
498
    wrap = dst->linesize[0];
499 500 501
    wrap3 = rect->pict.linesize[0];
    p = rect->pict.data[0];
    pal = (const uint32_t *)rect->pict.data[1];  /* Now in YCrCb! */
502

503 504
    if (dsty & 1) {
        lum += dstx;
505 506
        cb += skip2;
        cr += skip2;
507

508
        if (dstx & 1) {
509 510 511 512 513 514 515 516 517
            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;
        }
518
        for(w = dstw - (dstx & 1); w >= 2; w -= 2) {
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541
            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);
542 543
            p++;
            lum++;
544
        }
545 546
        p += wrap3 - dstw * BPP;
        lum += wrap - dstw - dstx;
547 548 549
        cb += dst->linesize[1] - width2 - skip2;
        cr += dst->linesize[2] - width2 - skip2;
    }
550 551
    for(h = dsth - (dsty & 1); h >= 2; h -= 2) {
        lum += dstx;
552 553
        cb += skip2;
        cr += skip2;
554

555
        if (dstx & 1) {
556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
            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;
        }
575
        for(w = dstw - (dstx & 1); w >= 2; w -= 2) {
576 577 578 579 580 581
            YUVA_IN(y, u, v, a, p, pal);
            u1 = u;
            v1 = v;
            a1 = a;
            lum[0] = ALPHA_BLEND(a, lum[0], y, 0);

582
            YUVA_IN(y, u, v, a, p + BPP, pal);
583 584 585 586 587 588 589 590 591 592 593 594 595
            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);

596
            YUVA_IN(y, u, v, a, p + BPP, pal);
597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629
            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;
        }
630 631
        p += wrap3 + (wrap3 - dstw * BPP);
        lum += wrap + (wrap - dstw - dstx);
632 633 634 635 636
        cb += dst->linesize[1] - width2 - skip2;
        cr += dst->linesize[2] - width2 - skip2;
    }
    /* handle odd height */
    if (h) {
637
        lum += dstx;
638 639
        cb += skip2;
        cr += skip2;
640

641
        if (dstx & 1) {
642 643 644 645 646 647 648 649 650
            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;
        }
651
        for(w = dstw - (dstx & 1); w >= 2; w -= 2) {
652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680
            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)
{
681
    avsubtitle_free(&sp->sub);
682 683
}

Fabrice Bellard's avatar
Fabrice Bellard committed
684 685 686
static void video_image_display(VideoState *is)
{
    VideoPicture *vp;
687 688
    SubPicture *sp;
    AVPicture pict;
Fabrice Bellard's avatar
Fabrice Bellard committed
689 690 691
    float aspect_ratio;
    int width, height, x, y;
    SDL_Rect rect;
692
    int i;
Fabrice Bellard's avatar
Fabrice Bellard committed
693 694 695

    vp = &is->pictq[is->pictq_rindex];
    if (vp->bmp) {
696
#if CONFIG_AVFILTER
697
         if (vp->picref->video->pixel_aspect.num == 0)
698 699
             aspect_ratio = 0;
         else
700
             aspect_ratio = av_q2d(vp->picref->video->pixel_aspect);
701 702
#else

Fabrice Bellard's avatar
Fabrice Bellard committed
703
        /* XXX: use variable in the frame */
704 705 706 707
        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);
Fabrice Bellard's avatar
Fabrice Bellard committed
708
        else
709
            aspect_ratio = 0;
710
#endif
Fabrice Bellard's avatar
Fabrice Bellard committed
711
        if (aspect_ratio <= 0.0)
712
            aspect_ratio = 1.0;
713
        aspect_ratio *= (float)vp->width / (float)vp->height;
Fabrice Bellard's avatar
Fabrice Bellard committed
714 715 716
        /* if an active format is indicated, then it overrides the
           mpeg format */
#if 0
717 718
        if (is->video_st->codec->dtg_active_format != is->dtg_active_format) {
            is->dtg_active_format = is->video_st->codec->dtg_active_format;
Fabrice Bellard's avatar
Fabrice Bellard committed
719 720 721 722
            printf("dtg_active_format=%d\n", is->dtg_active_format);
        }
#endif
#if 0
723
        switch(is->video_st->codec->dtg_active_format) {
Fabrice Bellard's avatar
Fabrice Bellard committed
724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748
        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

749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767
        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++)
768
                        blend_subrect(&pict, sp->sub.rects[i],
769
                                      vp->bmp->w, vp->bmp->h);
770 771 772 773 774 775 776

                    SDL_UnlockYUVOverlay (vp->bmp);
                }
            }
        }


Fabrice Bellard's avatar
Fabrice Bellard committed
777 778
        /* XXX: we suppose the screen has a 1.0 pixel ratio */
        height = is->height;
779
        width = ((int)rint(height * aspect_ratio)) & ~1;
Fabrice Bellard's avatar
Fabrice Bellard committed
780 781
        if (width > is->width) {
            width = is->width;
782
            height = ((int)rint(width / aspect_ratio)) & ~1;
Fabrice Bellard's avatar
Fabrice Bellard committed
783 784 785 786 787 788 789 790 791 792
        }
        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;
Baptiste Coudurier's avatar
Baptiste Coudurier committed
793
        rect.y = is->ytop  + y;
Fabrice Bellard's avatar
Fabrice Bellard committed
794 795 796 797 798
        rect.w = width;
        rect.h = height;
        SDL_DisplayYUVOverlay(vp->bmp, &rect);
    } else {
#if 0
799 800
        fill_rectangle(screen,
                       is->xleft, is->ytop, is->width, is->height,
Fabrice Bellard's avatar
Fabrice Bellard committed
801 802 803 804 805 806 807 808
                       QERGB(0x00, 0x00, 0x00));
#endif
    }
}

static inline int compute_mod(int a, int b)
{
    a = a % b;
809
    if (a >= 0)
Fabrice Bellard's avatar
Fabrice Bellard committed
810 811 812 813 814 815 816 817 818 819
        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;
820 821 822 823 824
    int rdft_bits, nb_freq;

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

Fabrice Bellard's avatar
Fabrice Bellard committed
826
    /* compute display index : center on currently output samples */
827
    channels = s->audio_st->codec->channels;
Fabrice Bellard's avatar
Fabrice Bellard committed
828
    nb_display_channels = channels;
829
    if (!s->paused) {
830
        int data_used= s->show_audio==1 ? s->width : (2*nb_freq);
831 832 833
        n = 2 * channels;
        delay = audio_write_get_buf_size(s);
        delay /= n;
834

835 836 837 838
        /* 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;
839
            delay -= (time_diff * s->audio_st->codec->sample_rate) / 1000000;
840
        }
841

842
        delay += 2*data_used;
843 844
        if (delay < data_used)
            delay = data_used;
845 846

        i_start= x = compute_mod(s->sample_array_index - delay * channels, SAMPLE_ARRAY_SIZE);
847
        if(s->show_audio==1){
848 849 850 851 852 853 854 855 856 857 858 859
            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;
                }
860 861 862
            }
        }

863 864 865
        s->last_i_start = i_start;
    } else {
        i_start = s->last_i_start;
Fabrice Bellard's avatar
Fabrice Bellard committed
866 867 868
    }

    bgcolor = SDL_MapRGB(screen->format, 0x00, 0x00, 0x00);
869
    if(s->show_audio==1){
870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896
        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;
Fabrice Bellard's avatar
Fabrice Bellard committed
897 898 899
            }
        }

900
        fgcolor = SDL_MapRGB(screen->format, 0x00, 0x00, 0xff);
Fabrice Bellard's avatar
Fabrice Bellard committed
901

902 903 904 905 906 907 908
        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);
909 910 911
    }else{
        nb_display_channels= FFMIN(nb_display_channels, 2);
        if(rdft_bits != s->rdft_bits){
912
            av_rdft_end(s->rdft);
Måns Rullgård's avatar
Måns Rullgård committed
913
            av_free(s->rdft_data);
914
            s->rdft = av_rdft_init(rdft_bits, DFT_R2C);
915
            s->rdft_bits= rdft_bits;
Måns Rullgård's avatar
Måns Rullgård committed
916
            s->rdft_data= av_malloc(4*nb_freq*sizeof(*s->rdft_data));
917 918
        }
        {
Måns Rullgård's avatar
Måns Rullgård committed
919
            FFTSample *data[2];
920
            for(ch = 0;ch < nb_display_channels; ch++) {
Måns Rullgård's avatar
Måns Rullgård committed
921
                data[ch] = s->rdft_data + 2*nb_freq*ch;
922 923 924 925 926 927 928 929
                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;
                }
930
                av_rdft_calc(s->rdft, data[ch]);
931 932
            }
            //least efficient way to do this, we should of course directly access it but its more than fast enough
933
            for(y=0; y<s->height; y++){
934 935
                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]));
936 937
                int b= (nb_display_channels == 2 ) ? sqrt(w*sqrt(data[1][2*y+0]*data[1][2*y+0]
                       + data[1][2*y+1]*data[1][2*y+1])) : a;
938 939 940 941 942 943 944 945 946 947 948 949 950 951
                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;
    }
Fabrice Bellard's avatar
Fabrice Bellard committed
952 953
}

954 955 956 957
static int video_open(VideoState *is){
    int flags = SDL_HWSURFACE|SDL_ASYNCBLIT|SDL_HWACCEL;
    int w,h;

958 959 960
    if(is_full_screen) flags |= SDL_FULLSCREEN;
    else               flags |= SDL_RESIZABLE;

961 962 963
    if (is_full_screen && fs_screen_width) {
        w = fs_screen_width;
        h = fs_screen_height;
964 965 966
    } else if(!is_full_screen && screen_width){
        w = screen_width;
        h = screen_height;
967 968 969 970 971
#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
972 973 974
    }else if (is->video_st && is->video_st->codec->width){
        w = is->video_st->codec->width;
        h = is->video_st->codec->height;
975
#endif
976
    } else {
977 978
        w = 640;
        h = 480;
979
    }
980 981 982 983
    if(screen && is->width == screen->w && screen->w == w
       && is->height== screen->h && screen->h == h)
        return 0;

984
#ifndef __APPLE__
985 986 987 988 989 990 991 992 993
    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;
    }
994 995 996
    if (!window_title)
        window_title = input_filename;
    SDL_WM_SetCaption(window_title, window_title);
997 998 999 1000 1001 1002

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

    return 0;
}
1003

Fabrice Bellard's avatar
Fabrice Bellard committed
1004 1005 1006
/* display the current picture, if any */
static void video_display(VideoState *is)
{
1007 1008
    if(!screen)
        video_open(cur_stream);
1009
    if (is->audio_st && is->show_audio)
Fabrice Bellard's avatar
Fabrice Bellard committed
1010 1011 1012 1013 1014
        video_audio_display(is);
    else if (is->video_st)
        video_image_display(is);
}

1015
static int refresh_thread(void *opaque)
Fabrice Bellard's avatar
Fabrice Bellard committed
1016
{
1017 1018
    VideoState *is= opaque;
    while(!is->abort_request){
Fabrice Bellard's avatar
Fabrice Bellard committed
1019 1020 1021
    SDL_Event event;
    event.type = FF_REFRESH_EVENT;
    event.user.data1 = opaque;
1022 1023
        if(!is->refresh){
            is->refresh=1;
Fabrice Bellard's avatar
Fabrice Bellard committed
1024
    SDL_PushEvent(&event);
1025
        }
1026
        usleep(is->audio_st && is->show_audio ? rdftspeed*1000 : 5000); //FIXME ideally we should wait the correct time but SDLs event passing is so slow it would be silly
1027 1028
    }
    return 0;
Fabrice Bellard's avatar
Fabrice Bellard committed
1029 1030
}

1031 1032 1033 1034 1035 1036 1037 1038 1039
/* 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) {
1040
        bytes_per_sec = is->audio_st->codec->sample_rate *
1041
            2 * is->audio_st->codec->channels;
1042 1043 1044 1045 1046 1047 1048 1049 1050
    }
    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)
{
Michael Niedermayer's avatar
Michael Niedermayer committed
1051
    if (is->paused) {
1052
        return is->video_current_pts;
Fabrice Bellard's avatar
Fabrice Bellard committed
1053
    } else {
1054
        return is->video_current_pts_drift + av_gettime() / 1000000.0;
Fabrice Bellard's avatar
Fabrice Bellard committed
1055
    }
1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070
}

/* 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;

Fabrice Bellard's avatar
Fabrice Bellard committed
1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081
    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 {
1082
        val = get_external_clock(is);
Fabrice Bellard's avatar
Fabrice Bellard committed
1083
    }
1084 1085 1086
    return val;
}

Fabrice Bellard's avatar
Fabrice Bellard committed
1087
/* seek in the stream */
1088
static void stream_seek(VideoState *is, int64_t pos, int64_t rel, int seek_by_bytes)
Fabrice Bellard's avatar
Fabrice Bellard committed
1089
{
1090 1091
    if (!is->seek_req) {
        is->seek_pos = pos;
1092
        is->seek_rel = rel;
Michael Niedermayer's avatar
Michael Niedermayer committed
1093
        is->seek_flags &= ~AVSEEK_FLAG_BYTE;
1094 1095
        if (seek_by_bytes)
            is->seek_flags |= AVSEEK_FLAG_BYTE;
1096 1097
        is->seek_req = 1;
    }
Fabrice Bellard's avatar
Fabrice Bellard committed
1098 1099 1100 1101 1102
}

/* pause or resume the video */
static void stream_pause(VideoState *is)
{
1103 1104
    if (is->paused) {
        is->frame_timer += av_gettime() / 1000000.0 + is->video_current_pts_drift - is->video_current_pts;
1105
        if(is->read_pause_return != AVERROR(ENOSYS)){
1106
            is->video_current_pts = is->video_current_pts_drift + av_gettime() / 1000000.0;
1107
        }
1108
        is->video_current_pts_drift = is->video_current_pts - av_gettime() / 1000000.0;
Fabrice Bellard's avatar
Fabrice Bellard committed
1109
    }
1110
    is->paused = !is->paused;
Fabrice Bellard's avatar
Fabrice Bellard committed
1111 1112
}

1113
static double compute_target_time(double frame_current_pts, VideoState *is)
1114
{
1115
    double delay, sync_threshold, diff;
1116 1117 1118 1119 1120 1121

    /* 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;
1122
    } else {
1123
        is->frame_last_delay = delay;
1124
    }
1125 1126 1127 1128 1129 1130 1131
    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 */
1132
        diff = get_video_clock(is) - get_master_clock(is);
1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145

        /* 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;
1146 1147 1148 1149 1150
#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

1151
    return is->frame_timer;
1152 1153
}

Fabrice Bellard's avatar
Fabrice Bellard committed
1154 1155 1156 1157 1158
/* called to display each frame */
static void video_refresh_timer(void *opaque)
{
    VideoState *is = opaque;
    VideoPicture *vp;
1159

1160
    SubPicture *sp, *sp2;
Fabrice Bellard's avatar
Fabrice Bellard committed
1161 1162

    if (is->video_st) {
1163
retry:
Fabrice Bellard's avatar
Fabrice Bellard committed
1164
        if (is->pictq_size == 0) {
1165
            //nothing to do, no picture to display in the que
Fabrice Bellard's avatar
Fabrice Bellard committed
1166
        } else {
1167 1168
            double time= av_gettime()/1000000.0;
            double next_target;
1169
            /* dequeue the picture */
Fabrice Bellard's avatar
Fabrice Bellard committed
1170
            vp = &is->pictq[is->pictq_rindex];
1171

1172 1173
            if(time < vp->target_clock)
                return;
1174 1175
            /* update current video pts */
            is->video_current_pts = vp->pts;
1176
            is->video_current_pts_drift = is->video_current_pts - time;
1177
            is->video_current_pos = vp->pos;
1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198
            if(is->pictq_size > 1){
                VideoPicture *nextvp= &is->pictq[(is->pictq_rindex+1)%VIDEO_PICTURE_QUEUE_SIZE];
                assert(nextvp->target_clock >= vp->target_clock);
                next_target= nextvp->target_clock;
            }else{
                next_target= vp->target_clock + is->video_clock - vp->pts; //FIXME pass durations cleanly
            }
            if(framedrop && time > next_target){
                is->skip_frames *= 1.0 + FRAME_SKIP_FACTOR;
                if(is->pictq_size > 1 || time > next_target + 0.5){
                    /* update queue size and signal for next picture */
                    if (++is->pictq_rindex == VIDEO_PICTURE_QUEUE_SIZE)
                        is->pictq_rindex = 0;

                    SDL_LockMutex(is->pictq_mutex);
                    is->pictq_size--;
                    SDL_CondSignal(is->pictq_cond);
                    SDL_UnlockMutex(is->pictq_mutex);
                    goto retry;
                }
            }
1199

1200 1201 1202
            if(is->subtitle_st) {
                if (is->subtitle_stream_changed) {
                    SDL_LockMutex(is->subpq_mutex);
1203

1204 1205
                    while (is->subpq_size) {
                        free_subpicture(&is->subpq[is->subpq_rindex]);
1206

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

1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243
                        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);
                        }
                    }
                }
            }

Fabrice Bellard's avatar
Fabrice Bellard committed
1244 1245
            /* display picture */
            video_display(is);
1246

Fabrice Bellard's avatar
Fabrice Bellard committed
1247 1248 1249
            /* update queue size and signal for next picture */
            if (++is->pictq_rindex == VIDEO_PICTURE_QUEUE_SIZE)
                is->pictq_rindex = 0;
1250

Fabrice Bellard's avatar
Fabrice Bellard committed
1251 1252 1253 1254 1255 1256 1257 1258 1259 1260
            SDL_LockMutex(is->pictq_mutex);
            is->pictq_size--;
            SDL_CondSignal(is->pictq_cond);
            SDL_UnlockMutex(is->pictq_mutex);
        }
    } else if (is->audio_st) {
        /* draw the next audio frame */

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

Fabrice Bellard's avatar
Fabrice Bellard committed
1262 1263 1264 1265 1266 1267
        /* display picture */
        video_display(is);
    }
    if (show_status) {
        static int64_t last_time;
        int64_t cur_time;
1268
        int aqsize, vqsize, sqsize;
1269
        double av_diff;
1270

Fabrice Bellard's avatar
Fabrice Bellard committed
1271
        cur_time = av_gettime();
1272
        if (!last_time || (cur_time - last_time) >= 30000) {
Fabrice Bellard's avatar
Fabrice Bellard committed
1273 1274
            aqsize = 0;
            vqsize = 0;
1275
            sqsize = 0;
Fabrice Bellard's avatar
Fabrice Bellard committed
1276 1277 1278 1279
            if (is->audio_st)
                aqsize = is->audioq.size;
            if (is->video_st)
                vqsize = is->videoq.size;
1280 1281
            if (is->subtitle_st)
                sqsize = is->subtitleq.size;
1282 1283 1284
            av_diff = 0;
            if (is->audio_st && is->video_st)
                av_diff = get_audio_clock(is) - get_video_clock(is);
1285 1286
            printf("%7.2f A-V:%7.3f s:%3.1f aq=%5dKB vq=%5dKB sq=%5dB f=%"PRId64"/%"PRId64"   \r",
                   get_master_clock(is), av_diff, FFMAX(is->skip_frames-1, 0), aqsize / 1024, vqsize / 1024, sqsize, is->faulty_dts, is->faulty_pts);
Fabrice Bellard's avatar
Fabrice Bellard committed
1287 1288 1289 1290 1291 1292
            fflush(stdout);
            last_time = cur_time;
        }
    }
}

1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346
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);
    SDL_WaitThread(is->refresh_tid, NULL);

    /* free all pictures */
    for(i=0;i<VIDEO_PICTURE_QUEUE_SIZE; i++) {
        vp = &is->pictq[i];
#if CONFIG_AVFILTER
        if (vp->picref) {
            avfilter_unref_buffer(vp->picref);
            vp->picref = NULL;
        }
#endif
        if (vp->bmp) {
            SDL_FreeYUVOverlay(vp->bmp);
            vp->bmp = NULL;
        }
    }
    SDL_DestroyMutex(is->pictq_mutex);
    SDL_DestroyCond(is->pictq_cond);
    SDL_DestroyMutex(is->subpq_mutex);
    SDL_DestroyCond(is->subpq_cond);
#if !CONFIG_AVFILTER
    if (is->img_convert_ctx)
        sws_freeContext(is->img_convert_ctx);
#endif
    av_free(is);
}

static void do_exit(void)
{
    int i;
    if (cur_stream) {
        stream_close(cur_stream);
        cur_stream = NULL;
    }
    for (i = 0; i < AVMEDIA_TYPE_NB; i++)
        av_free(avcodec_opts[i]);
    av_free(avformat_opts);
    av_free(sws_opts);
#if CONFIG_AVFILTER
    avfilter_uninit();
#endif
    if (show_status)
        printf("\n");
    SDL_Quit();
    exit(0);
}

Fabrice Bellard's avatar
Fabrice Bellard committed
1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358
/* 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);

1359 1360
#if CONFIG_AVFILTER
    if (vp->picref)
1361
        avfilter_unref_buffer(vp->picref);
1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373
    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,
1374
                                   SDL_YV12_OVERLAY,
1375
                                   screen);
1376 1377 1378 1379
    if (!vp->bmp || vp->bmp->pitches[0] < vp->width) {
        /* SDL allocates a buffer smaller than requested if the video
         * overlay hardware is unable to support the requested size. */
        fprintf(stderr, "Error: the video system does not support an image\n"
1380
                        "size of %dx%d pixels. Try using -lowres or -vf \"scale=w:h\"\n"
1381 1382 1383
                        "to reduce the image size.\n", vp->width, vp->height );
        do_exit();
    }
Fabrice Bellard's avatar
Fabrice Bellard committed
1384 1385 1386 1387 1388 1389 1390

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

1391 1392 1393 1394
/**
 *
 * @param pts the dts of the pkt / pts of the frame and guessed if not known
 */
1395
static int queue_picture(VideoState *is, AVFrame *src_frame, double pts, int64_t pos)
Fabrice Bellard's avatar
Fabrice Bellard committed
1396 1397 1398
{
    VideoPicture *vp;
    int dst_pix_fmt;
1399 1400 1401
#if CONFIG_AVFILTER
    AVPicture pict_src;
#endif
Fabrice Bellard's avatar
Fabrice Bellard committed
1402 1403
    /* wait until we have space to put a new picture */
    SDL_LockMutex(is->pictq_mutex);
1404 1405 1406 1407

    if(is->pictq_size>=VIDEO_PICTURE_QUEUE_SIZE && !is->refresh)
        is->skip_frames= FFMAX(1.0 - FRAME_SKIP_FACTOR, is->skip_frames * (1.0-FRAME_SKIP_FACTOR));

Fabrice Bellard's avatar
Fabrice Bellard committed
1408 1409 1410 1411 1412
    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);
1413

Fabrice Bellard's avatar
Fabrice Bellard committed
1414 1415 1416 1417 1418 1419
    if (is->videoq.abort_request)
        return -1;

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

    /* alloc or resize hardware picture buffer */
1420
    if (!vp->bmp ||
1421 1422 1423 1424
#if CONFIG_AVFILTER
        vp->width  != is->out_video_filter->inputs[0]->w ||
        vp->height != is->out_video_filter->inputs[0]->h) {
#else
1425 1426
        vp->width != is->video_st->codec->width ||
        vp->height != is->video_st->codec->height) {
1427
#endif
Fabrice Bellard's avatar
Fabrice Bellard committed
1428 1429 1430 1431 1432 1433 1434 1435 1436
        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);
1437

Fabrice Bellard's avatar
Fabrice Bellard committed
1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448
        /* 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;
    }

1449
    /* if the frame is not skipped, then display it */
Fabrice Bellard's avatar
Fabrice Bellard committed
1450
    if (vp->bmp) {
1451
        AVPicture pict;
1452 1453
#if CONFIG_AVFILTER
        if(vp->picref)
1454
            avfilter_unref_buffer(vp->picref);
1455 1456
        vp->picref = src_frame->opaque;
#endif
1457

Fabrice Bellard's avatar
Fabrice Bellard committed
1458 1459 1460 1461
        /* get a pointer on the bitmap */
        SDL_LockYUVOverlay (vp->bmp);

        dst_pix_fmt = PIX_FMT_YUV420P;
1462
        memset(&pict,0,sizeof(AVPicture));
Fabrice Bellard's avatar
Fabrice Bellard committed
1463 1464 1465 1466 1467 1468 1469
        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];
1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483

#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
1484
        sws_flags = av_get_int(sws_opts, "sws_flags", NULL);
1485
        is->img_convert_ctx = sws_getCachedContext(is->img_convert_ctx,
1486
            vp->width, vp->height, vp->pix_fmt, vp->width, vp->height,
1487
            dst_pix_fmt, sws_flags, NULL, NULL, NULL);
1488
        if (is->img_convert_ctx == NULL) {
1489 1490 1491
            fprintf(stderr, "Cannot initialize the conversion context\n");
            exit(1);
        }
1492
        sws_scale(is->img_convert_ctx, src_frame->data, src_frame->linesize,
1493 1494
                  0, vp->height, pict.data, pict.linesize);
#endif
Fabrice Bellard's avatar
Fabrice Bellard committed
1495 1496 1497
        /* update the bitmap content */
        SDL_UnlockYUVOverlay(vp->bmp);

1498
        vp->pts = pts;
1499
        vp->pos = pos;
Fabrice Bellard's avatar
Fabrice Bellard committed
1500 1501 1502 1503 1504

        /* now we can update the picture count */
        if (++is->pictq_windex == VIDEO_PICTURE_QUEUE_SIZE)
            is->pictq_windex = 0;
        SDL_LockMutex(is->pictq_mutex);
1505 1506
        vp->target_clock= compute_target_time(vp->pts, is);

Fabrice Bellard's avatar
Fabrice Bellard committed
1507 1508 1509
        is->pictq_size++;
        SDL_UnlockMutex(is->pictq_mutex);
    }
1510 1511 1512
    return 0;
}

1513 1514
/**
 * compute the exact PTS for the picture if it is omitted in the stream
1515 1516
 * @param pts1 the dts of the pkt / pts of the frame
 */
1517
static int output_picture2(VideoState *is, AVFrame *src_frame, double pts1, int64_t pos)
1518 1519
{
    double frame_delay, pts;
1520

1521 1522
    pts = pts1;

Fabrice Bellard's avatar
Fabrice Bellard committed
1523
    if (pts != 0) {
1524
        /* update video clock with pts, if present */
Fabrice Bellard's avatar
Fabrice Bellard committed
1525 1526
        is->video_clock = pts;
    } else {
Fabrice Bellard's avatar
Fabrice Bellard committed
1527 1528 1529
        pts = is->video_clock;
    }
    /* update video clock for next frame */
1530
    frame_delay = av_q2d(is->video_st->codec->time_base);
Fabrice Bellard's avatar
Fabrice Bellard committed
1531 1532
    /* for MPEG2, the frame can be repeated, so we update the
       clock accordingly */
1533
    frame_delay += src_frame->repeat_pict * (frame_delay * 0.5);
Fabrice Bellard's avatar
Fabrice Bellard committed
1534
    is->video_clock += frame_delay;
1535 1536

#if defined(DEBUG_SYNC) && 0
1537 1538
    printf("frame_type=%c clock=%0.3f pts=%0.3f\n",
           av_get_pict_type_char(src_frame->pict_type), pts, pts1);
1539
#endif
1540
    return queue_picture(is, src_frame, pts, pos);
Fabrice Bellard's avatar
Fabrice Bellard committed
1541 1542
}

1543
static int get_video_frame(VideoState *is, AVFrame *frame, int64_t *pts, AVPacket *pkt)
Fabrice Bellard's avatar
Fabrice Bellard committed
1544
{
1545
    int len1, got_picture, i;
Fabrice Bellard's avatar
Fabrice Bellard committed
1546 1547

        if (packet_queue_get(&is->videoq, pkt, 1) < 0)
1548
            return -1;
1549 1550 1551

        if(pkt->data == flush_pkt.data){
            avcodec_flush_buffers(is->video_st->codec);
1552 1553 1554 1555

            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++){
1556
                is->pictq[i].target_clock= 0;
1557 1558 1559 1560
            }
            while (is->pictq_size && !is->videoq.abort_request) {
                SDL_CondWait(is->pictq_cond, is->pictq_mutex);
            }
1561
            is->video_current_pos= -1;
1562 1563
            SDL_UnlockMutex(is->pictq_mutex);

1564 1565
            is->last_dts_for_fault_detection=
            is->last_pts_for_fault_detection= INT64_MIN;
1566
            is->frame_last_pts= AV_NOPTS_VALUE;
1567
            is->frame_last_delay = 0;
1568
            is->frame_timer = (double)av_gettime() / 1000000.0;
1569 1570
            is->skip_frames= 1;
            is->skip_frames_index= 0;
1571
            return 0;
1572 1573
        }

1574 1575
        /* NOTE: ipts is the PTS of the _first_ picture beginning in
           this packet, if any */
1576
        is->video_st->codec->reordered_opaque= pkt->pts;
1577
        len1 = avcodec_decode_video2(is->video_st->codec,
Michael Niedermayer's avatar
Michael Niedermayer committed
1578
                                    frame, &got_picture,
1579
                                    pkt);
Michael Niedermayer's avatar
Michael Niedermayer committed
1580

1581
        if (got_picture) {
Stefano Sabatini's avatar
Stefano Sabatini committed
1582 1583 1584 1585 1586 1587 1588 1589
            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;
            }
1590
        }
1591 1592

        if(   (   decoder_reorder_pts==1
1593
               || (decoder_reorder_pts && is->faulty_pts<is->faulty_dts)
1594
               || pkt->dts == AV_NOPTS_VALUE)
1595
           && frame->reordered_opaque != AV_NOPTS_VALUE)
1596
            *pts= frame->reordered_opaque;
Michael Niedermayer's avatar
Michael Niedermayer committed
1597
        else if(pkt->dts != AV_NOPTS_VALUE)
1598
            *pts= pkt->dts;
Michael Niedermayer's avatar
Michael Niedermayer committed
1599
        else
1600 1601
            *pts= 0;

1602 1603
//            if (len1 < 0)
//                break;
1604 1605 1606 1607 1608 1609 1610 1611
    if (got_picture){
        is->skip_frames_index += 1;
        if(is->skip_frames_index >= is->skip_frames){
            is->skip_frames_index -= FFMAX(is->skip_frames, 1.0);
            return 1;
        }

    }
1612 1613 1614 1615 1616 1617 1618
    return 0;
}

#if CONFIG_AVFILTER
typedef struct {
    VideoState *is;
    AVFrame *frame;
1619
    int use_dr1;
1620 1621
} FilterPriv;

1622 1623 1624
static int input_get_buffer(AVCodecContext *codec, AVFrame *pic)
{
    AVFilterContext *ctx = codec->opaque;
1625
    AVFilterBufferRef  *ref;
1626
    int perms = AV_PERM_WRITE;
1627
    int i, w, h, stride[4];
1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646
    unsigned edge;

    if(pic->buffer_hints & FF_BUFFER_HINTS_VALID) {
        if(pic->buffer_hints & FF_BUFFER_HINTS_READABLE) perms |= AV_PERM_READ;
        if(pic->buffer_hints & FF_BUFFER_HINTS_PRESERVE) perms |= AV_PERM_PRESERVE;
        if(pic->buffer_hints & FF_BUFFER_HINTS_REUSABLE) perms |= AV_PERM_REUSE2;
    }
    if(pic->reference) perms |= AV_PERM_READ | AV_PERM_PRESERVE;

    w = codec->width;
    h = codec->height;
    avcodec_align_dimensions2(codec, &w, &h, stride);
    edge = codec->flags & CODEC_FLAG_EMU_EDGE ? 0 : avcodec_get_edge_width();
    w += edge << 1;
    h += edge << 1;

    if(!(ref = avfilter_get_video_buffer(ctx->outputs[0], perms, w, h)))
        return -1;

1647 1648
    ref->video->w = codec->width;
    ref->video->h = codec->height;
1649
    for(i = 0; i < 4; i ++) {
1650 1651
        unsigned hshift = (i == 1 || i == 2) ? av_pix_fmt_descriptors[ref->format].log2_chroma_w : 0;
        unsigned vshift = (i == 1 || i == 2) ? av_pix_fmt_descriptors[ref->format].log2_chroma_h : 0;
1652

1653
        if (ref->data[i]) {
1654
            ref->data[i]    += (edge >> hshift) + ((edge * ref->linesize[i]) >> vshift);
1655
        }
1656 1657 1658 1659 1660 1661
        pic->data[i]     = ref->data[i];
        pic->linesize[i] = ref->linesize[i];
    }
    pic->opaque = ref;
    pic->age    = INT_MAX;
    pic->type   = FF_BUFFER_TYPE_USER;
1662
    pic->reordered_opaque = codec->reordered_opaque;
1663 1664 1665 1666 1667 1668
    return 0;
}

static void input_release_buffer(AVCodecContext *codec, AVFrame *pic)
{
    memset(pic->data, 0, sizeof(pic->data));
1669
    avfilter_unref_buffer(pic->opaque);
1670 1671
}

1672 1673
static int input_reget_buffer(AVCodecContext *codec, AVFrame *pic)
{
1674
    AVFilterBufferRef *ref = pic->opaque;
1675 1676 1677 1678 1679 1680

    if (pic->data[0] == NULL) {
        pic->buffer_hints |= FF_BUFFER_HINTS_READABLE;
        return codec->get_buffer(codec, pic);
    }

1681
    if ((codec->width != ref->video->w) || (codec->height != ref->video->h) ||
1682
        (codec->pix_fmt != ref->format)) {
1683 1684 1685 1686 1687 1688 1689 1690
        av_log(codec, AV_LOG_ERROR, "Picture properties changed.\n");
        return -1;
    }

    pic->reordered_opaque = codec->reordered_opaque;
    return 0;
}

1691 1692 1693
static int input_init(AVFilterContext *ctx, const char *args, void *opaque)
{
    FilterPriv *priv = ctx->priv;
1694
    AVCodecContext *codec;
1695 1696 1697
    if(!opaque) return -1;

    priv->is = opaque;
1698 1699 1700 1701 1702 1703
    codec    = priv->is->video_st->codec;
    codec->opaque = ctx;
    if(codec->codec->capabilities & CODEC_CAP_DR1) {
        priv->use_dr1 = 1;
        codec->get_buffer     = input_get_buffer;
        codec->release_buffer = input_release_buffer;
1704
        codec->reget_buffer   = input_reget_buffer;
1705 1706
    }

1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720
    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;
1721
    AVFilterBufferRef *picref;
1722
    int64_t pts = 0;
1723 1724 1725 1726 1727 1728 1729 1730
    AVPacket pkt;
    int ret;

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

1731
    if(priv->use_dr1) {
1732
        picref = avfilter_ref_buffer(priv->frame->opaque, ~0);
1733
    } else {
Bobby Bingham's avatar
Bobby Bingham committed
1734
        picref = avfilter_get_video_buffer(link, AV_PERM_WRITE, link->w, link->h);
1735 1736 1737
        av_picture_data_copy(picref->data, picref->linesize,
                             priv->frame->data, priv->frame->linesize,
                             picref->format, link->w, link->h);
1738
    }
1739 1740 1741
    av_free_packet(&pkt);

    picref->pts = pts;
1742
    picref->pos = pkt.pos;
1743
    picref->video->pixel_aspect = priv->is->video_st->codec->sample_aspect_ratio;
1744
    avfilter_start_frame(link, picref);
1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785
    avfilter_draw_slice(link, 0, link->h, 1);
    avfilter_end_frame(link);

    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",
1786
                                    .type = AVMEDIA_TYPE_VIDEO,
1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804
                                    .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,
1805
                                    int64_t *pts, int64_t *pos)
1806
{
1807
    AVFilterBufferRef *pic;
1808 1809 1810

    if(avfilter_request_frame(ctx->inputs[0]))
        return -1;
1811
    if(!(pic = ctx->inputs[0]->cur_buf))
1812
        return -1;
1813
    ctx->inputs[0]->cur_buf = NULL;
1814 1815 1816

    frame->opaque = pic;
    *pts          = pic->pts;
1817
    *pos          = pic->pos;
1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831

    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",
1832
                                    .type          = AVMEDIA_TYPE_VIDEO,
1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843
                                    .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();
1844
    int64_t pts_int;
1845 1846 1847 1848
    double pts;
    int ret;

#if CONFIG_AVFILTER
1849
    int64_t pos;
Stefano Sabatini's avatar
Stefano Sabatini committed
1850
    char sws_flags_str[128];
1851 1852
    AVFilterContext *filt_src = NULL, *filt_out = NULL;
    AVFilterGraph *graph = av_mallocz(sizeof(AVFilterGraph));
Stefano Sabatini's avatar
Stefano Sabatini committed
1853 1854
    snprintf(sws_flags_str, sizeof(sws_flags_str), "flags=%d", sws_flags);
    graph->scale_sws_opts = av_strdup(sws_flags_str);
1855

1856 1857
    if (avfilter_open(&filt_src, &input_filter,  "src") < 0) goto the_end;
    if (avfilter_open(&filt_out, &output_filter, "out") < 0) goto the_end;
1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899

    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
1900
        ret = get_filtered_video_frame(filt_out, frame, &pts_int, &pos);
1901 1902 1903 1904 1905 1906 1907 1908 1909
#else
        ret = get_video_frame(is, frame, &pts_int, &pkt);
#endif

        if (ret < 0) goto the_end;

        if (!ret)
            continue;

1910
        pts = pts_int*av_q2d(is->video_st->time_base);
1911 1912

#if CONFIG_AVFILTER
1913
        ret = output_picture2(is, frame, pts, pos);
1914
#else
1915
        ret = output_picture2(is, frame, pts,  pkt.pos);
1916 1917 1918 1919 1920
        av_free_packet(&pkt);
#endif
        if (ret < 0)
            goto the_end;

1921
        if (step)
1922 1923
            if (cur_stream)
                stream_pause(cur_stream);
Fabrice Bellard's avatar
Fabrice Bellard committed
1924 1925
    }
 the_end:
1926 1927 1928 1929
#if CONFIG_AVFILTER
    avfilter_graph_destroy(graph);
    av_freep(&graph);
#endif
1930
    av_free(frame);
Fabrice Bellard's avatar
Fabrice Bellard committed
1931 1932 1933
    return 0;
}

1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949
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;
1950

1951 1952 1953 1954
        if(pkt->data == flush_pkt.data){
            avcodec_flush_buffers(is->subtitle_st->codec);
            continue;
        }
1955 1956 1957 1958 1959 1960
        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);
1961

1962 1963
        if (is->subtitleq.abort_request)
            goto the_end;
1964

1965 1966 1967 1968 1969 1970 1971 1972
        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;

1973
        len1 = avcodec_decode_subtitle2(is->subtitle_st->codec,
1974
                                    &sp->sub, &got_subtitle,
1975
                                    pkt);
1976 1977 1978 1979
//            if (len1 < 0)
//                break;
        if (got_subtitle && sp->sub.format == 0) {
            sp->pts = pts;
1980

1981 1982
            for (i = 0; i < sp->sub.num_rects; i++)
            {
1983
                for (j = 0; j < sp->sub.rects[i]->nb_colors; j++)
1984
                {
1985
                    RGBA_IN(r, g, b, a, (uint32_t*)sp->sub.rects[i]->pict.data[1] + j);
1986 1987 1988
                    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);
1989
                    YUVA_OUT((uint32_t*)sp->sub.rects[i]->pict.data[1] + j, y, u, v, a);
1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000
                }
            }

            /* 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);
2001
//        if (step)
2002 2003 2004 2005 2006 2007 2008
//            if (cur_stream)
//                stream_pause(cur_stream);
    }
 the_end:
    return 0;
}

Fabrice Bellard's avatar
Fabrice Bellard committed
2009 2010 2011 2012 2013
/* copy samples for viewing in editor window */
static void update_sample_display(VideoState *is, short *samples, int samples_size)
{
    int size, len, channels;

2014
    channels = is->audio_st->codec->channels;
Fabrice Bellard's avatar
Fabrice Bellard committed
2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031

    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) */
2032
static int synchronize_audio(VideoState *is, short *samples,
2033
                             int samples_size1, double pts)
Fabrice Bellard's avatar
Fabrice Bellard committed
2034
{
2035
    int n, samples_size;
Fabrice Bellard's avatar
Fabrice Bellard committed
2036
    double ref_clock;
2037

2038
    n = 2 * is->audio_st->codec->channels;
2039
    samples_size = samples_size1;
Fabrice Bellard's avatar
Fabrice Bellard committed
2040 2041 2042

    /* 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) ||
2043 2044
         is->av_sync_type == AV_SYNC_EXTERNAL_CLOCK)) {
        double diff, avg_diff;
Fabrice Bellard's avatar
Fabrice Bellard committed
2045
        int wanted_size, min_size, max_size, nb_samples;
2046

2047 2048
        ref_clock = get_master_clock(is);
        diff = get_audio_clock(is) - ref_clock;
2049

2050 2051 2052 2053 2054 2055 2056 2057 2058 2059
        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) {
2060
                    wanted_size = samples_size + ((int)(diff * is->audio_st->codec->sample_rate) * n);
2061
                    nb_samples = samples_size / n;
2062

2063 2064 2065 2066 2067 2068
                    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;
2069

2070 2071 2072 2073 2074 2075 2076
                    /* 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;
2077

2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090
                        /* 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
2091 2092
                printf("diff=%f adiff=%f sample_diff=%d apts=%0.3f vpts=%0.3f %f\n",
                       diff, avg_diff, samples_size - samples_size1,
2093 2094
                       is->audio_clock, is->video_clock, is->audio_diff_threshold);
#endif
Fabrice Bellard's avatar
Fabrice Bellard committed
2095
            }
2096 2097 2098 2099 2100
        } 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;
Fabrice Bellard's avatar
Fabrice Bellard committed
2101 2102 2103 2104 2105 2106 2107
        }
    }

    return samples_size;
}

/* decode one audio frame and returns its uncompressed size */
2108
static int audio_decode_frame(VideoState *is, double *pts_ptr)
Fabrice Bellard's avatar
Fabrice Bellard committed
2109
{
2110
    AVPacket *pkt_temp = &is->audio_pkt_temp;
Fabrice Bellard's avatar
Fabrice Bellard committed
2111
    AVPacket *pkt = &is->audio_pkt;
2112
    AVCodecContext *dec= is->audio_st->codec;
Fabrice Bellard's avatar
Fabrice Bellard committed
2113
    int n, len1, data_size;
Fabrice Bellard's avatar
Fabrice Bellard committed
2114 2115 2116
    double pts;

    for(;;) {
Fabrice Bellard's avatar
Fabrice Bellard committed
2117
        /* NOTE: the audio packet can contain several frames */
2118
        while (pkt_temp->size > 0) {
2119
            data_size = sizeof(is->audio_buf1);
2120
            len1 = avcodec_decode_audio3(dec,
2121
                                        (int16_t *)is->audio_buf1, &data_size,
2122
                                        pkt_temp);
Fabrice Bellard's avatar
Fabrice Bellard committed
2123 2124
            if (len1 < 0) {
                /* if error, we skip the frame */
2125
                pkt_temp->size = 0;
Fabrice Bellard's avatar
Fabrice Bellard committed
2126
                break;
Fabrice Bellard's avatar
Fabrice Bellard committed
2127
            }
2128

2129 2130
            pkt_temp->data += len1;
            pkt_temp->size -= len1;
Fabrice Bellard's avatar
Fabrice Bellard committed
2131 2132
            if (data_size <= 0)
                continue;
2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165

            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;
            }

Fabrice Bellard's avatar
Fabrice Bellard committed
2166 2167 2168
            /* if no pts, then compute it */
            pts = is->audio_clock;
            *pts_ptr = pts;
2169
            n = 2 * dec->channels;
2170
            is->audio_clock += (double)data_size /
2171
                (double)(n * dec->sample_rate);
2172
#if defined(DEBUG_SYNC)
Fabrice Bellard's avatar
Fabrice Bellard committed
2173 2174 2175 2176 2177 2178
            {
                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;
Fabrice Bellard's avatar
Fabrice Bellard committed
2179
            }
Fabrice Bellard's avatar
Fabrice Bellard committed
2180 2181
#endif
            return data_size;
Fabrice Bellard's avatar
Fabrice Bellard committed
2182 2183
        }

Fabrice Bellard's avatar
Fabrice Bellard committed
2184 2185
        /* free the current packet */
        if (pkt->data)
Fabrice Bellard's avatar
Fabrice Bellard committed
2186
            av_free_packet(pkt);
2187

Fabrice Bellard's avatar
Fabrice Bellard committed
2188 2189 2190
        if (is->paused || is->audioq.abort_request) {
            return -1;
        }
2191

Fabrice Bellard's avatar
Fabrice Bellard committed
2192 2193 2194
        /* read next packet */
        if (packet_queue_get(&is->audioq, pkt, 1) < 0)
            return -1;
2195
        if(pkt->data == flush_pkt.data){
2196
            avcodec_flush_buffers(dec);
2197 2198 2199
            continue;
        }

2200 2201
        pkt_temp->data = pkt->data;
        pkt_temp->size = pkt->size;
2202

Fabrice Bellard's avatar
Fabrice Bellard committed
2203 2204
        /* if update the audio clock with the pts */
        if (pkt->pts != AV_NOPTS_VALUE) {
2205
            is->audio_clock = av_q2d(is->audio_st->time_base)*pkt->pts;
Fabrice Bellard's avatar
Fabrice Bellard committed
2206
        }
Fabrice Bellard's avatar
Fabrice Bellard committed
2207 2208 2209
    }
}

2210 2211 2212
/* 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)
Fabrice Bellard's avatar
Fabrice Bellard committed
2213
{
2214
    return is->audio_buf_size - is->audio_buf_index;
Fabrice Bellard's avatar
Fabrice Bellard committed
2215 2216 2217 2218
}


/* prepare a new audio buffer */
2219
static void sdl_audio_callback(void *opaque, Uint8 *stream, int len)
Fabrice Bellard's avatar
Fabrice Bellard committed
2220 2221 2222 2223 2224 2225
{
    VideoState *is = opaque;
    int audio_size, len1;
    double pts;

    audio_callback_time = av_gettime();
2226

Fabrice Bellard's avatar
Fabrice Bellard committed
2227 2228
    while (len > 0) {
        if (is->audio_buf_index >= is->audio_buf_size) {
2229
           audio_size = audio_decode_frame(is, &pts);
Fabrice Bellard's avatar
Fabrice Bellard committed
2230 2231
           if (audio_size < 0) {
                /* if error, just output silence */
2232
               is->audio_buf = is->audio_buf1;
Fabrice Bellard's avatar
Fabrice Bellard committed
2233 2234 2235 2236 2237
               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);
2238
               audio_size = synchronize_audio(is, (int16_t *)is->audio_buf, audio_size,
Fabrice Bellard's avatar
Fabrice Bellard committed
2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257
                                              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;
2258
    AVCodecContext *avctx;
Fabrice Bellard's avatar
Fabrice Bellard committed
2259 2260 2261 2262 2263
    AVCodec *codec;
    SDL_AudioSpec wanted_spec, spec;

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

Fabrice Bellard's avatar
Fabrice Bellard committed
2266
    /* prepare audio output */
2267
    if (avctx->codec_type == AVMEDIA_TYPE_AUDIO) {
2268 2269
        if (avctx->channels > 0) {
            avctx->request_channels = FFMIN(2, avctx->channels);
2270
        } else {
2271
            avctx->request_channels = 2;
2272
        }
Fabrice Bellard's avatar
Fabrice Bellard committed
2273 2274
    }

2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290
    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);
2291

Fabrice Bellard's avatar
Fabrice Bellard committed
2292
    if (!codec ||
2293
        avcodec_open(avctx, codec) < 0)
Fabrice Bellard's avatar
Fabrice Bellard committed
2294
        return -1;
2295 2296

    /* prepare audio output */
2297
    if (avctx->codec_type == AVMEDIA_TYPE_AUDIO) {
2298
        wanted_spec.freq = avctx->sample_rate;
2299
        wanted_spec.format = AUDIO_S16SYS;
2300
        wanted_spec.channels = avctx->channels;
2301 2302 2303 2304 2305 2306 2307 2308 2309
        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;
2310
        is->audio_src_fmt= SAMPLE_FMT_S16;
2311 2312
    }

2313
    ic->streams[stream_index]->discard = AVDISCARD_DEFAULT;
2314
    switch(avctx->codec_type) {
2315
    case AVMEDIA_TYPE_AUDIO:
Fabrice Bellard's avatar
Fabrice Bellard committed
2316 2317 2318 2319
        is->audio_stream = stream_index;
        is->audio_st = ic->streams[stream_index];
        is->audio_buf_size = 0;
        is->audio_buf_index = 0;
2320 2321 2322 2323 2324 2325

        /* 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 */
2326
        is->audio_diff_threshold = 2.0 * SDL_AUDIO_BUFFER_SIZE / avctx->sample_rate;
2327

Fabrice Bellard's avatar
Fabrice Bellard committed
2328 2329
        memset(&is->audio_pkt, 0, sizeof(is->audio_pkt));
        packet_queue_init(&is->audioq);
2330
        SDL_PauseAudio(0);
Fabrice Bellard's avatar
Fabrice Bellard committed
2331
        break;
2332
    case AVMEDIA_TYPE_VIDEO:
Fabrice Bellard's avatar
Fabrice Bellard committed
2333 2334 2335
        is->video_stream = stream_index;
        is->video_st = ic->streams[stream_index];

2336
//        is->video_current_pts_time = av_gettime();
2337

Fabrice Bellard's avatar
Fabrice Bellard committed
2338 2339 2340
        packet_queue_init(&is->videoq);
        is->video_tid = SDL_CreateThread(video_thread, is);
        break;
2341
    case AVMEDIA_TYPE_SUBTITLE:
2342 2343 2344
        is->subtitle_stream = stream_index;
        is->subtitle_st = ic->streams[stream_index];
        packet_queue_init(&is->subtitleq);
2345

2346 2347
        is->subtitle_tid = SDL_CreateThread(subtitle_thread, is);
        break;
Fabrice Bellard's avatar
Fabrice Bellard committed
2348 2349 2350 2351 2352 2353 2354 2355 2356
    default:
        break;
    }
    return 0;
}

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

2359 2360
    if (stream_index < 0 || stream_index >= ic->nb_streams)
        return;
2361
    avctx = ic->streams[stream_index]->codec;
Fabrice Bellard's avatar
Fabrice Bellard committed
2362

2363
    switch(avctx->codec_type) {
2364
    case AVMEDIA_TYPE_AUDIO:
Fabrice Bellard's avatar
Fabrice Bellard committed
2365 2366 2367 2368 2369
        packet_queue_abort(&is->audioq);

        SDL_CloseAudio();

        packet_queue_end(&is->audioq);
2370 2371
        if (is->reformat_ctx)
            av_audio_convert_free(is->reformat_ctx);
2372
        is->reformat_ctx = NULL;
Fabrice Bellard's avatar
Fabrice Bellard committed
2373
        break;
2374
    case AVMEDIA_TYPE_VIDEO:
Fabrice Bellard's avatar
Fabrice Bellard committed
2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386
        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;
2387
    case AVMEDIA_TYPE_SUBTITLE:
2388
        packet_queue_abort(&is->subtitleq);
2389

2390 2391 2392 2393
        /* 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;
2394

2395 2396 2397 2398 2399 2400 2401
        SDL_CondSignal(is->subpq_cond);
        SDL_UnlockMutex(is->subpq_mutex);

        SDL_WaitThread(is->subtitle_tid, NULL);

        packet_queue_end(&is->subtitleq);
        break;
Fabrice Bellard's avatar
Fabrice Bellard committed
2402 2403 2404 2405
    default:
        break;
    }

2406
    ic->streams[stream_index]->discard = AVDISCARD_ALL;
2407 2408
    avcodec_close(avctx);
    switch(avctx->codec_type) {
2409
    case AVMEDIA_TYPE_AUDIO:
Fabrice Bellard's avatar
Fabrice Bellard committed
2410 2411 2412
        is->audio_st = NULL;
        is->audio_stream = -1;
        break;
2413
    case AVMEDIA_TYPE_VIDEO:
Fabrice Bellard's avatar
Fabrice Bellard committed
2414 2415 2416
        is->video_st = NULL;
        is->video_stream = -1;
        break;
2417
    case AVMEDIA_TYPE_SUBTITLE:
2418 2419 2420
        is->subtitle_st = NULL;
        is->subtitle_stream = -1;
        break;
Fabrice Bellard's avatar
Fabrice Bellard committed
2421 2422 2423 2424 2425
    default:
        break;
    }
}

2426 2427 2428 2429 2430 2431 2432 2433
/* 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);
}
Fabrice Bellard's avatar
Fabrice Bellard committed
2434 2435 2436 2437 2438 2439

/* this thread gets the stream from the disk or the network */
static int decode_thread(void *arg)
{
    VideoState *is = arg;
    AVFormatContext *ic;
2440
    int err, i, ret;
2441 2442 2443
    int st_index[AVMEDIA_TYPE_NB];
    int st_count[AVMEDIA_TYPE_NB]={0};
    int st_best_packet_count[AVMEDIA_TYPE_NB];
Fabrice Bellard's avatar
Fabrice Bellard committed
2444
    AVPacket pkt1, *pkt = &pkt1;
2445
    AVFormatParameters params, *ap = &params;
2446
    int eof=0;
2447
    int pkt_in_play_range = 0;
Fabrice Bellard's avatar
Fabrice Bellard committed
2448

2449 2450
    ic = avformat_alloc_context();

2451
    memset(st_index, -1, sizeof(st_index));
2452
    memset(st_best_packet_count, -1, sizeof(st_best_packet_count));
Fabrice Bellard's avatar
Fabrice Bellard committed
2453 2454
    is->video_stream = -1;
    is->audio_stream = -1;
2455
    is->subtitle_stream = -1;
Fabrice Bellard's avatar
Fabrice Bellard committed
2456

2457 2458 2459
    global_video_state = is;
    url_set_interrupt_cb(decode_interrupt_cb);

2460
    memset(ap, 0, sizeof(*ap));
2461

2462
    ap->prealloced_context = 1;
2463 2464
    ap->width = frame_width;
    ap->height= frame_height;
Michael Niedermayer's avatar
Michael Niedermayer committed
2465
    ap->time_base= (AVRational){1, 25};
2466
    ap->pix_fmt = frame_pix_fmt;
Michael Niedermayer's avatar
Michael Niedermayer committed
2467

2468 2469
    set_context_opts(ic, avformat_opts, AV_OPT_FLAG_DECODING_PARAM);

2470
    err = av_open_input_file(&ic, is->filename, is->iformat, 0, ap);
2471 2472 2473 2474 2475
    if (err < 0) {
        print_error(is->filename, err);
        ret = -1;
        goto fail;
    }
Fabrice Bellard's avatar
Fabrice Bellard committed
2476
    is->ic = ic;
2477 2478 2479 2480

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

2481 2482 2483 2484 2485 2486
    err = av_find_stream_info(ic);
    if (err < 0) {
        fprintf(stderr, "%s: could not find codec parameters\n", is->filename);
        ret = -1;
        goto fail;
    }
2487 2488
    if(ic->pb)
        ic->pb->eof_reached= 0; //FIXME hack, ffplay maybe should not use url_feof() to test for the end
Fabrice Bellard's avatar
Fabrice Bellard committed
2489

2490 2491 2492
    if(seek_by_bytes<0)
        seek_by_bytes= !!(ic->iformat->flags & AVFMT_TS_DISCONT);

Fabrice Bellard's avatar
Fabrice Bellard committed
2493 2494 2495 2496 2497 2498 2499 2500
    /* 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;
2501
        ret = avformat_seek_file(ic, -1, INT64_MIN, timestamp, INT64_MAX, 0);
Fabrice Bellard's avatar
Fabrice Bellard committed
2502
        if (ret < 0) {
2503
            fprintf(stderr, "%s: could not seek to position %0.3f\n",
Fabrice Bellard's avatar
Fabrice Bellard committed
2504 2505 2506 2507
                    is->filename, (double)timestamp / AV_TIME_BASE);
        }
    }

Fabrice Bellard's avatar
Fabrice Bellard committed
2508
    for(i = 0; i < ic->nb_streams; i++) {
2509 2510
        AVStream *st= ic->streams[i];
        AVCodecContext *avctx = st->codec;
2511
        ic->streams[i]->discard = AVDISCARD_ALL;
2512
        if(avctx->codec_type >= (unsigned)AVMEDIA_TYPE_NB)
2513
            continue;
2514 2515 2516
        if(st_count[avctx->codec_type]++ != wanted_stream[avctx->codec_type] && wanted_stream[avctx->codec_type] >= 0)
            continue;

2517 2518 2519 2520
        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;

2521
        switch(avctx->codec_type) {
2522
        case AVMEDIA_TYPE_AUDIO:
2523
            if (!audio_disable)
2524
                st_index[AVMEDIA_TYPE_AUDIO] = i;
Fabrice Bellard's avatar
Fabrice Bellard committed
2525
            break;
2526 2527
        case AVMEDIA_TYPE_VIDEO:
        case AVMEDIA_TYPE_SUBTITLE:
2528 2529
            if (!video_disable)
                st_index[avctx->codec_type] = i;
2530
            break;
Fabrice Bellard's avatar
Fabrice Bellard committed
2531 2532 2533 2534 2535 2536 2537 2538 2539
        default:
            break;
        }
    }
    if (show_status) {
        dump_format(ic, 0, is->filename, 0);
    }

    /* open the streams */
2540 2541
    if (st_index[AVMEDIA_TYPE_AUDIO] >= 0) {
        stream_component_open(is, st_index[AVMEDIA_TYPE_AUDIO]);
Fabrice Bellard's avatar
Fabrice Bellard committed
2542 2543
    }

Michael Niedermayer's avatar
Michael Niedermayer committed
2544
    ret=-1;
2545 2546
    if (st_index[AVMEDIA_TYPE_VIDEO] >= 0) {
        ret= stream_component_open(is, st_index[AVMEDIA_TYPE_VIDEO]);
Michael Niedermayer's avatar
Michael Niedermayer committed
2547
    }
2548
    is->refresh_tid = SDL_CreateThread(refresh_thread, is);
Michael Niedermayer's avatar
Michael Niedermayer committed
2549
    if(ret<0) {
Fabrice Bellard's avatar
Fabrice Bellard committed
2550
        if (!display_disable)
2551
            is->show_audio = 2;
Fabrice Bellard's avatar
Fabrice Bellard committed
2552 2553
    }

2554 2555
    if (st_index[AVMEDIA_TYPE_SUBTITLE] >= 0) {
        stream_component_open(is, st_index[AVMEDIA_TYPE_SUBTITLE]);
2556 2557
    }

Fabrice Bellard's avatar
Fabrice Bellard committed
2558
    if (is->video_stream < 0 && is->audio_stream < 0) {
2559 2560
        fprintf(stderr, "%s: could not open codecs\n", is->filename);
        ret = -1;
Fabrice Bellard's avatar
Fabrice Bellard committed
2561 2562 2563 2564 2565 2566
        goto fail;
    }

    for(;;) {
        if (is->abort_request)
            break;
2567 2568
        if (is->paused != is->last_paused) {
            is->last_paused = is->paused;
Fabrice Bellard's avatar
Fabrice Bellard committed
2569
            if (is->paused)
2570
                is->read_pause_return= av_read_pause(ic);
Fabrice Bellard's avatar
Fabrice Bellard committed
2571 2572
            else
                av_read_play(ic);
2573
        }
2574 2575
#if CONFIG_RTSP_DEMUXER
        if (is->paused && !strcmp(ic->iformat->name, "rtsp")) {
2576 2577 2578 2579 2580
            /* wait 10 ms to avoid trying to get another packet */
            /* XXX: horrible */
            SDL_Delay(10);
            continue;
        }
2581
#endif
Fabrice Bellard's avatar
Fabrice Bellard committed
2582
        if (is->seek_req) {
2583
            int64_t seek_target= is->seek_pos;
2584 2585 2586 2587
            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
2588

2589
            ret = avformat_seek_file(is->ic, -1, seek_min, seek_target, seek_max, is->seek_flags);
Fabrice Bellard's avatar
Fabrice Bellard committed
2590 2591
            if (ret < 0) {
                fprintf(stderr, "%s: error while seeking\n", is->ic->filename);
2592 2593 2594
            }else{
                if (is->audio_stream >= 0) {
                    packet_queue_flush(&is->audioq);
2595
                    packet_queue_put(&is->audioq, &flush_pkt);
2596
                }
2597 2598
                if (is->subtitle_stream >= 0) {
                    packet_queue_flush(&is->subtitleq);
2599
                    packet_queue_put(&is->subtitleq, &flush_pkt);
2600
                }
2601 2602
                if (is->video_stream >= 0) {
                    packet_queue_flush(&is->videoq);
2603
                    packet_queue_put(&is->videoq, &flush_pkt);
2604
                }
Fabrice Bellard's avatar
Fabrice Bellard committed
2605 2606
            }
            is->seek_req = 0;
2607
            eof= 0;
Fabrice Bellard's avatar
Fabrice Bellard committed
2608
        }
2609

Fabrice Bellard's avatar
Fabrice Bellard committed
2610
        /* if the queue are full, no need to read more */
2611 2612 2613 2614
        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))) {
Fabrice Bellard's avatar
Fabrice Bellard committed
2615 2616 2617 2618
            /* wait 10 ms */
            SDL_Delay(10);
            continue;
        }
2619
        if(url_feof(ic->pb) || eof) {
2620
            if(is->video_stream >= 0){
Michael Niedermayer's avatar
Michael Niedermayer committed
2621 2622 2623 2624 2625
                av_init_packet(pkt);
                pkt->data=NULL;
                pkt->size=0;
                pkt->stream_index= is->video_stream;
                packet_queue_put(&is->videoq, pkt);
2626
            }
2627
            SDL_Delay(10);
2628 2629 2630 2631 2632 2633 2634
            if(is->audioq.size + is->videoq.size + is->subtitleq.size ==0){
                if(loop!=1 && (!loop || --loop)){
                    stream_seek(cur_stream, start_time != AV_NOPTS_VALUE ? start_time : 0, 0, 0);
                }else if(autoexit){
                    ret=AVERROR_EOF;
                    goto fail;
                }
Michael Niedermayer's avatar
Michael Niedermayer committed
2635
            }
2636 2637
            continue;
        }
Fabrice Bellard's avatar
Fabrice Bellard committed
2638
        ret = av_read_frame(ic, pkt);
Fabrice Bellard's avatar
Fabrice Bellard committed
2639
        if (ret < 0) {
2640 2641 2642
            if (ret == AVERROR_EOF)
                eof=1;
            if (url_ferror(ic->pb))
2643
                break;
2644 2645
            SDL_Delay(100); /* wait for user event */
            continue;
Fabrice Bellard's avatar
Fabrice Bellard committed
2646
        }
2647 2648 2649 2650 2651 2652 2653
        /* check if packet is in play range specified by user, then queue, otherwise discard */
        pkt_in_play_range = duration == AV_NOPTS_VALUE ||
                (pkt->pts - ic->streams[pkt->stream_index]->start_time) *
                av_q2d(ic->streams[pkt->stream_index]->time_base) -
                (double)(start_time != AV_NOPTS_VALUE ? start_time : 0)/1000000
                <= ((double)duration/1000000);
        if (pkt->stream_index == is->audio_stream && pkt_in_play_range) {
Fabrice Bellard's avatar
Fabrice Bellard committed
2654
            packet_queue_put(&is->audioq, pkt);
2655
        } else if (pkt->stream_index == is->video_stream && pkt_in_play_range) {
Fabrice Bellard's avatar
Fabrice Bellard committed
2656
            packet_queue_put(&is->videoq, pkt);
2657
        } else if (pkt->stream_index == is->subtitle_stream && pkt_in_play_range) {
2658
            packet_queue_put(&is->subtitleq, pkt);
Fabrice Bellard's avatar
Fabrice Bellard committed
2659 2660 2661 2662 2663 2664 2665 2666 2667
        } else {
            av_free_packet(pkt);
        }
    }
    /* wait until the end */
    while (!is->abort_request) {
        SDL_Delay(100);
    }

2668
    ret = 0;
Fabrice Bellard's avatar
Fabrice Bellard committed
2669
 fail:
2670 2671 2672
    /* disable interrupting */
    global_video_state = NULL;

Fabrice Bellard's avatar
Fabrice Bellard committed
2673 2674 2675 2676 2677
    /* 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);
2678 2679
    if (is->subtitle_stream >= 0)
        stream_component_close(is, is->subtitle_stream);
2680 2681 2682 2683
    if (is->ic) {
        av_close_input_file(is->ic);
        is->ic = NULL; /* safety */
    }
2684 2685
    url_set_interrupt_cb(NULL);

2686 2687
    if (ret != 0) {
        SDL_Event event;
2688

2689 2690 2691 2692
        event.type = FF_QUIT_EVENT;
        event.user.data1 = is;
        SDL_PushEvent(&event);
    }
Fabrice Bellard's avatar
Fabrice Bellard committed
2693 2694 2695
    return 0;
}

2696
static VideoState *stream_open(const char *filename, AVInputFormat *iformat)
Fabrice Bellard's avatar
Fabrice Bellard committed
2697 2698 2699 2700 2701 2702
{
    VideoState *is;

    is = av_mallocz(sizeof(VideoState));
    if (!is)
        return NULL;
2703
    av_strlcpy(is->filename, filename, sizeof(is->filename));
2704
    is->iformat = iformat;
Fabrice Bellard's avatar
Fabrice Bellard committed
2705 2706 2707 2708 2709 2710
    is->ytop = 0;
    is->xleft = 0;

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

2712 2713
    is->subpq_mutex = SDL_CreateMutex();
    is->subpq_cond = SDL_CreateCond();
2714

2715
    is->av_sync_type = av_sync_type;
Fabrice Bellard's avatar
Fabrice Bellard committed
2716 2717 2718 2719 2720 2721 2722 2723
    is->parse_tid = SDL_CreateThread(decode_thread, is);
    if (!is->parse_tid) {
        av_free(is);
        return NULL;
    }
    return is;
}

2724
static void stream_cycle_channel(VideoState *is, int codec_type)
2725 2726 2727 2728 2729
{
    AVFormatContext *ic = is->ic;
    int start_index, stream_index;
    AVStream *st;

2730
    if (codec_type == AVMEDIA_TYPE_VIDEO)
2731
        start_index = is->video_stream;
2732
    else if (codec_type == AVMEDIA_TYPE_AUDIO)
2733
        start_index = is->audio_stream;
2734 2735
    else
        start_index = is->subtitle_stream;
2736
    if (start_index < (codec_type == AVMEDIA_TYPE_SUBTITLE ? -1 : 0))
2737 2738 2739 2740
        return;
    stream_index = start_index;
    for(;;) {
        if (++stream_index >= is->ic->nb_streams)
2741
        {
2742
            if (codec_type == AVMEDIA_TYPE_SUBTITLE)
2743 2744 2745 2746 2747 2748
            {
                stream_index = -1;
                goto the_end;
            } else
                stream_index = 0;
        }
2749 2750 2751
        if (stream_index == start_index)
            return;
        st = ic->streams[stream_index];
2752
        if (st->codec->codec_type == codec_type) {
2753 2754
            /* check that parameters are OK */
            switch(codec_type) {
2755
            case AVMEDIA_TYPE_AUDIO:
2756 2757
                if (st->codec->sample_rate != 0 &&
                    st->codec->channels != 0)
2758 2759
                    goto the_end;
                break;
2760 2761
            case AVMEDIA_TYPE_VIDEO:
            case AVMEDIA_TYPE_SUBTITLE:
2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773
                goto the_end;
            default:
                break;
            }
        }
    }
 the_end:
    stream_component_close(is, start_index);
    stream_component_open(is, stream_index);
}


2774
static void toggle_full_screen(void)
Fabrice Bellard's avatar
Fabrice Bellard committed
2775 2776
{
    is_full_screen = !is_full_screen;
2777 2778
    if (!fs_screen_width) {
        /* use default SDL method */
2779
//        SDL_WM_ToggleFullScreen(screen);
Fabrice Bellard's avatar
Fabrice Bellard committed
2780
    }
2781
    video_open(cur_stream);
Fabrice Bellard's avatar
Fabrice Bellard committed
2782 2783
}

2784
static void toggle_pause(void)
Fabrice Bellard's avatar
Fabrice Bellard committed
2785 2786 2787
{
    if (cur_stream)
        stream_pause(cur_stream);
2788 2789 2790
    step = 0;
}

2791
static void step_to_next_frame(void)
2792 2793
{
    if (cur_stream) {
2794
        /* if the stream is paused unpause it, then step */
2795
        if (cur_stream->paused)
2796
            stream_pause(cur_stream);
2797 2798
    }
    step = 1;
Fabrice Bellard's avatar
Fabrice Bellard committed
2799 2800
}

2801
static void toggle_audio_display(void)
Fabrice Bellard's avatar
Fabrice Bellard committed
2802 2803
{
    if (cur_stream) {
2804
        int bgcolor = SDL_MapRGB(screen->format, 0x00, 0x00, 0x00);
2805
        cur_stream->show_audio = (cur_stream->show_audio + 1) % 3;
2806 2807 2808 2809
        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);
Fabrice Bellard's avatar
Fabrice Bellard committed
2810 2811 2812 2813
    }
}

/* handle an event sent by the GUI */
2814
static void event_loop(void)
Fabrice Bellard's avatar
Fabrice Bellard committed
2815 2816
{
    SDL_Event event;
2817
    double incr, pos, frac;
Fabrice Bellard's avatar
Fabrice Bellard committed
2818 2819

    for(;;) {
Michael Niedermayer's avatar
Michael Niedermayer committed
2820
        double x;
Fabrice Bellard's avatar
Fabrice Bellard committed
2821 2822 2823
        SDL_WaitEvent(&event);
        switch(event.type) {
        case SDL_KEYDOWN:
2824 2825 2826 2827
            if (exit_on_keydown) {
                do_exit();
                break;
            }
Fabrice Bellard's avatar
Fabrice Bellard committed
2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839
            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;
2840 2841 2842
            case SDLK_s: //S: Step to next frame
                step_to_next_frame();
                break;
Fabrice Bellard's avatar
Fabrice Bellard committed
2843
            case SDLK_a:
2844
                if (cur_stream)
2845
                    stream_cycle_channel(cur_stream, AVMEDIA_TYPE_AUDIO);
2846 2847
                break;
            case SDLK_v:
2848
                if (cur_stream)
2849
                    stream_cycle_channel(cur_stream, AVMEDIA_TYPE_VIDEO);
2850
                break;
2851
            case SDLK_t:
2852
                if (cur_stream)
2853
                    stream_cycle_channel(cur_stream, AVMEDIA_TYPE_SUBTITLE);
2854
                break;
2855
            case SDLK_w:
Fabrice Bellard's avatar
Fabrice Bellard committed
2856 2857
                toggle_audio_display();
                break;
Fabrice Bellard's avatar
Fabrice Bellard committed
2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870
            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) {
2871
                    if (seek_by_bytes) {
2872 2873 2874 2875 2876 2877
                        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);
2878
                        if (cur_stream->ic->bit_rate)
2879
                            incr *= cur_stream->ic->bit_rate / 8.0;
2880 2881 2882
                        else
                            incr *= 180000.0;
                        pos += incr;
2883
                        stream_seek(cur_stream, pos, incr, 1);
2884 2885 2886
                    } else {
                        pos = get_master_clock(cur_stream);
                        pos += incr;
2887
                        stream_seek(cur_stream, (int64_t)(pos * AV_TIME_BASE), (int64_t)(incr * AV_TIME_BASE), 0);
2888
                    }
Fabrice Bellard's avatar
Fabrice Bellard committed
2889 2890
                }
                break;
Fabrice Bellard's avatar
Fabrice Bellard committed
2891 2892 2893 2894
            default:
                break;
            }
            break;
2895
        case SDL_MOUSEBUTTONDOWN:
2896 2897 2898 2899
            if (exit_on_mousedown) {
                do_exit();
                break;
            }
Michael Niedermayer's avatar
Michael Niedermayer committed
2900 2901 2902 2903 2904 2905 2906 2907
        case SDL_MOUSEMOTION:
            if(event.type ==SDL_MOUSEBUTTONDOWN){
                x= event.button.x;
            }else{
                if(event.motion.state != SDL_PRESSED)
                    break;
                x= event.motion.x;
            }
2908
            if (cur_stream) {
2909 2910
                if(seek_by_bytes || cur_stream->ic->duration<=0){
                    uint64_t size=  url_fsize(cur_stream->ic->pb);
Michael Niedermayer's avatar
Michael Niedermayer committed
2911
                    stream_seek(cur_stream, size*x/cur_stream->width, 0, 1);
2912
                }else{
Michael Niedermayer's avatar
Michael Niedermayer committed
2913 2914 2915 2916 2917 2918 2919
                    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);
Michael Niedermayer's avatar
Michael Niedermayer committed
2920
                    frac = x/cur_stream->width;
Michael Niedermayer's avatar
Michael Niedermayer committed
2921 2922 2923 2924 2925 2926 2927 2928 2929 2930
                    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);
2931
                }
2932 2933
            }
            break;
Fabrice Bellard's avatar
Fabrice Bellard committed
2934 2935
        case SDL_VIDEORESIZE:
            if (cur_stream) {
2936
                screen = SDL_SetVideoMode(event.resize.w, event.resize.h, 0,
Fabrice Bellard's avatar
Fabrice Bellard committed
2937
                                          SDL_HWSURFACE|SDL_RESIZABLE|SDL_ASYNCBLIT|SDL_HWACCEL);
2938 2939
                screen_width = cur_stream->width = event.resize.w;
                screen_height= cur_stream->height= event.resize.h;
Fabrice Bellard's avatar
Fabrice Bellard committed
2940 2941 2942
            }
            break;
        case SDL_QUIT:
2943
        case FF_QUIT_EVENT:
Fabrice Bellard's avatar
Fabrice Bellard committed
2944 2945 2946
            do_exit();
            break;
        case FF_ALLOC_EVENT:
2947
            video_open(event.user.data1);
Fabrice Bellard's avatar
Fabrice Bellard committed
2948 2949 2950 2951
            alloc_picture(event.user.data1);
            break;
        case FF_REFRESH_EVENT:
            video_refresh_timer(event.user.data1);
2952
            cur_stream->refresh=0;
Fabrice Bellard's avatar
Fabrice Bellard committed
2953 2954 2955 2956 2957 2958 2959
            break;
        default:
            break;
        }
    }
}

2960 2961
static void opt_frame_size(const char *arg)
{
2962
    if (av_parse_video_size(&frame_width, &frame_height, arg) < 0) {
2963 2964 2965 2966 2967 2968 2969 2970 2971
        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);
    }
}

2972
static int opt_width(const char *opt, const char *arg)
Fabrice Bellard's avatar
Fabrice Bellard committed
2973
{
2974 2975
    screen_width = parse_number_or_die(opt, arg, OPT_INT64, 1, INT_MAX);
    return 0;
Fabrice Bellard's avatar
Fabrice Bellard committed
2976 2977
}

2978
static int opt_height(const char *opt, const char *arg)
Fabrice Bellard's avatar
Fabrice Bellard committed
2979
{
2980 2981
    screen_height = parse_number_or_die(opt, arg, OPT_INT64, 1, INT_MAX);
    return 0;
Fabrice Bellard's avatar
Fabrice Bellard committed
2982 2983 2984 2985 2986 2987 2988 2989 2990 2991
}

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);
    }
}
2992

2993 2994
static void opt_frame_pix_fmt(const char *arg)
{
2995
    frame_pix_fmt = av_get_pix_fmt(arg);
2996 2997
}

2998
static int opt_sync(const char *opt, const char *arg)
2999 3000 3001 3002 3003 3004 3005
{
    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;
3006
    else {
3007
        fprintf(stderr, "Unknown value for %s: %s\n", opt, arg);
3008 3009
        exit(1);
    }
3010
    return 0;
3011 3012
}

3013
static int opt_seek(const char *opt, const char *arg)
Fabrice Bellard's avatar
Fabrice Bellard committed
3014
{
3015 3016
    start_time = parse_time_or_die(opt, arg, 1);
    return 0;
Fabrice Bellard's avatar
Fabrice Bellard committed
3017 3018
}

3019 3020 3021 3022 3023 3024
static int opt_duration(const char *opt, const char *arg)
{
    duration = parse_time_or_die(opt, arg, 1);
    return 0;
}

3025
static int opt_debug(const char *opt, const char *arg)
3026
{
3027
    av_log_set_level(99);
3028 3029
    debug = parse_number_or_die(opt, arg, OPT_INT64, 0, INT_MAX);
    return 0;
3030
}
3031

3032
static int opt_vismv(const char *opt, const char *arg)
3033
{
3034 3035
    debug_mv = parse_number_or_die(opt, arg, OPT_INT64, INT_MIN, INT_MAX);
    return 0;
3036
}
3037

3038
static int opt_thread_count(const char *opt, const char *arg)
3039
{
3040
    thread_count= parse_number_or_die(opt, arg, OPT_INT64, 0, INT_MAX);
3041
#if !HAVE_THREADS
3042 3043
    fprintf(stderr, "Warning: not compiled with thread support, using thread emulation\n");
#endif
3044
    return 0;
3045
}
3046

3047
static const OptionDef options[] = {
3048
#include "cmdutils_common_opts.h"
3049 3050
    { "x", HAS_ARG | OPT_FUNC2, {(void*)opt_width}, "force displayed width", "width" },
    { "y", HAS_ARG | OPT_FUNC2, {(void*)opt_height}, "force displayed height", "height" },
3051
    { "s", HAS_ARG | OPT_VIDEO, {(void*)opt_frame_size}, "set frame size (WxH or abbreviation)", "size" },
3052
    { "fs", OPT_BOOL, {(void*)&is_full_screen}, "force full screen" },
Fabrice Bellard's avatar
Fabrice Bellard committed
3053 3054
    { "an", OPT_BOOL, {(void*)&audio_disable}, "disable audio" },
    { "vn", OPT_BOOL, {(void*)&video_disable}, "disable video" },
3055 3056 3057
    { "ast", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&wanted_stream[AVMEDIA_TYPE_AUDIO]}, "select desired audio stream", "stream_number" },
    { "vst", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&wanted_stream[AVMEDIA_TYPE_VIDEO]}, "select desired video stream", "stream_number" },
    { "sst", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&wanted_stream[AVMEDIA_TYPE_SUBTITLE]}, "select desired subtitle stream", "stream_number" },
3058
    { "ss", HAS_ARG | OPT_FUNC2, {(void*)&opt_seek}, "seek to a given position in seconds", "pos" },
3059
    { "t", HAS_ARG | OPT_FUNC2, {(void*)&opt_duration}, "play  \"duration\" seconds of audio/video", "duration" },
3060
    { "bytes", OPT_INT | HAS_ARG, {(void*)&seek_by_bytes}, "seek by bytes 0=off 1=on -1=auto", "val" },
Fabrice Bellard's avatar
Fabrice Bellard committed
3061 3062
    { "nodisp", OPT_BOOL, {(void*)&display_disable}, "disable graphical display" },
    { "f", HAS_ARG, {(void*)opt_format}, "force format", "fmt" },
3063
    { "pix_fmt", HAS_ARG | OPT_EXPERT | OPT_VIDEO, {(void*)opt_frame_pix_fmt}, "set pixel format", "format" },
3064
    { "stats", OPT_BOOL | OPT_EXPERT, {(void*)&show_status}, "show status", "" },
3065
    { "debug", HAS_ARG | OPT_FUNC2 | OPT_EXPERT, {(void*)opt_debug}, "print specific debug info", "" },
Michael Niedermayer's avatar
Michael Niedermayer committed
3066
    { "bug", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&workaround_bugs}, "workaround bugs", "" },
3067
    { "vismv", HAS_ARG | OPT_FUNC2 | OPT_EXPERT, {(void*)opt_vismv}, "visualize motion vectors", "" },
3068
    { "fast", OPT_BOOL | OPT_EXPERT, {(void*)&fast}, "non spec compliant optimizations", "" },
3069
    { "genpts", OPT_BOOL | OPT_EXPERT, {(void*)&genpts}, "generate pts", "" },
3070
    { "drp", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&decoder_reorder_pts}, "let decoder reorder pts 0=off 1=on -1=auto", ""},
3071
    { "lowres", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&lowres}, "", "" },
Michael Niedermayer's avatar
Michael Niedermayer committed
3072 3073 3074
    { "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}, "", "" },
3075
    { "idct", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&idct}, "set idct algo",  "algo" },
3076
    { "er", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&error_recognition}, "set error detection threshold (0-4)",  "threshold" },
3077
    { "ec", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&error_concealment}, "set error concealment options",  "bit_mask" },
3078
    { "sync", HAS_ARG | OPT_FUNC2 | OPT_EXPERT, {(void*)opt_sync}, "set audio-video sync. type (type=audio/video/ext)", "type" },
3079
    { "threads", HAS_ARG | OPT_FUNC2 | OPT_EXPERT, {(void*)opt_thread_count}, "thread count", "count" },
Michael Niedermayer's avatar
Michael Niedermayer committed
3080
    { "autoexit", OPT_BOOL | OPT_EXPERT, {(void*)&autoexit}, "exit at the end", "" },
3081 3082
    { "exitonkeydown", OPT_BOOL | OPT_EXPERT, {(void*)&exit_on_keydown}, "exit on key down", "" },
    { "exitonmousedown", OPT_BOOL | OPT_EXPERT, {(void*)&exit_on_mousedown}, "exit on mouse down", "" },
3083
    { "loop", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&loop}, "set number of times the playback shall be looped", "loop count" },
3084
    { "framedrop", OPT_BOOL | OPT_EXPERT, {(void*)&framedrop}, "drop frames when cpu is too slow", "" },
3085
    { "window_title", OPT_STRING | HAS_ARG, {(void*)&window_title}, "set window title", "window title" },
3086
#if CONFIG_AVFILTER
3087
    { "vf", OPT_STRING | HAS_ARG, {(void*)&vfilters}, "video filters", "filter list" },
3088
#endif
3089
    { "rdftspeed", OPT_INT | HAS_ARG| OPT_AUDIO | OPT_EXPERT, {(void*)&rdftspeed}, "rdft speed", "msecs" },
3090
    { "default", OPT_FUNC2 | HAS_ARG | OPT_AUDIO | OPT_VIDEO | OPT_EXPERT, {(void*)opt_default}, "generic catch all option", "" },
Fabrice Bellard's avatar
Fabrice Bellard committed
3091 3092 3093
    { NULL, },
};

3094
static void show_usage(void)
Fabrice Bellard's avatar
Fabrice Bellard committed
3095
{
3096 3097
    printf("Simple media player\n");
    printf("usage: ffplay [options] input_file\n");
Fabrice Bellard's avatar
Fabrice Bellard committed
3098
    printf("\n");
3099 3100 3101 3102 3103
}

static void show_help(void)
{
    show_usage();
3104 3105 3106 3107
    show_help_options(options, "Main options:\n",
                      OPT_EXPERT, 0);
    show_help_options(options, "\nAdvanced options:\n",
                      OPT_EXPERT, OPT_EXPERT);
Fabrice Bellard's avatar
Fabrice Bellard committed
3108 3109 3110 3111
    printf("\nWhile playing:\n"
           "q, ESC              quit\n"
           "f                   toggle full screen\n"
           "p, SPC              pause\n"
3112 3113
           "a                   cycle audio channel\n"
           "v                   cycle video channel\n"
3114
           "t                   cycle subtitle channel\n"
3115
           "w                   show audio waves\n"
3116
           "s                   activate frame-step mode\n"
Fabrice Bellard's avatar
Fabrice Bellard committed
3117 3118
           "left/right          seek backward/forward 10 seconds\n"
           "down/up             seek backward/forward 1 minute\n"
3119
           "mouse click         seek to percentage in file corresponding to fraction of width\n"
Fabrice Bellard's avatar
Fabrice Bellard committed
3120 3121 3122
           );
}

3123
static void opt_input_file(const char *filename)
Fabrice Bellard's avatar
Fabrice Bellard committed
3124
{
3125 3126 3127 3128 3129
    if (input_filename) {
        fprintf(stderr, "Argument '%s' provided as input filename, but '%s' was already specified.\n",
                filename, input_filename);
        exit(1);
    }
3130
    if (!strcmp(filename, "-"))
3131
        filename = "pipe:";
Fabrice Bellard's avatar
Fabrice Bellard committed
3132 3133 3134 3135 3136 3137
    input_filename = filename;
}

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

Fabrice Bellard's avatar
Fabrice Bellard committed
3140
    /* register all codecs, demux and protocols */
Luca Abeni's avatar
Luca Abeni committed
3141
    avcodec_register_all();
3142
#if CONFIG_AVDEVICE
Luca Abeni's avatar
Luca Abeni committed
3143
    avdevice_register_all();
3144
#endif
3145 3146 3147
#if CONFIG_AVFILTER
    avfilter_register_all();
#endif
Fabrice Bellard's avatar
Fabrice Bellard committed
3148 3149
    av_register_all();

3150
    for(i=0; i<AVMEDIA_TYPE_NB; i++){
3151
        avcodec_opts[i]= avcodec_alloc_context2(i);
3152
    }
3153
    avformat_opts = avformat_alloc_context();
3154
#if !CONFIG_AVFILTER
3155
    sws_opts = sws_getContext(16,16,0, 16,16,0, sws_flags, NULL,NULL,NULL);
3156
#endif
3157

3158
    show_banner();
3159

3160
    parse_options(argc, argv, options, opt_input_file);
Fabrice Bellard's avatar
Fabrice Bellard committed
3161

3162
    if (!input_filename) {
3163
        show_usage();
3164
        fprintf(stderr, "An input file must be specified\n");
3165
        fprintf(stderr, "Use -h to get full help or, even better, run 'man ffplay'\n");
3166 3167
        exit(1);
    }
Fabrice Bellard's avatar
Fabrice Bellard committed
3168 3169 3170 3171

    if (display_disable) {
        video_disable = 1;
    }
3172
    flags = SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_TIMER;
3173 3174
#if !defined(__MINGW32__) && !defined(__APPLE__)
    flags |= SDL_INIT_EVENTTHREAD; /* Not supported on Windows or Mac OS X */
3175
#endif
Fabrice Bellard's avatar
Fabrice Bellard committed
3176
    if (SDL_Init (flags)) {
3177
        fprintf(stderr, "Could not initialize SDL - %s\n", SDL_GetError());
Fabrice Bellard's avatar
Fabrice Bellard committed
3178 3179 3180 3181
        exit(1);
    }

    if (!display_disable) {
3182
#if HAVE_SDL_VIDEO_SIZE
3183 3184 3185
        const SDL_VideoInfo *vi = SDL_GetVideoInfo();
        fs_screen_width = vi->current_w;
        fs_screen_height = vi->current_h;
3186
#endif
Fabrice Bellard's avatar
Fabrice Bellard committed
3187 3188 3189 3190 3191 3192
    }

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

3193 3194 3195
    av_init_packet(&flush_pkt);
    flush_pkt.data= "FLUSH";

3196
    cur_stream = stream_open(input_filename, file_iformat);
Fabrice Bellard's avatar
Fabrice Bellard committed
3197 3198 3199 3200 3201 3202 3203

    event_loop();

    /* never returns */

    return 0;
}