mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
avviddec: remove cdgraphics element
It was never usable as we don't have a parser and we now have 'cdgdec' in gst-plugins-rs.
This commit is contained in:
parent
0bf5b537d6
commit
2e59973cca
1 changed files with 3 additions and 1 deletions
|
@ -2403,6 +2403,7 @@ gst_ffmpegviddec_register (GstPlugin * plugin)
|
|||
/* MP1 : Use MP3 for decoding */
|
||||
/* MP2 : Use MP3 for decoding */
|
||||
/* Theora: Use libtheora based theoradec */
|
||||
/* CDG: use cdgdec */
|
||||
if (!strcmp (in_plugin->name, "theora") ||
|
||||
!strcmp (in_plugin->name, "mpeg1video") ||
|
||||
strstr (in_plugin->name, "crystalhd") != NULL ||
|
||||
|
@ -2410,7 +2411,8 @@ gst_ffmpegviddec_register (GstPlugin * plugin)
|
|||
!strcmp (in_plugin->name, "srt") ||
|
||||
!strcmp (in_plugin->name, "pgssub") ||
|
||||
!strcmp (in_plugin->name, "dvdsub") ||
|
||||
!strcmp (in_plugin->name, "dvbsub")) {
|
||||
!strcmp (in_plugin->name, "dvbsub") ||
|
||||
!strcmp (in_plugin->name, "cdgraphics")) {
|
||||
GST_LOG ("Ignoring decoder %s", in_plugin->name);
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue