diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2009-06-24 23:04:05 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2009-06-24 23:04:05 +0000 |
commit | 91d19d471b7bd8c621813a02e8cfe068e19ba699 (patch) | |
tree | e92d4fba7ccc8f269dc0a0af24b14bbd1754fbf4 /libavformat/asf.h | |
parent | a752069dbacae4f25de71c637619123a967065d7 (diff) | |
download | ffmpeg-91d19d471b7bd8c621813a02e8cfe068e19ba699.tar.gz |
Remove any reference to ASFContext.packet_size and replace it with
AVFormatContext.packet_size. See "[PATCH] asf*.c/h: use
AVFormatContext->packet_size instead of own copy" thread on ML.
Originally committed as revision 19270 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/asf.h')
-rw-r--r-- | libavformat/asf.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/asf.h b/libavformat/asf.h index 52f510293d..314c0f8882 100644 --- a/libavformat/asf.h +++ b/libavformat/asf.h @@ -82,7 +82,6 @@ typedef struct { typedef struct { uint32_t seqno; - unsigned int packet_size; int is_streamed; int asfid2avid[128]; ///< conversion table from asf ID 2 AVStream ID ASFStream streams[128]; ///< it's max number and it's not that big |