Disable more fake codecs (raw audio).

This commit is contained in:
Edward Hervey 2009-04-15 21:56:00 +02:00
parent 2b25dbe12e
commit 9b8a99761a
2 changed files with 2 additions and 2 deletions

View file

@ -2576,7 +2576,7 @@ gst_ffmpegdec_register (GstPlugin * plugin)
/* no quasi-codecs, please */
if (in_plugin->id == CODEC_ID_RAWVIDEO ||
(in_plugin->id >= CODEC_ID_PCM_S16LE &&
in_plugin->id <= CODEC_ID_PCM_S24DAUD)) {
in_plugin->id <= CODEC_ID_PCM_F64LE)) {
goto next;
}

View file

@ -1040,7 +1040,7 @@ gst_ffmpegenc_register (GstPlugin * plugin)
if (in_plugin->id == CODEC_ID_RAWVIDEO ||
in_plugin->id == CODEC_ID_ZLIB ||
(in_plugin->id >= CODEC_ID_PCM_S16LE &&
in_plugin->id <= CODEC_ID_PCM_S24DAUD)) {
in_plugin->id <= CODEC_ID_PCM_F64LE)) {
goto next;
}