Commit a3ffe0eb authored by Michael Niedermayer's avatar Michael Niedermayer

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 183401b9.
parent 455ce979
......@@ -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)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment