John Stebbins:
> PGS segments must be merged to one packet for muxing to mkv
> ---
>  libavformat/matroskaenc.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c
> index d3256d8f5d..bccf8b11d2 100644
> --- a/libavformat/matroskaenc.c
> +++ b/libavformat/matroskaenc.c
> @@ -2655,6 +2655,8 @@ static int mkv_check_bitstream(struct AVFormatContext 
> *s, const AVPacket *pkt)
>              ret = ff_stream_add_bitstream_filter(st, "aac_adtstoasc", NULL);
>      } else if (st->codecpar->codec_id == AV_CODEC_ID_VP9) {
>          ret = ff_stream_add_bitstream_filter(st, "vp9_superframe", NULL);
> +    } else if (st->codecpar->codec_id == AV_CODEC_ID_HDMV_PGS_SUBTITLE) {
> +        ret = ff_stream_add_bitstream_filter(st, "pgs_frame_merge", NULL);
>      }
>  
>      return ret;
> 
1128aa875367f66ac11adc30364d5652919a2591 removed the auto bsf list (no
muxer added more than one bsf for the same stream), so your commit
message needs to be updated.

- Andreas
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to