mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-16 04:54:12 +00:00
ext/ffmpeg/gstffmpegcodecmap.c (gst_ffmpeg_get_codecid_longname): Fix typo in Indeo-2 codec name
Original commit message from CVS: * ext/ffmpeg/gstffmpegcodecmap.c (gst_ffmpeg_get_codecid_longname): Fix typo in Indeo-2 codec name
This commit is contained in:
parent
efaa80f6f7
commit
c9aec911c2
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-03-17 Johan Dahlin <jdahlin@async.com.br>
|
||||
|
||||
* ext/ffmpeg/gstffmpegcodecmap.c (gst_ffmpeg_get_codecid_longname):
|
||||
Fix typo in Indeo-2 codec name
|
||||
|
||||
2007-03-02 Edward Hervey <edward@fluendo.com>
|
||||
|
||||
* ext/ffmpeg/gstffmpegcfg.c: (gst_ffmpeg_cfg_init):
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 9a56e28fc15440eb6852411321c46312e1d1bb73
|
||||
Subproject commit dec151d15512e4cca2dcdd36d9c6c4a2185760ec
|
|
@ -2527,7 +2527,7 @@ gst_ffmpeg_get_codecid_longname (enum CodecID codec_id)
|
|||
name = "Indeo-3 video";
|
||||
break;
|
||||
case CODEC_ID_INDEO2:
|
||||
name = "Indeo=2 video";
|
||||
name = "Indeo-2 video";
|
||||
break;
|
||||
case CODEC_ID_VP3:
|
||||
name = "VP3 video";
|
||||
|
|
Loading…
Reference in a new issue