removed warnings

Originally committed as revision 1496 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Fabrice Bellard 2003-01-23 09:52:30 +00:00
parent 7322a67c39
commit 2a6874fd24
2 changed files with 3 additions and 2 deletions

View File

@ -29,7 +29,8 @@ typedef struct DVDemuxContext {
static int dv_read_header(AVFormatContext *s, static int dv_read_header(AVFormatContext *s,
AVFormatParameters *ap) AVFormatParameters *ap)
{ {
AVStream *vst, *ast; AVStream *vst;
// AVStream *ast;
vst = av_new_stream(s, 0); vst = av_new_stream(s, 0);
if (!vst) if (!vst)

View File

@ -82,7 +82,7 @@ int raw_read_packet(AVFormatContext *s,
AVPacket *pkt) AVPacket *pkt)
{ {
int ret, size; int ret, size;
AVStream *st = s->streams[0]; // AVStream *st = s->streams[0];
size= RAW_PACKET_SIZE; size= RAW_PACKET_SIZE;