X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=nageru%2Fkaeru.cpp;h=1699d243491900f45a1c1fdfb8f0db7bc3efc874;hb=2f92c975a3cf9f4803a58267fd2a12765e34a69e;hp=ce58aef9473f3da33112ca5d72e5d8ca5da24ded;hpb=bdc9f1ea04141e71906d486f9d254c3346835e72;p=nageru diff --git a/nageru/kaeru.cpp b/nageru/kaeru.cpp index ce58aef..1699d24 100644 --- a/nageru/kaeru.cpp +++ b/nageru/kaeru.cpp @@ -66,7 +66,7 @@ int write_packet(void *opaque, uint8_t *buf, int buf_size, AVIODataMarkerType ty unique_ptr create_mux(HTTPD *httpd, const AVOutputFormat *oformat, X264Encoder *x264_encoder, AudioEncoder *audio_encoder) { AVFormatContext *avctx = avformat_alloc_context(); - avctx->oformat = oformat; + avctx->oformat = const_castoformat)>(oformat); // const_cast is a hack to work in FFmpeg both before and after 5.0. uint8_t *buf = (uint8_t *)av_malloc(MUX_BUFFER_SIZE); avctx->pb = avio_alloc_context(buf, MUX_BUFFER_SIZE, 1, httpd, nullptr, nullptr, nullptr); @@ -162,10 +162,8 @@ void filter_packet_callback(Mux *mux, int stream_index, AVBSFContext *bsfctx, co fprintf(stderr, "av_bsf_send_packet() failed with %d, ignoring\n", err); } for ( ;; ) { - AVPacket out_pkt; - unique_ptr pkt_cleanup(&out_pkt, av_packet_unref); - av_init_packet(&out_pkt); - err = av_bsf_receive_packet(bsfctx, &out_pkt); + AVPacketWithDeleter out_pkt = av_packet_alloc_unique(); + err = av_bsf_receive_packet(bsfctx, out_pkt.get()); if (err == AVERROR(EAGAIN)) { break; } @@ -173,7 +171,7 @@ void filter_packet_callback(Mux *mux, int stream_index, AVBSFContext *bsfctx, co fprintf(stderr, "av_bsf_receive_packet() failed with %d, ignoring\n", err); return; } - mux->add_packet(out_pkt, out_pkt.pts, out_pkt.dts == AV_NOPTS_VALUE ? out_pkt.pts : out_pkt.dts, timebase, stream_index); + mux->add_packet(*out_pkt, out_pkt->pts, out_pkt->dts == AV_NOPTS_VALUE ? out_pkt->pts : out_pkt->dts, timebase, stream_index); } }