comparison avformat.h @ 4538:63c5b6f7d3f5 libavformat

av_alloc_format_context has been renamed, update AVFormatContext av_class documentation accordingly. Patch by avcoder: `gmail_address(ffmpeg)`
author benoit
date Wed, 18 Feb 2009 14:01:46 +0000
parents dee012239d99
children 54fded221fb1
comparison
equal deleted inserted replaced
4537:6e217e9ca23d 4538:63c5b6f7d3f5
533 * Removal, reordering and changes to existing fields require a major 533 * Removal, reordering and changes to existing fields require a major
534 * version bump. 534 * version bump.
535 * sizeof(AVFormatContext) must not be used outside libav*. 535 * sizeof(AVFormatContext) must not be used outside libav*.
536 */ 536 */
537 typedef struct AVFormatContext { 537 typedef struct AVFormatContext {
538 const AVClass *av_class; /**< Set by av_alloc_format_context. */ 538 const AVClass *av_class; /**< Set by avformat_alloc_context. */
539 /* Can only be iformat or oformat, not both at the same time. */ 539 /* Can only be iformat or oformat, not both at the same time. */
540 struct AVInputFormat *iformat; 540 struct AVInputFormat *iformat;
541 struct AVOutputFormat *oformat; 541 struct AVOutputFormat *oformat;
542 void *priv_data; 542 void *priv_data;
543 ByteIOContext *pb; 543 ByteIOContext *pb;