diff options
author | Leon van Stuivenberg <leonvs@iae.nl> | 2004-03-15 03:29:32 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-03-15 03:29:32 +0000 |
commit | e15dec10d5eb1fba001714a512779f459a8b51fc (patch) | |
tree | b5f2e49b3f86e488550c77e07b8734d46a907379 /libavformat/avio.h | |
parent | 6cc270c2acba1c236e249ec76f877cf014ee70f5 (diff) | |
download | ffmpeg-e15dec10d5eb1fba001714a512779f459a8b51fc.tar.gz |
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
Originally committed as revision 2896 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r-- | libavformat/avio.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h index df287b8214..f668c0ceb0 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -119,6 +119,7 @@ char *url_fgets(ByteIOContext *s, char *buf, int buf_size); void put_flush_packet(ByteIOContext *s); int get_buffer(ByteIOContext *s, unsigned char *buf, int size); +int get_partial_buffer(ByteIOContext *s, unsigned char *buf, int size); int get_byte(ByteIOContext *s); unsigned int get_le32(ByteIOContext *s); uint64_t get_le64(ByteIOContext *s); |