[SCM] libav/experimental: remove unused fields in swf context
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 16:41:19 UTC 2013
The following commit has been merged in the experimental branch:
commit 40a1d41fd22459290526fb38f3d327f1c167fe83
Author: Baptiste Coudurier <baptiste.coudurier at gmail.com>
Date: Sat Mar 14 22:49:01 2009 +0000
remove unused fields in swf context
Originally committed as revision 17968 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/libavformat/swf.h b/libavformat/swf.h
index a4638bb..69064a2 100644
--- a/libavformat/swf.h
+++ b/libavformat/swf.h
@@ -65,7 +65,6 @@
#include <assert.h>
typedef struct {
- int audio_stream_index;
int64_t duration_pos;
int64_t tag_pos;
int64_t vframes_pos;
diff --git a/libavformat/swfdec.c b/libavformat/swfdec.c
index 1f010c5..2741218 100644
--- a/libavformat/swfdec.c
+++ b/libavformat/swfdec.c
@@ -130,7 +130,6 @@ static int swf_read_packet(AVFormatContext *s, AVPacket *pkt)
ast = av_new_stream(s, -1); /* -1 to avoid clash with video stream ch_id */
if (!ast)
return -1;
- swf->audio_stream_index = ast->index;
ast->codec->channels = 1 + (v&1);
ast->codec->codec_type = CODEC_TYPE_AUDIO;
ast->codec->codec_id = codec_get_id(swf_audio_codec_tags, (v>>4) & 15);
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list