~ubuntu-branches/ubuntu/lucid/ffmpeg/lucid-updates

« back to all changes in this revision

Viewing changes to ffplay.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-02-05 21:45:05 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20090205214505-fvn0jkiv3lrkaaq4
Tags: 3:0.svn20090204-2ubuntu1+unstripped1
rebuild using a clean, uncrippled ffmpeg tarball

Show diffs side-by-side

added added

removed removed

Lines of Context:
533
533
            a1 = a;
534
534
            lum[0] = ALPHA_BLEND(a, lum[0], y, 0);
535
535
 
536
 
            YUVA_IN(y, u, v, a, p, pal);
 
536
            YUVA_IN(y, u, v, a, p + BPP, pal);
537
537
            u1 += u;
538
538
            v1 += v;
539
539
            a1 += a;
547
547
            a1 += a;
548
548
            lum[0] = ALPHA_BLEND(a, lum[0], y, 0);
549
549
 
550
 
            YUVA_IN(y, u, v, a, p, pal);
 
550
            YUVA_IN(y, u, v, a, p + BPP, pal);
551
551
            u1 += u;
552
552
            v1 += v;
553
553
            a1 += a;
2019
2019
            else
2020
2020
                av_read_play(ic);
2021
2021
        }
2022
 
#if CONFIG_RTSP_DEMUXER || CONFIG_MMSH_PROTOCOL
2023
 
        if (is->paused &&
2024
 
                (!strcmp(ic->iformat->name, "rtsp") ||
2025
 
                 (ic->pb && !strcmp(url_fileno(ic->pb)->prot->name, "mmsh")))) {
 
2022
#if CONFIG_RTSP_DEMUXER
 
2023
        if (is->paused && !strcmp(ic->iformat->name, "rtsp")) {
2026
2024
            /* wait 10 ms to avoid trying to get another packet */
2027
2025
            /* XXX: horrible */
2028
2026
            SDL_Delay(10);