MP4 streaming workaround

git-svn-id: svn+ssh://74.125.59.83/svnsource/ffmpeg/trunk@89 c0683bf1-fb26-4375-bba1-98ccd3d3b0d1
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 4b2da2f..89b4e9c 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -2209,6 +2209,9 @@
  retry:
     for (i = 0; i < s->nb_streams; i++) {
         AVStream *st = s->streams[i];
+        // Don't read those for now because it had issue with streaming
+        if(st->codec->codec_type == CODEC_TYPE_DATA)
+            continue;
         MOVStreamContext *msc = st->priv_data;
 #ifndef EM8622
         if (st->discard != AVDISCARD_ALL && msc->pb && msc->current_sample < st->nb_index_entries) {