diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-04-29 04:31:28 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-04-29 04:31:28 +0200 |
commit | a3ffe0eb761d7a98b8c1e0e4b962da4012a46729 (patch) | |
tree | d7f72965af32e85d223538cb9048bcdf925ad997 | |
parent | 455ce979d0793096662d139e996107a527617832 (diff) | |
download | ffmpeg-a3ffe0eb761d7a98b8c1e0e4b962da4012a46729.tar.gz |
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.
-rw-r--r-- | libavformat/aviobuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c index 4ebe759468..9c17e8c6e6 100644 --- a/libavformat/aviobuf.c +++ b/libavformat/aviobuf.c @@ -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) { |