summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-04-15 21:56:00 +0200
committerEdward Hervey <bilboed@bilboed.com>2009-04-15 21:56:00 +0200
commit9b8a99761a2352d820f3fec0ec8c9c594f7e6167 (patch)
tree15be54276723bc4e8e831f6e8516bd9208c23de2
parent2b25dbe12ee80ddb5c62ebdcf722c8e3fdb3831e (diff)
Disable more fake codecs (raw audio).
-rw-r--r--ext/ffmpeg/gstffmpegdec.c2
-rw-r--r--ext/ffmpeg/gstffmpegenc.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/ffmpeg/gstffmpegdec.c b/ext/ffmpeg/gstffmpegdec.c
index 82125ed..3ad9f19 100644
--- a/ext/ffmpeg/gstffmpegdec.c
+++ b/ext/ffmpeg/gstffmpegdec.c
@@ -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;
}
diff --git a/ext/ffmpeg/gstffmpegenc.c b/ext/ffmpeg/gstffmpegenc.c
index 8b36334..2d67d39 100644
--- a/ext/ffmpeg/gstffmpegenc.c
+++ b/ext/ffmpeg/gstffmpegenc.c
@@ -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;
}