diff options
author | Mark Thompson <sw@jkqxz.net> | 2018-02-07 19:36:57 +0000 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2018-02-09 21:38:42 +0000 |
commit | 10bcc41bb40ba479bfc5ad29b1650a6b335437a8 (patch) | |
tree | 69a6e60a893240e30d840d1468670e8e987113fa /doc/examples/encode_audio.c | |
parent | c69054fa24f5125eea3c817e8a76fe6422ea165d (diff) | |
download | ffmpeg-10bcc41bb40ba479bfc5ad29b1650a6b335437a8.tar.gz |
examples: Don't call deprecated functions which don't do anything
Diffstat (limited to 'doc/examples/encode_audio.c')
-rw-r--r-- | doc/examples/encode_audio.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/doc/examples/encode_audio.c b/doc/examples/encode_audio.c index d1ef105d9d..ab3586be7f 100644 --- a/doc/examples/encode_audio.c +++ b/doc/examples/encode_audio.c @@ -138,9 +138,6 @@ int main(int argc, char **argv) } filename = argv[1]; - /* register all the codecs */ - avcodec_register_all(); - /* find the MP2 encoder */ codec = avcodec_find_encoder(AV_CODEC_ID_MP2); if (!codec) { |