git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
a8ab0cc
)
nellymoserenc: Declare the supported sample format
author
Martin Storsjö
<martin@martin.st>
Wed, 28 Jul 2010 05:19:42 +0000
(
05:19
+0000)
committer
Martin Storsjö
<martin@martin.st>
Wed, 28 Jul 2010 05:19:42 +0000
(
05:19
+0000)
Originally committed as revision 24560 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/nellymoserenc.c
patch
|
blob
|
history
diff --git
a/libavcodec/nellymoserenc.c
b/libavcodec/nellymoserenc.c
index
85e0173
..
a596926
100644
(file)
--- a/
libavcodec/nellymoserenc.c
+++ b/
libavcodec/nellymoserenc.c
@@
-392,4
+392,5
@@
AVCodec nellymoser_encoder = {
.close = encode_end,
.capabilities = CODEC_CAP_SMALL_LAST_FRAME | CODEC_CAP_DELAY,
.long_name = NULL_IF_CONFIG_SMALL("Nellymoser Asao"),
.close = encode_end,
.capabilities = CODEC_CAP_SMALL_LAST_FRAME | CODEC_CAP_DELAY,
.long_name = NULL_IF_CONFIG_SMALL("Nellymoser Asao"),
+ .sample_fmts = (const enum SampleFormat[]){SAMPLE_FMT_S16,SAMPLE_FMT_NONE},
};
};