summaryrefslogtreecommitdiff
path: root/libavformat/output-example.c
Commit message (Collapse)AuthorAge
* lavf,lavd: replace av_new_stream->avformat_new_stream part I.Anton Khirnov2011-10-19
| | | | | Trivial replacements with sed are done in this commit: sed 's/av_new_stream(\([^)]*\), 0)/avformat_new_stream(\1, NULL)/'
* Do not include mathematics.h in avutil.hMans Rullgard2011-07-03
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* doxygen: Include libavcodec and libavformat examples into the documentationReinhard Tartler2011-06-30
|
* avio: remove AVIO_* access symbols in favor of new AVIO_FLAG_* symbolsStefano Sabatini2011-04-19
| | | | | | | | 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.
* avio: AVIO_ prefixes for URL_ open flags.Anton Khirnov2011-04-07
|
* avio: rename url_fopen/fclose -> avio_open/close.Anton Khirnov2011-02-23
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* lavf: add av_ prefix to dump_format()Anton Khirnov2011-02-16
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Replace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_FMT_*, and enumStefano Sabatini2010-11-12
| | | | | | SampleFormat with AVSampleFormat. Originally committed as revision 25730 to svn://svn.ffmpeg.org/ffmpeg/trunk
* output-example: Set sample_fmt to SAMPLE_FMT_S16.Ramiro Polla2010-06-14
| | | | Originally committed as revision 23597 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all occurences of PKT_FLAG_KEY with AV_PKT_FLAG_KEY.Jean-Daniel Dupas2010-03-31
| | | | | | Patch by Jean-Daniel Dupas, devlists shadowlab org Originally committed as revision 22744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove conditional M_PI definition, it is already defined inStefano Sabatini2010-01-22
| | | | | | libavutil/mathematics.h indirectly included by libavformat/avformat.h. Originally committed as revision 21388 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace deprecated guess_format() with av_guess_format().Martin Storsjö2010-01-22
| | | | | | Patch by Martin Storsjö reverse(<ts.nitram@nitram>). Originally committed as revision 21387 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make output-example.c handle AAC audio.Martin Storsjö2010-01-21
| | | | | | Patch by Martin Storsjö martin martin st Originally committed as revision 21367 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use enums instead of int.Ramiro Polla2009-08-02
| | | | Originally committed as revision 19568 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move output_example.c --> libavformat/output-example.c.Diego Biurrun2009-03-27
The libavformat directory is a better place for a libavformat API example. Originally committed as revision 18199 to svn://svn.ffmpeg.org/ffmpeg/trunk