[FFmpeg-cvslog] Merge commit '90265814f993098d79b0a0f40745ecdb403fbf56'
Clément Bœsch
git at videolan.org
Wed Mar 29 14:46:23 EEST 2017
ffmpeg | branch: master | Clément Bœsch <u at pkh.me> | Wed Mar 29 13:45:51 2017 +0200| [dcdd52101f31f696dfe7a919d6fa6879c1b40945] | committer: Clément Bœsch
Merge commit '90265814f993098d79b0a0f40745ecdb403fbf56'
* commit '90265814f993098d79b0a0f40745ecdb403fbf56':
examples/decode_audio: constify the AVCodec instance
Merged-by: Clément Bœsch <u at pkh.me>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dcdd52101f31f696dfe7a919d6fa6879c1b40945
---
doc/examples/decode_audio.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/examples/decode_audio.c b/doc/examples/decode_audio.c
index 738a188..a091cdc 100644
--- a/doc/examples/decode_audio.c
+++ b/doc/examples/decode_audio.c
@@ -41,7 +41,7 @@
int main(int argc, char **argv)
{
const char *outfilename, *filename;
- AVCodec *codec;
+ const AVCodec *codec;
AVCodecContext *c= NULL;
int len;
FILE *f, *outfile;
======================================================================
More information about the ffmpeg-cvslog
mailing list