Changeset 4734fb0 in ffmpeg


Ignore:
Timestamp:
Dec 18, 2011, 2:57:11 AM (13 years ago)
Author:
Michael Niedermayer <michaelni@gmx.at>
Branches:
master
Children:
6d7b5011
Parents:
549749c6
git-author:
Michael Niedermayer <michaelni@gmx.at> (12/18/11 02:53:50)
git-committer:
Michael Niedermayer <michaelni@gmx.at> (12/18/11 02:57:11)
Message:

sbgdec: Replace ELOOP by -1 to fix compilation on win32.
This should be replaced by a more appropriate error code of course but
we should not leave compilation broken until that is decided.

Found-by: jb
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libavformat/sbgdec.c

    r549749c6 r4734fb0  
    949949        av_log(log, 16, "Recursion loop on \"%.*s\"\n",
    950950               tseq->name_len, tseq->name);
    951         return AVERROR(ELOOP);
     951        return -1;
    952952    }
    953953    t0 += tseq->ts.t;
Note: See TracChangeset for help on using the changeset viewer.