1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

compile mjpeg parser if requested

Originally committed as revision 8766 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Alex Beregszaszi 2007-04-21 00:36:53 +00:00
parent ddec67e8b1
commit 4ea385bbbc

View File

@ -2626,6 +2626,7 @@ AVCodec ljpeg_encoder = { //FIXME avoid MPV_* lossless jpeg shouldnt need them
};
#endif
#ifdef CONFIG_MJPEG_PARSER
AVCodecParser mjpeg_parser = {
{ CODEC_ID_MJPEG },
sizeof(ParseContext),
@ -2633,6 +2634,7 @@ AVCodecParser mjpeg_parser = {
jpeg_parse,
ff_parse_close,
};
#endif
AVBitStreamFilter mjpega_dump_header_bsf = {
"mjpegadump",