From ca57659440fce99d4cac0e647b6e466edd56598c Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Fri, 24 Jan 2014 12:17:40 +0100 Subject: [PATCH] examples/filtering_audio,video: do not call avcodec_register_all() It is implied by av_register_all(). Simplify. --- doc/examples/filtering_audio.c | 1 - doc/examples/filtering_video.c | 1 - 2 files changed, 2 deletions(-) diff --git a/doc/examples/filtering_audio.c b/doc/examples/filtering_audio.c index 1568f60b29..2ceee6af1e 100644 --- a/doc/examples/filtering_audio.c +++ b/doc/examples/filtering_audio.c @@ -210,7 +210,6 @@ int main(int argc, char **argv) exit(1); } - avcodec_register_all(); av_register_all(); avfilter_register_all(); diff --git a/doc/examples/filtering_video.c b/doc/examples/filtering_video.c index 0ac1cd479b..67c8a8bc10 100644 --- a/doc/examples/filtering_video.c +++ b/doc/examples/filtering_video.c @@ -200,7 +200,6 @@ int main(int argc, char **argv) exit(1); } - avcodec_register_all(); av_register_all(); avfilter_register_all();