Commit e6c110f8 authored by romansh's avatar romansh

   * turns out write_packet is supposed to return 0 on success, not
     how many bytes were written.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@2770 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9d80f0d3
......@@ -869,7 +869,7 @@ static int dv_write_packet(struct AVFormatContext *s,
put_buffer(&s->pb, frame, fsize);
put_flush_packet(&s->pb);
}
return fsize;
return 0;
}
/*
......
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