fixing raw yuv input
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 11 Sep 2002 17:04:04 +0000 (17:04 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 11 Sep 2002 17:04:04 +0000 (17:04 +0000)
Originally committed as revision 916 to svn://svn.ffmpeg.org/ffmpeg/trunk

libav/raw.c

index 13c5721..96d011c 100644 (file)
@@ -372,8 +372,12 @@ int rawvideo_read_packet(AVFormatContext *s,
         return -EIO;
 
     pkt->stream_index = 0;
+#if 0
     /* bypass buffered I/O */
     ret = url_read(url_fileno(&s->pb), pkt->data, pkt->size);
+#else
+    ret = get_buffer(&s->pb, pkt->data, pkt->size);
+#endif
     if (ret != pkt->size) {
         av_free_packet(pkt);
         return -EIO;