summaryrefslogtreecommitdiff
path: root/libavformat/nut.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-08-09 12:38:24 +0000
committerMichael Niedermayer <michaelni@gmx.at>2007-08-09 12:38:24 +0000
commit8d9a3f7e21435ddf47635909c90f56f8c966397b (patch)
tree91d79a71c43434a26fc8a70a064a10c73572d3df /libavformat/nut.h
parent0809b51e528067ad94ff0ca31e91b02526197774 (diff)
use a dynamic ByteIOContext instead of using the lavf buffer
this makes the code work with big packets, it is also simpler and saves a byte or 2 Originally committed as revision 10015 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/nut.h')
-rw-r--r--libavformat/nut.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/nut.h b/libavformat/nut.h
index a5363d61dc..03d8c5a2fd 100644
--- a/libavformat/nut.h
+++ b/libavformat/nut.h
@@ -80,8 +80,8 @@ typedef struct {
typedef struct {
AVFormatContext *avf;
- int written_packet_size;
- int64_t packet_start;
+// int written_packet_size;
+// int64_t packet_start;
FrameCode frame_code[256];
uint64_t next_startcode; ///< stores the next startcode if it has already been parsed but the stream is not seekable
StreamContext *stream;