lavc: AV-prefix all codec capabilities
Express bitfields more simply. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
This commit is contained in:
@@ -126,7 +126,7 @@ AVCodec ff_libvpx_vp8_decoder = {
|
||||
.init = vp8_init,
|
||||
.close = vp8_free,
|
||||
.decode = vp8_decode,
|
||||
.capabilities = CODEC_CAP_AUTO_THREADS | CODEC_CAP_DR1,
|
||||
.capabilities = AV_CODEC_CAP_AUTO_THREADS | AV_CODEC_CAP_DR1,
|
||||
};
|
||||
#endif /* CONFIG_LIBVPX_VP8_DECODER */
|
||||
|
||||
@@ -145,6 +145,6 @@ AVCodec ff_libvpx_vp9_decoder = {
|
||||
.init = vp9_init,
|
||||
.close = vp8_free,
|
||||
.decode = vp8_decode,
|
||||
.capabilities = CODEC_CAP_AUTO_THREADS,
|
||||
.capabilities = AV_CODEC_CAP_AUTO_THREADS,
|
||||
};
|
||||
#endif /* CONFIG_LIBVPX_VP9_DECODER */
|
||||
|
Reference in New Issue
Block a user