@@ -1,8 +1,12 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include "config.h"
#include "libavutil/avassert.h"
#include "libavdevice/avdevice.h"
+#if CONFIG_AVRADIO
+#include "libavradio/avradio.h"
+#endif
#include "libavfilter/avfilter.h"
#include "libavfilter/buffersink.h"
#include "libavformat/avformat.h"
@@ -64,6 +68,9 @@ int main(int argc, char **argv)
nb_out_dev = argc - 2;
avdevice_register_all();
+#if CONFIG_AVRADIO
+ avradio_register_all();
+#endif
/* Create input graph */
if (!(in_graph = avfilter_graph_alloc())) {
This avoids keeping diffs to tools in the libavradio repository Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> --- tools/uncoded_frame.c | 7 +++++++ 1 file changed, 7 insertions(+)