Commit 7633297d authored by aurel's avatar aurel

matroskadec: fail cleanly when the required compression lib is not compiled in


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14870 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9c89c03b
...@@ -919,6 +919,8 @@ static int matroska_decode_buffer(uint8_t** buf, int* buf_size, ...@@ -919,6 +919,8 @@ static int matroska_decode_buffer(uint8_t** buf, int* buf_size,
break; break;
} }
#endif #endif
default:
return -1;
} }
*buf = pkt_data; *buf = pkt_data;
......
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