summaryrefslogtreecommitdiff
path: root/ffmpeg/libavcodec/mpc8.c
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2013-12-29 12:19:38 +0000
committerTim Redfern <tim@eclectronics.org>2013-12-29 12:19:38 +0000
commitf7813a5324be39d13ab536c245d15dfc602a7849 (patch)
treefad99148b88823d34a5df2f0a25881a002eb291b /ffmpeg/libavcodec/mpc8.c
parentb7a5a477b8ff4d4e3028b9dfb9a9df0a41463f92 (diff)
basic type mechanism working
Diffstat (limited to 'ffmpeg/libavcodec/mpc8.c')
-rw-r--r--ffmpeg/libavcodec/mpc8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg/libavcodec/mpc8.c b/ffmpeg/libavcodec/mpc8.c
index 4d6ca89..2f58805 100644
--- a/ffmpeg/libavcodec/mpc8.c
+++ b/ffmpeg/libavcodec/mpc8.c
@@ -435,6 +435,7 @@ static av_cold void mpc8_decode_flush(AVCodecContext *avctx)
AVCodec ff_mpc8_decoder = {
.name = "mpc8",
+ .long_name = NULL_IF_CONFIG_SMALL("Musepack SV8"),
.type = AVMEDIA_TYPE_AUDIO,
.id = AV_CODEC_ID_MUSEPACK8,
.priv_data_size = sizeof(MPCContext),
@@ -442,7 +443,6 @@ AVCodec ff_mpc8_decoder = {
.decode = mpc8_decode_frame,
.flush = mpc8_decode_flush,
.capabilities = CODEC_CAP_DR1,
- .long_name = NULL_IF_CONFIG_SMALL("Musepack SV8"),
.sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_S16P,
AV_SAMPLE_FMT_NONE },
};