diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2011-09-25 13:12:05 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-09-28 16:11:01 +0200 |
commit | 4a14dd76cffa5cfed8629732a7dbfbe800b08182 (patch) | |
tree | 5a2882a56603882e6025ccbfc35860e604883f48 /libavformat | |
parent | fb35f7d7e1c95cb8b809968c9f00f0424d0a3e50 (diff) | |
download | ffmpeg-streaming-4a14dd76cffa5cfed8629732a7dbfbe800b08182.zip ffmpeg-streaming-4a14dd76cffa5cfed8629732a7dbfbe800b08182.tar.gz |
bintext: remove unused variable.
Signed-off-by: Nicolas George <nicolas.george@normalesup.org>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/bintext.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/bintext.c b/libavformat/bintext.c index a0a1f21..69c7ab5 100644 --- a/libavformat/bintext.c +++ b/libavformat/bintext.c @@ -173,7 +173,6 @@ static int xbin_read_header(AVFormatContext *s, BinDemuxContext *bin = s->priv_data; ByteIOContext *pb = s->pb; char fontheight, flags; - uint8_t *h; AVStream *st = init_stream(s, ap); if (!st) @@ -193,7 +192,7 @@ static int xbin_read_header(AVFormatContext *s, st->codec->extradata_size += fontheight * (flags & 0x10 ? 512 : 256); st->codec->codec_id = flags & 4 ? CODEC_ID_XBIN : CODEC_ID_BINTEXT; - h = st->codec->extradata = av_malloc(st->codec->extradata_size); + st->codec->extradata = av_malloc(st->codec->extradata_size); if (!st->codec->extradata) return AVERROR(ENOMEM); st->codec->extradata[0] = fontheight; |