Commit 7ed9abf7 authored by Paul B Mahol's avatar Paul B Mahol Committed by Michael Niedermayer

sonic: mark as experimental

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 229e4c13
...@@ -955,7 +955,7 @@ AVCodec ff_sonic_decoder = { ...@@ -955,7 +955,7 @@ AVCodec ff_sonic_decoder = {
.init = sonic_decode_init, .init = sonic_decode_init,
.close = sonic_decode_close, .close = sonic_decode_close,
.decode = sonic_decode_frame, .decode = sonic_decode_frame,
.capabilities = CODEC_CAP_DR1, .capabilities = CODEC_CAP_DR1 | CODEC_CAP_EXPERIMENTAL,
.long_name = NULL_IF_CONFIG_SMALL("Sonic"), .long_name = NULL_IF_CONFIG_SMALL("Sonic"),
}; };
#endif /* CONFIG_SONIC_DECODER */ #endif /* CONFIG_SONIC_DECODER */
...@@ -968,6 +968,7 @@ AVCodec ff_sonic_encoder = { ...@@ -968,6 +968,7 @@ AVCodec ff_sonic_encoder = {
.priv_data_size = sizeof(SonicContext), .priv_data_size = sizeof(SonicContext),
.init = sonic_encode_init, .init = sonic_encode_init,
.encode = sonic_encode_frame, .encode = sonic_encode_frame,
.capabilities = CODEC_CAP_EXPERIMENTAL,
.close = sonic_encode_close, .close = sonic_encode_close,
.long_name = NULL_IF_CONFIG_SMALL("Sonic"), .long_name = NULL_IF_CONFIG_SMALL("Sonic"),
}; };
...@@ -981,6 +982,7 @@ AVCodec ff_sonic_ls_encoder = { ...@@ -981,6 +982,7 @@ AVCodec ff_sonic_ls_encoder = {
.priv_data_size = sizeof(SonicContext), .priv_data_size = sizeof(SonicContext),
.init = sonic_encode_init, .init = sonic_encode_init,
.encode = sonic_encode_frame, .encode = sonic_encode_frame,
.capabilities = CODEC_CAP_EXPERIMENTAL,
.close = sonic_encode_close, .close = sonic_encode_close,
.long_name = NULL_IF_CONFIG_SMALL("Sonic lossless"), .long_name = NULL_IF_CONFIG_SMALL("Sonic lossless"),
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment