summaryrefslogtreecommitdiff
path: root/libavformat/swfenc.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-01-27 15:06:00 +0100
committerAnton Khirnov <anton@khirnov.net>2023-02-09 15:24:15 +0100
commit59c9dc82f450638a3068deeb1db5c56f6d155752 (patch)
tree936dabca4a3e593553f6e0c8409e530111c99c0c /libavformat/swfenc.c
parentf23ae839fc184c4492e10f371cde5c1b55e51522 (diff)
avformat/avformat: Move AVOutputFormat internals out of public header
This commit does for AVOutputFormat what commit 20f972701806be20a77f808db332d9489343bb78 did for AVCodec: It adds a new type FFOutputFormat, moves all the internals of AVOutputFormat to it and adds a now reduced AVOutputFormat as first member. This does not affect/improve extensibility of both public or private fields for muxers (it is still a mess due to lavd). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavformat/swfenc.c')
-rw-r--r--libavformat/swfenc.c31
1 files changed, 16 insertions, 15 deletions
diff --git a/libavformat/swfenc.c b/libavformat/swfenc.c
index 75b892087f..f9ac69539b 100644
--- a/libavformat/swfenc.c
+++ b/libavformat/swfenc.c
@@ -27,6 +27,7 @@
#include "libavutil/fifo.h"
#include "avformat.h"
#include "flv.h"
+#include "mux.h"
#include "swf.h"
#define AUDIO_FIFO_SIZE 65536
@@ -547,33 +548,33 @@ static void swf_deinit(AVFormatContext *s)
}
#if CONFIG_SWF_MUXER
-const AVOutputFormat ff_swf_muxer = {
- .name = "swf",
- .long_name = NULL_IF_CONFIG_SMALL("SWF (ShockWave Flash)"),
- .mime_type = "application/x-shockwave-flash",
- .extensions = "swf",
+const FFOutputFormat ff_swf_muxer = {
+ .p.name = "swf",
+ .p.long_name = NULL_IF_CONFIG_SMALL("SWF (ShockWave Flash)"),
+ .p.mime_type = "application/x-shockwave-flash",
+ .p.extensions = "swf",
.priv_data_size = sizeof(SWFEncContext),
- .audio_codec = AV_CODEC_ID_MP3,
- .video_codec = AV_CODEC_ID_FLV1,
+ .p.audio_codec = AV_CODEC_ID_MP3,
+ .p.video_codec = AV_CODEC_ID_FLV1,
.write_header = swf_write_header,
.write_packet = swf_write_packet,
.write_trailer = swf_write_trailer,
.deinit = swf_deinit,
- .flags = AVFMT_TS_NONSTRICT,
+ .p.flags = AVFMT_TS_NONSTRICT,
};
#endif
#if CONFIG_AVM2_MUXER
-const AVOutputFormat ff_avm2_muxer = {
- .name = "avm2",
- .long_name = NULL_IF_CONFIG_SMALL("SWF (ShockWave Flash) (AVM2)"),
- .mime_type = "application/x-shockwave-flash",
+const FFOutputFormat ff_avm2_muxer = {
+ .p.name = "avm2",
+ .p.long_name = NULL_IF_CONFIG_SMALL("SWF (ShockWave Flash) (AVM2)"),
+ .p.mime_type = "application/x-shockwave-flash",
.priv_data_size = sizeof(SWFEncContext),
- .audio_codec = AV_CODEC_ID_MP3,
- .video_codec = AV_CODEC_ID_FLV1,
+ .p.audio_codec = AV_CODEC_ID_MP3,
+ .p.video_codec = AV_CODEC_ID_FLV1,
.write_header = swf_write_header,
.write_packet = swf_write_packet,
.write_trailer = swf_write_trailer,
.deinit = swf_deinit,
- .flags = AVFMT_TS_NONSTRICT,
+ .p.flags = AVFMT_TS_NONSTRICT,
};
#endif