summaryrefslogtreecommitdiff
path: root/libavformat/asf.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-01-22 10:53:57 +0000
committerMichael Niedermayer <michaelni@gmx.at>2007-01-22 10:53:57 +0000
commit6bb2a2dfb9521be8e6aac02f7f398c8e2326a926 (patch)
tree36442740aaadafc40e0a6046870e98767cf11f66 /libavformat/asf.h
parent079e8cb9623a17f552bc98284a22ac14fbe5c3e5 (diff)
remove a few unused and duplicated variables
Originally committed as revision 7642 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/asf.h')
-rw-r--r--libavformat/asf.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/libavformat/asf.h b/libavformat/asf.h
index d04f99d5dc..3fa7dfa111 100644
--- a/libavformat/asf.h
+++ b/libavformat/asf.h
@@ -31,8 +31,6 @@ typedef struct {
int ds_span; /* descrambling */
int ds_packet_size;
int ds_chunk_size;
- int ds_data_size;
- int ds_silence_data;
int64_t packet_pos;
@@ -46,8 +44,6 @@ typedef struct {
// invalid if broadcasting
uint64_t create_time; // time of creation, in 100-nanosecond units since 1.1.1601
// invalid if broadcasting
- uint64_t packets_count; // how many packets are there in the file
- // invalid if broadcasting
uint64_t play_time; // play time, in 100-nanosecond units
// invalid if broadcasting
uint64_t send_time; // time to send file, in 100-nanosecond units
@@ -81,7 +77,7 @@ typedef struct {
int asfid2avid[128]; /* conversion table from asf ID 2 AVStream ID */
ASFStream streams[128]; /* it's max number and it's not that big */
/* non streamed additonnal info */
- uint64_t nb_packets;
+ uint64_t nb_packets; ///< how many packets are there in the file, invalid if broadcasting
int64_t duration; /* in 100ns units */
/* packet filling */
unsigned char multi_payloads_present;