summaryrefslogtreecommitdiff
path: root/libavcodec/s302menc.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-10-28 23:45:26 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-10-28 23:54:28 +0100
commite510171f31b985113d058e4c12f20b723018456c (patch)
tree0ebb30a5ad88862fe263bdf7bcba31e122d3c625 /libavcodec/s302menc.c
parentf0b26bf0f56e3e727e62be1b63d6fc087b319443 (diff)
avcodec: fix old codec ids
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/s302menc.c')
-rw-r--r--libavcodec/s302menc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/s302menc.c b/libavcodec/s302menc.c
index c428d54353..a7e5b1d26b 100644
--- a/libavcodec/s302menc.c
+++ b/libavcodec/s302menc.c
@@ -165,7 +165,7 @@ AVCodec ff_s302m_encoder = {
.name = "s302m",
.long_name = NULL_IF_CONFIG_SMALL("SMPTE 302M"),
.type = AVMEDIA_TYPE_AUDIO,
- .id = CODEC_ID_S302M,
+ .id = AV_CODEC_ID_S302M,
.priv_data_size = sizeof(S302MEncContext),
.init = s302m_encode_init,
.encode2 = s302m_encode2_frame,