- 17 Feb, 2014 1 commit
-
-
Diego Biurrun authored
-
- 16 Feb, 2014 1 commit
-
-
Alexander Strasser authored
Make it possible to find out what protocol will be chosen for a given URL. Signed-off-by: Alexander Strasser <eclipse7@gmx.net>
-
- 19 Oct, 2013 1 commit
-
-
Michael Niedermayer authored
Define positive return values as non errors and leave further meaning undefined This allows future extensions to use these values Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 08 Apr, 2013 2 commits
-
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 14 Mar, 2013 1 commit
-
-
Clément Bœsch authored
-
- 10 Oct, 2012 1 commit
-
-
Luca Barbato authored
-
- 27 Sep, 2012 1 commit
-
-
Dale Curtis authored
Anonymous typedef structs prevent forward declaration, this change gives the AVIOContext and AVIOInterruptCB structures a name. These structures are now in line with other common structures such as AVFormatContext and AVCodecContext. Signed-off-by: Dale Curtis <dalecurtis@chromium.org> Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
- 15 Sep, 2012 1 commit
-
-
Stefano Sabatini authored
This is consistent with stdio, and thus what people would naturally expect.
-
- 18 Aug, 2012 2 commits
-
-
Stefano Sabatini authored
This seems the expected behavior.
-
Stefano Sabatini authored
-
- 27 Jul, 2012 1 commit
-
-
Michael Niedermayer authored
Found-by: Reimar Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 20 Jun, 2012 1 commit
-
-
Paul B Mahol authored
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-
- 15 Jun, 2012 1 commit
-
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 18 Apr, 2012 1 commit
-
-
Mans Rullgard authored
Fix this warning: libavformat/aviobuf.c:663:20: warning: assignment discards qualifiers from pointer target type Although this is a public header, it should remain source and binary compatible. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
- 04 Apr, 2012 1 commit
-
-
Reimar Döffinger authored
Allows avoiding the buffer when using avio read, write and seek functions. When using the ffmpeg executable -avioflags direct can be used to enable this mode for input files, but has no effect on output files. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
-
- 13 Mar, 2012 1 commit
-
-
Lou Logan authored
Patch attached. From 2d4094fc0dcb4ccd0735eb7e1719e228ebb56bb9 Mon Sep 17 00:00:00 2001 From: Lou Logan <lou@lrcd.com> Date: Mon, 12 Mar 2012 14:13:44 -0800 Subject: [PATCH] cosmetics: fix some typos Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 27 Jan, 2012 2 commits
-
-
Anton Khirnov authored
-
Anton Khirnov authored
-
- 12 Jan, 2012 1 commit
-
-
Martin Storsjö authored
This isn't used in practice anywhere within libav at the moment, but change it for consistency until it is removed. URL_RDONLY/WRONLY were fixed in commit 5b81e295 (after the values that actually were used were changed at the major bump, in commit cbea3ac8), but this flag was unintentionally left unfixed. Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 05 Jan, 2012 1 commit
-
-
Martin Storsjö authored
This definition is in two files, since the definitions will move to the private header at the next bump. Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 21 Dec, 2011 1 commit
-
-
Michael Niedermayer authored
and thus cannot be used Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 16 Dec, 2011 1 commit
-
-
Michael Niedermayer authored
This allows simple and generic limiting of allocations used for packets. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 10 Dec, 2011 2 commits
-
-
Anton Khirnov authored
-
Anton Khirnov authored
-
- 18 Nov, 2011 1 commit
-
-
Martin Storsjö authored
Prepare for removing it at an upcoming major bump.
-
- 13 Nov, 2011 2 commits
-
-
Martin Storsjö authored
The interrupt callback has to be passed in during opening (setting it after opening isn't enough), since a blocking open couldn't be interrupted otherwise. Options are passed down to procotols and also need to be available during open() in most cases. Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Martin Storsjö authored
This is a better io interrupt callback function, which has an opaque parameter, which is given to the interrupt callback. This allows callers to precisely cancel IO for one single AVFormatContext, without interrupt other ones in the same process. Note, it's not needed in AVIOContext, at the moment. Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
- 02 Jul, 2011 1 commit
-
-
Reinhard Tartler authored
Before this, almost all module groups have been used for grouping functions and fields in structures semantically. This causes them to not appear properly in the file documentation and needlessly clutters up the "Modules" index. Additionally, this commit streamlines some spelling and appearances.
-
- 23 Jun, 2011 1 commit
-
-
Martin Storsjö authored
This helps catching cases where the format string doesn't match what is passed in, or injection bugs where user data is passed in as format string. Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 21 May, 2011 1 commit
-
-
Can Wu authored
Else a later buffer resize in ffio_set_buf_size() will ABORT. Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
- 28 Apr, 2011 1 commit
-
-
Martin Storsjö authored
While deprecated, they're totally useless as long as their values are different from the AVIO_FLAG values that are used internally. Currently, this leads to old libav applications still compiling correctly (since we haven't removed the fallback wrappers), but failing since the functions internally compare to the new AVIO_FLAG values. These should be removed at some point, but they aren't removed yet. The intent is to be able to recompile an old application against the new ABI without modifying the code, and this doesn't work currently. Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 19 Apr, 2011 6 commits
-
-
Stefano Sabatini authored
Make AVIO_FLAG_ access constants work as flags, and in particular fix the behavior of functions (such as avio_check()) which expect them to be flags rather than modes. This breaks API.
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
- 13 Apr, 2011 2 commits
-
-
Anton Khirnov authored
-
Stefano Sabatini authored
The new function is more flexible than url_exist(), as it allows to specify which access flags to check, and does not require an explicit open of the checked resource. Signed-off-by: Anton Khirnov <anton@khirnov.net>
-