diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index 5ded25076edc783dce9d20ab7f774b23e7d1b808..efbce4ed21b6900ffc5fed736d6e5b326e9579ca 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -1607,14 +1607,12 @@ static int mov_write_packet(AVFormatContext *s, AVPacket *pkt)
     trk->cluster[trk->entry].dts = pkt->dts;
     trk->trackDuration = pkt->dts - trk->cluster[0].dts + pkt->duration;
 
-    if(enc->codec_type == CODEC_TYPE_VIDEO) {
         if (pkt->dts != pkt->pts)
             trk->hasBframes = 1;
         trk->cluster[trk->entry].cts = pkt->pts - pkt->dts;
         trk->cluster[trk->entry].key_frame = !!(pkt->flags & PKT_FLAG_KEY);
         if(trk->cluster[trk->entry].key_frame)
             trk->hasKeyframes++;
-    }
     trk->entry++;
     trk->sampleCount += samplesInChunk;
     mov->mdat_size += size;