[FFmpeg-cvslog] r13994 - trunk/libavformat/psxstr.c
michael
subversion
Fri Jun 27 00:23:58 CEST 2008
Author: michael
Date: Fri Jun 27 00:23:57 2008
New Revision: 13994
Log:
unused var
Modified:
trunk/libavformat/psxstr.c
Modified: trunk/libavformat/psxstr.c
==============================================================================
--- trunk/libavformat/psxstr.c (original)
+++ trunk/libavformat/psxstr.c Fri Jun 27 00:23:57 2008
@@ -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(AVFormatConte
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(AVFormatContex
{
StrDemuxContext *str = s->priv_data;
- av_free(str->video_chunk);
-
return 0;
}
More information about the ffmpeg-cvslog
mailing list