comparison avformat.h @ 3128:b5e2ce291882 libavformat

Introduce max_picture_buffer variable in AVFormatContext, set by rtbufsize option.
author ramiro
date Sat, 08 Mar 2008 21:59:11 +0000
parents ea5623a8efde
children 96814e704e8b
comparison
equal deleted inserted replaced
3127:ca53e89f3448 3128:b5e2ce291882
20 20
21 #ifndef FFMPEG_AVFORMAT_H 21 #ifndef FFMPEG_AVFORMAT_H
22 #define FFMPEG_AVFORMAT_H 22 #define FFMPEG_AVFORMAT_H
23 23
24 #define LIBAVFORMAT_VERSION_MAJOR 52 24 #define LIBAVFORMAT_VERSION_MAJOR 52
25 #define LIBAVFORMAT_VERSION_MINOR 8 25 #define LIBAVFORMAT_VERSION_MINOR 9
26 #define LIBAVFORMAT_VERSION_MICRO 0 26 #define LIBAVFORMAT_VERSION_MICRO 0
27 27
28 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ 28 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
29 LIBAVFORMAT_VERSION_MINOR, \ 29 LIBAVFORMAT_VERSION_MINOR, \
30 LIBAVFORMAT_VERSION_MICRO) 30 LIBAVFORMAT_VERSION_MICRO)
506 * this. 506 * this.
507 * muxing : unused 507 * muxing : unused
508 * demuxing: set by user 508 * demuxing: set by user
509 */ 509 */
510 unsigned int max_index_size; 510 unsigned int max_index_size;
511
512 /**
513 * Maximum ammount of memory in bytes to use for buffering frames that are
514 * obtained from real-time capture devices.
515 */
516 unsigned int max_picture_buffer;
511 } AVFormatContext; 517 } AVFormatContext;
512 518
513 typedef struct AVPacketList { 519 typedef struct AVPacketList {
514 AVPacket pkt; 520 AVPacket pkt;
515 struct AVPacketList *next; 521 struct AVPacketList *next;