diff options
author | Marth64 <marth64@proxyid.net> | 2024-04-02 00:24:55 -0500 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2024-04-02 20:09:05 +0200 |
commit | 536f0239c0898707a82759260025f67ea151d175 (patch) | |
tree | 360e5961cbca65f0fc65f6820c48d2beeb0e9978 | |
parent | 15406f83772eefe4a0eddfc75f8b440f12b3005a (diff) | |
download | ffmpeg-536f0239c0898707a82759260025f67ea151d175.tar.gz |
avformat/rcwtenc: don't assume .bin extension
Signed-off-by: Marth64 <marth64@proxyid.net>
-rw-r--r-- | libavformat/rcwtenc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/rcwtenc.c b/libavformat/rcwtenc.c index f2459ef1d3..ed613d45f5 100644 --- a/libavformat/rcwtenc.c +++ b/libavformat/rcwtenc.c @@ -159,7 +159,6 @@ static int rcwt_write_trailer(AVFormatContext *avf) const FFOutputFormat ff_rcwt_muxer = { .p.name = "rcwt", .p.long_name = NULL_IF_CONFIG_SMALL("RCWT (Raw Captions With Time)"), - .p.extensions = "bin", .p.flags = AVFMT_GLOBALHEADER | AVFMT_VARIABLE_FPS | AVFMT_TS_NONSTRICT, .p.video_codec = AV_CODEC_ID_NONE, .p.audio_codec = AV_CODEC_ID_NONE, |