diff options
author | Michael Niedermayer | 2007-08-09 10:57:10 +0000 |
---|---|---|
committer | Michael Niedermayer | 2007-08-09 10:57:10 +0000 |
commit | 4d75168f17259c385c284f5bf64963285445b78d (patch) | |
tree | e2a21ed62c9a0dd400cd2acfacc694f3968931a2 /libavformat | |
parent | dcc9bde0101f8246b34ac857fac1b6c3608f0c3f (diff) |
variables needed for muxer
Originally committed as revision 10009 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/nut.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/nut.h b/libavformat/nut.h index 8ef65c8069..2faf6958a1 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[3]; //0-> startcode less, 1-> short startcode 2-> long startcodes + 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; |