Commit a4d64c17 authored by Michael Niedermayer's avatar Michael Niedermayer

unused var

Originally committed as revision 13994 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent fdb5932e
...@@ -78,7 +78,6 @@ typedef struct StrDemuxContext { ...@@ -78,7 +78,6 @@ typedef struct StrDemuxContext {
int64_t pts; int64_t pts;
unsigned char *video_chunk;
AVPacket tmp_pkt; AVPacket tmp_pkt;
} StrDemuxContext; } StrDemuxContext;
...@@ -137,7 +136,6 @@ static int str_read_header(AVFormatContext *s, ...@@ -137,7 +136,6 @@ static int str_read_header(AVFormatContext *s,
str->pts = 0; str->pts = 0;
str->audio_channel = -1; /* assume to audio or video */ str->audio_channel = -1; /* assume to audio or video */
str->video_channel = -1; str->video_channel = -1;
str->video_chunk = NULL;
/* skip over any RIFF header */ /* skip over any RIFF header */
...@@ -355,8 +353,6 @@ static int str_read_close(AVFormatContext *s) ...@@ -355,8 +353,6 @@ static int str_read_close(AVFormatContext *s)
{ {
StrDemuxContext *str = s->priv_data; StrDemuxContext *str = s->priv_data;
av_free(str->video_chunk);
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment