Browse Source

removed warnings

Originally committed as revision 1496 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Fabrice Bellard 23 years ago
parent
commit
2a6874fd24
2 changed files with 3 additions and 2 deletions
  1. +2
    -1
      libavformat/dv.c
  2. +1
    -1
      libavformat/raw.c

+ 2
- 1
libavformat/dv.c View File

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

vst = av_new_stream(s, 0);
if (!vst)


+ 1
- 1
libavformat/raw.c View File

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



Loading…
Cancel
Save