diff options
author | Luca Abeni <lucabe72@email.it> | 2007-11-22 16:10:02 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2007-11-22 16:10:02 +0000 |
commit | c721d803cbbaa4e5f35693b3c60f6d17c6434916 (patch) | |
tree | da952683212c132d54d3c6a44598d7a90acf22e1 /ffplay.c | |
parent | 489b0d4d9897676877f598a74902237f9d830f79 (diff) | |
download | ffmpeg-c721d803cbbaa4e5f35693b3c60f6d17c6434916.tar.gz |
Introduce libavdevice
Originally committed as revision 11077 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -22,6 +22,7 @@ #include <math.h> #include <limits.h> #include "avformat.h" +#include "avdevice.h" #include "rtsp.h" #include "swscale.h" #include "avstring.h" @@ -2517,6 +2518,8 @@ int main(int argc, char **argv) int flags; /* register all codecs, demux and protocols */ + avcodec_register_all(); + avdevice_register_all(); av_register_all(); show_banner(program_name, program_birth_year); |