Revert "Fix url_fopen() flag values."

No longer needed after martins change to the values.
Though this would have been nicer ABI wise but iam too lazy to maintain this difference

This reverts commit 183401b92419febf2c6aeaa2dfecdd16ad99bff8.
This commit is contained in:
Michael Niedermayer 2011-04-29 04:31:28 +02:00
parent 455ce979d0
commit a3ffe0eb76

View File

@ -374,7 +374,7 @@ void put_nbyte(AVIOContext *s, int b, int count)
int url_fopen(AVIOContext **s, const char *filename, int flags)
{
return avio_open(s, filename, flags+1);
return avio_open(s, filename, flags);
}
int url_fclose(AVIOContext *s)
{