* Add support for setting default extra times to add before and after
a recording. Useful if your TV shows never start on time.
+ * Use FFmpeg's av_interleaved_write_frame() or some players can't
+ play the recorded content (vlc is one)
+
hts-tvheadend (2.4) hts; urgency=low
* Due to a bug, the polarisation of DVB-S muxes was not correctly
avpkt.duration =
av_rescale_q(pkt->pkt_duration, AV_TIME_BASE_Q, st->time_base);
avpkt.flags = pkt->pkt_frametype >= PKT_P_FRAME ? 0 : PKT_FLAG_KEY;
- r = av_write_frame(fctx, &avpkt);
+ r = av_interleaved_write_frame(fctx, &avpkt);
break;