mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-13 02:20:07 +01:00
avformat: fix stream_segment muxer build dependencies
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
@@ -1064,6 +1064,7 @@ static const AVOption options[] = {
|
||||
{ NULL },
|
||||
};
|
||||
|
||||
#if CONFIG_SEGMENT_MUXER
|
||||
static const AVClass seg_class = {
|
||||
.class_name = "segment muxer",
|
||||
.item_name = av_default_item_name,
|
||||
@@ -1084,7 +1085,9 @@ AVOutputFormat ff_segment_muxer = {
|
||||
.check_bitstream = seg_check_bitstream,
|
||||
.priv_class = &seg_class,
|
||||
};
|
||||
#endif
|
||||
|
||||
#if CONFIG_STREAM_SEGMENT_MUXER
|
||||
static const AVClass sseg_class = {
|
||||
.class_name = "stream_segment muxer",
|
||||
.item_name = av_default_item_name,
|
||||
@@ -1105,3 +1108,4 @@ AVOutputFormat ff_stream_segment_muxer = {
|
||||
.check_bitstream = seg_check_bitstream,
|
||||
.priv_class = &sseg_class,
|
||||
};
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user