Commit 11fde35d authored by Alex Beregszaszi's avatar Alex Beregszaszi

compile rawvideo decoder on request

Originally committed as revision 8767 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 4ea385bb
...@@ -212,6 +212,7 @@ AVCodec rawvideo_encoder = { ...@@ -212,6 +212,7 @@ AVCodec rawvideo_encoder = {
}; };
#endif // CONFIG_RAWVIDEO_ENCODER #endif // CONFIG_RAWVIDEO_ENCODER
#ifdef CONFIG_RAWVIDEO_DECODER
AVCodec rawvideo_decoder = { AVCodec rawvideo_decoder = {
"rawvideo", "rawvideo",
CODEC_TYPE_VIDEO, CODEC_TYPE_VIDEO,
...@@ -222,3 +223,4 @@ AVCodec rawvideo_decoder = { ...@@ -222,3 +223,4 @@ AVCodec rawvideo_decoder = {
raw_close_decoder, raw_close_decoder,
raw_decode, raw_decode,
}; };
#endif // CONFIG_RAWVIDEO_DECODER
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment