diff options
author | Mike Melanson <mike@multimedia.cx> | 2003-10-14 04:15:53 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2003-10-14 04:15:53 +0000 |
commit | 764ef400159b4f640eda8b22e8c7a20d6649a391 (patch) | |
tree | 2e359b478a7089f81c973e8153ce653ecadb39a8 /libavformat/mpjpeg.c | |
parent | a003ee9a44eca32707eaa049171bc752ba3a9fde (diff) | |
download | ffmpeg-764ef400159b4f640eda8b22e8c7a20d6649a391.tar.gz |
disable encoders where appropriate (patch courtesy of BERO
<bero -at- geocities.co.jp>)
Originally committed as revision 2375 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mpjpeg.c')
-rw-r--r-- | libavformat/mpjpeg.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/mpjpeg.c b/libavformat/mpjpeg.c index ab8166b16a..434e519d50 100644 --- a/libavformat/mpjpeg.c +++ b/libavformat/mpjpeg.c @@ -22,6 +22,7 @@ #define BOUNDARY_TAG "ffserver" +#ifdef CONFIG_ENCODERS static int mpjpeg_write_header(AVFormatContext *s) { uint8_t buf1[256]; @@ -106,3 +107,4 @@ int jpeg_init(void) av_register_output_format(&single_jpeg_format); return 0; } +#endif //CONFIG_ENCODERS |