Mercurial > libavformat.hg
diff rm.h @ 2653:67667d13bab5 libavformat
Demux full frames instead of sliced for RealVideo.
Some changes by Roberto Togni and blessed by him on IRC.
| author | kostya |
|---|---|
| date | Sun, 21 Oct 2007 17:17:28 +0000 |
| parents | 792383dd085e |
| children | 7671acabd99c |
line wrap: on
line diff
--- a/rm.h Sat Oct 20 14:25:02 2007 +0000 +++ b/rm.h Sun Oct 21 17:17:28 2007 +0000 @@ -46,6 +46,11 @@ int old_format; int current_stream; int remaining_len; + uint8_t *videobuf; ///< place to store merged video frame + int videobufsize; ///< current assembled frame size + int videobufpos; ///< position for the next slice in the video buffer + int curpic_num; ///< picture number of current frame + int cur_slice, slices; /// Audio descrambling matrix parameters uint8_t *audiobuf; ///< place to store reordered audio data int64_t audiotimestamp; ///< Audio packet timestamp
