summaryrefslogtreecommitdiff
path: root/libavformat/dv.c
diff options
context:
space:
mode:
authorRoman Shaposhnik <roman@shaposhnik.org>2004-02-11 02:28:34 +0000
committerRoman Shaposhnik <roman@shaposhnik.org>2004-02-11 02:28:34 +0000
commitec26a167ee4835d237c0d6700df9a661e38994c4 (patch)
tree0b54532eb26eeafe8b09e54e2213eff138dd4118 /libavformat/dv.c
parent826ca10408ff30f014426092274424b1a13419ea (diff)
* turns out write_packet is supposed to return 0 on success, not
how many bytes were written. Originally committed as revision 2770 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/dv.c')
-rw-r--r--libavformat/dv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dv.c b/libavformat/dv.c
index a376741703..dacf4e2db8 100644
--- a/libavformat/dv.c
+++ b/libavformat/dv.c
@@ -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;
}
/*