flv: Index the audio stream
authorLuca Barbato <lu_zero@gentoo.org>
Fri, 1 Aug 2014 01:03:20 +0000 (03:03 +0200)
committerLuca Barbato <lu_zero@gentoo.org>
Fri, 1 Aug 2014 13:04:51 +0000 (15:04 +0200)
And leverage the video index if the video is just disabled as wm4
did in an initial patch.

libavformat/flvdec.c

index 8e4cc5e..034e346 100644 (file)
@@ -818,6 +818,11 @@ skip:
             st = create_stream(s, is_audio ? AVMEDIA_TYPE_AUDIO
                                            : AVMEDIA_TYPE_VIDEO);
         av_dlog(s, "%d %X %d \n", is_audio, flags, st->discard);
+
+        if ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY ||
+            is_audio)
+            av_add_index_entry(st, pos, dts, size, 0, AVINDEX_KEYFRAME);
+
         if ((st->discard >= AVDISCARD_NONKEY &&
              !((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY || is_audio)) ||
             (st->discard >= AVDISCARD_BIDIR &&
@@ -826,8 +831,6 @@ skip:
             avio_seek(s->pb, next, SEEK_SET);
             continue;
         }
-        if ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY)
-            av_add_index_entry(st, pos, dts, size, 0, AVINDEX_KEYFRAME);
         break;
     }