mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 11:32:38 +00:00
Disable more fake codecs (raw audio).
This commit is contained in:
parent
2b25dbe12e
commit
9b8a99761a
2 changed files with 2 additions and 2 deletions
|
@ -2576,7 +2576,7 @@ gst_ffmpegdec_register (GstPlugin * plugin)
|
||||||
/* no quasi-codecs, please */
|
/* no quasi-codecs, please */
|
||||||
if (in_plugin->id == CODEC_ID_RAWVIDEO ||
|
if (in_plugin->id == CODEC_ID_RAWVIDEO ||
|
||||||
(in_plugin->id >= CODEC_ID_PCM_S16LE &&
|
(in_plugin->id >= CODEC_ID_PCM_S16LE &&
|
||||||
in_plugin->id <= CODEC_ID_PCM_S24DAUD)) {
|
in_plugin->id <= CODEC_ID_PCM_F64LE)) {
|
||||||
goto next;
|
goto next;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1040,7 +1040,7 @@ gst_ffmpegenc_register (GstPlugin * plugin)
|
||||||
if (in_plugin->id == CODEC_ID_RAWVIDEO ||
|
if (in_plugin->id == CODEC_ID_RAWVIDEO ||
|
||||||
in_plugin->id == CODEC_ID_ZLIB ||
|
in_plugin->id == CODEC_ID_ZLIB ||
|
||||||
(in_plugin->id >= CODEC_ID_PCM_S16LE &&
|
(in_plugin->id >= CODEC_ID_PCM_S16LE &&
|
||||||
in_plugin->id <= CODEC_ID_PCM_S24DAUD)) {
|
in_plugin->id <= CODEC_ID_PCM_F64LE)) {
|
||||||
goto next;
|
goto next;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue