summaryrefslogtreecommitdiff
path: root/ffmpeg/libavcodec/roqaudioenc.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/roqaudioenc.c
parentb7a5a477b8ff4d4e3028b9dfb9a9df0a41463f92 (diff)
basic type mechanism working
Diffstat (limited to 'ffmpeg/libavcodec/roqaudioenc.c')
-rw-r--r--ffmpeg/libavcodec/roqaudioenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg/libavcodec/roqaudioenc.c b/ffmpeg/libavcodec/roqaudioenc.c
index b68e3f8..b0b76d0 100644
--- a/ffmpeg/libavcodec/roqaudioenc.c
+++ b/ffmpeg/libavcodec/roqaudioenc.c
@@ -193,6 +193,7 @@ static int roq_dpcm_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
AVCodec ff_roq_dpcm_encoder = {
.name = "roq_dpcm",
+ .long_name = NULL_IF_CONFIG_SMALL("id RoQ DPCM"),
.type = AVMEDIA_TYPE_AUDIO,
.id = AV_CODEC_ID_ROQ_DPCM,
.priv_data_size = sizeof(ROQDPCMContext),
@@ -202,5 +203,4 @@ AVCodec ff_roq_dpcm_encoder = {
.capabilities = CODEC_CAP_DELAY,
.sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S16,
AV_SAMPLE_FMT_NONE },
- .long_name = NULL_IF_CONFIG_SMALL("id RoQ DPCM"),
};