diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-09-24 19:20:53 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-09-24 19:20:53 +0000 |
commit | 486168877edf144652c1f01ad765836d7f0a3101 (patch) | |
tree | 68db510ae478c50948152e8db16ccc767b65f613 /libavformat/avformat.h | |
parent | a58e96be0e6f01721c5a3c26c42d08d6247dd682 (diff) | |
download | ffmpeg-486168877edf144652c1f01ad765836d7f0a3101.tar.gz |
Fix reading VDR files (broken since r19000).
Originally committed as revision 20017 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index be8c374290..fbe65f509c 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -448,7 +448,7 @@ typedef struct AVStream { * Number of packets to buffer for codec probing * NOT PART OF PUBLIC API */ -#define MAX_PROBE_PACKETS 100 +#define MAX_PROBE_PACKETS 2500 int probe_packets; /** @@ -649,7 +649,7 @@ typedef struct AVFormatContext { * Remaining size available for raw_packet_buffer, in bytes. * NOT PART OF PUBLIC API */ -#define RAW_PACKET_BUFFER_SIZE 32000 +#define RAW_PACKET_BUFFER_SIZE 2500000 int raw_packet_buffer_remaining_size; } AVFormatContext; |