summaryrefslogtreecommitdiff
path: root/ffplay.c
diff options
context:
space:
mode:
authorCyril Russo <stage.nexvision@laposte.net>2010-04-22 08:55:23 +0000
committerCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2010-04-22 08:55:23 +0000
commit9b157b0ccd259f4b9f3f0066e75cb7b5e94ab525 (patch)
tree691fb268a50613081a88d2b27b1af1c178bb1bbf /ffplay.c
parent9d30e0682a792436e1880fd6ce51966d50ec9c2b (diff)
Fix compilation error of ffmpeg and ffplay with --disable-avdevice.
Patch by Cyril Russo, stage D nexvision A laposte net Originally committed as revision 22940 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ffplay.c b/ffplay.c
index d827d4461b..e84e290be7 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -3100,7 +3100,9 @@ int main(int argc, char **argv)
/* register all codecs, demux and protocols */
avcodec_register_all();
+#if CONFIG_AVDEVICE
avdevice_register_all();
+#endif
#if CONFIG_AVFILTER
avfilter_register_all();
#endif