summaryrefslogtreecommitdiffstats
path: root/libavformat/output-example.c
Commit message (Collapse)AuthorAgeFilesLines
* Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov2012-10-081-6/+6
|
* Use avcodec_free_frame() to free AVFrames.Anton Khirnov2012-09-241-0/+1
|
* Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov2012-08-071-6/+6
|
* output-example: K&R formatting cosmetics, comment spelling fixesDiego Biurrun2012-03-301-97/+100
|
* avf: make the example output the proper messageLuca Barbato2012-03-291-2/+2
| | | | | av_dump_format needs the codecs opened in order to print them.
* avf: fix audio writing in the output-exampleLuca Barbato2012-03-291-1/+1
| | | | | av_init_packet does not reset data and size fields in AVPacket, avcodec_encode_audio2 can use preallocated AVPacket.
* lavf/output-example: use new audio encoding API correctly.Anton Khirnov2012-02-241-29/+15
|
* lavf/output-example: more proper usage of the new API.Anton Khirnov2012-02-241-24/+20
| | | | Passing the codec into avformat_new_stream() is preferred.
* examples: unbreak compilationLuca Barbato2012-02-191-12/+5
| | | | Update api so it will compile again.
* tests/examples: Mark some variables only used within their files as static.Diego Biurrun2011-12-081-8/+8
|
* tests/tools/examples: Replace direct exit() calls by return.Diego Biurrun2011-12-081-5/+5
|
* lavf,lavd: replace av_new_stream->avformat_new_stream part I.Anton Khirnov2011-10-191-1/+1
| | | | | 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-031-0/+1
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* doxygen: Include libavcodec and libavformat examples into the documentationReinhard Tartler2011-06-301-3/+10
|
* avio: remove AVIO_* access symbols in favor of new AVIO_FLAG_* symbolsStefano Sabatini2011-04-191-1/+1
| | | | | | | | 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-071-1/+1
|
* avio: rename url_fopen/fclose -> avio_open/close.Anton Khirnov2011-02-231-2/+2
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* lavf: add av_ prefix to dump_format()Anton Khirnov2011-02-161-1/+1
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Replace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_FMT_*, and enumStefano Sabatini2010-11-121-1/+1
| | | | | | 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-141-0/+1
| | | | 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-311-3/+3
| | | | | | 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-301-2/+2
| | | | | | 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-221-4/+0
| | | | | | 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-221-2/+2
| | | | | | 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-211-1/+6
| | | | | | 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-021-3/+3
| | | | Originally committed as revision 19568 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move output_example.c --> libavformat/output-example.c.Diego Biurrun2009-03-271-0/+553
The libavformat directory is a better place for a libavformat API example. Originally committed as revision 18199 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud