diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-06-26 22:23:57 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-06-26 22:23:57 +0000 |
commit | a4d64c1709206cddd34f99c953126d4380922b54 (patch) | |
tree | 782d67b02e9671a0838c6a0e0e5681c28cffe0e4 /libavformat/psxstr.c | |
parent | fdb5932e357e2e528b62130eefc8bf8bc1b12da2 (diff) | |
download | ffmpeg-a4d64c1709206cddd34f99c953126d4380922b54.tar.gz |
unused var
Originally committed as revision 13994 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/psxstr.c')
-rw-r--r-- | libavformat/psxstr.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavformat/psxstr.c b/libavformat/psxstr.c index bce60e87ef..f263cb9efd 100644 --- a/libavformat/psxstr.c +++ b/libavformat/psxstr.c @@ -78,7 +78,6 @@ typedef struct StrDemuxContext { int64_t pts; - unsigned char *video_chunk; AVPacket tmp_pkt; } StrDemuxContext; @@ -137,7 +136,6 @@ static int str_read_header(AVFormatContext *s, str->pts = 0; str->audio_channel = -1; /* assume to audio or video */ str->video_channel = -1; - str->video_chunk = NULL; /* skip over any RIFF header */ @@ -355,8 +353,6 @@ static int str_read_close(AVFormatContext *s) { StrDemuxContext *str = s->priv_data; - av_free(str->video_chunk); - return 0; } |