diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-10-15 22:50:10 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-10-15 22:50:10 +0000 |
commit | df2eef0fef668a4bb532cc68fcf093ae97fae98d (patch) | |
tree | 637b3ca1dfbb2580ed5f5f61d66dfcda644c6afe | |
parent | 059baac9c8de393914d8e44eac1e370b80a37abc (diff) | |
download | ffmpeg-df2eef0fef668a4bb532cc68fcf093ae97fae98d.tar.gz |
remove unused context vars
Originally committed as revision 10749 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/electronicarts.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavformat/electronicarts.c b/libavformat/electronicarts.c index 3ab3e8b33c..708442c0b9 100644 --- a/libavformat/electronicarts.c +++ b/libavformat/electronicarts.c @@ -36,18 +36,12 @@ #define EA_PREAMBLE_SIZE 8 typedef struct EaDemuxContext { - int width; - int height; int video_stream_index; - int track_count; int audio_stream_index; int audio_frame_counter; int64_t audio_pts; - int64_t video_pts; - int video_pts_inc; - float fps; int num_channels; int num_samples; |