Commit d9724664 authored by bellard's avatar bellard

removed warnings


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@1496 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ecf3256b
...@@ -29,7 +29,8 @@ typedef struct DVDemuxContext { ...@@ -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)
......
...@@ -82,7 +82,7 @@ int raw_read_packet(AVFormatContext *s, ...@@ -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;
......
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