Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/cafenc.c')
-rw-r--r--libavformat/cafenc.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/libavformat/cafenc.c b/libavformat/cafenc.c
index 0dd4b349ca..699c67df7a 100644
--- a/libavformat/cafenc.c
+++ b/libavformat/cafenc.c
@@ -248,15 +248,15 @@ static int caf_write_trailer(AVFormatContext *s)
}
AVOutputFormat ff_caf_muxer = {
- "caf",
- NULL_IF_CONFIG_SMALL("Apple Core Audio Format"),
- "audio/x-caf",
- "caf",
- sizeof(CAFContext),
- CODEC_ID_PCM_S16BE,
- CODEC_ID_NONE,
- caf_write_header,
- caf_write_packet,
- caf_write_trailer,
+ .name = "caf",
+ .long_name = NULL_IF_CONFIG_SMALL("Apple Core Audio Format"),
+ .mime_type = "audio/x-caf",
+ .extensions = "caf",
+ .priv_data_size = sizeof(CAFContext),
+ .audio_codec = CODEC_ID_PCM_S16BE,
+ .video_codec = CODEC_ID_NONE,
+ .write_header = caf_write_header,
+ .write_packet = caf_write_packet,
+ .write_trailer = caf_write_trailer,
.codec_tag= (const AVCodecTag* const []){ff_codec_caf_tags, 0},
};