summaryrefslogtreecommitdiff
path: root/libavformat/sbcdec.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/sbcdec.c')
-rw-r--r--libavformat/sbcdec.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/sbcdec.c b/libavformat/sbcdec.c
index 4de29b37c5..c917743fa1 100644
--- a/libavformat/sbcdec.c
+++ b/libavformat/sbcdec.c
@@ -22,7 +22,6 @@
#include "avformat.h"
#include "rawdec.h"
-FF_RAW_DEMUXER_CLASS(sbc)
const AVInputFormat ff_sbc_demuxer = {
.name = "sbc",
.long_name = NULL_IF_CONFIG_SMALL("raw SBC (low-complexity subband codec)"),
@@ -32,5 +31,5 @@ const AVInputFormat ff_sbc_demuxer = {
.read_packet = ff_raw_read_partial_packet,
.flags = AVFMT_GENERIC_INDEX,
.priv_data_size = sizeof(FFRawDemuxerContext),
- .priv_class = &sbc_demuxer_class,
+ .priv_class = &ff_raw_demuxer_class,
};