After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 511476 - Missing codec inside gstffmpegcodecmap.c
Missing codec inside gstffmpegcodecmap.c
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-libav
git master
Other Linux
: Normal normal
: 0.10.4
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2008-01-23 08:59 UTC by Laurent Glayal
Modified: 2008-01-25 11:40 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Laurent Glayal 2008-01-23 08:59:52 UTC
Hi,
3gp format can contains H263-1998/H263-2000, shoudn't CODEC_ID_H263P be added
to 

gstffmpegcodecmap.c:1895

  } else if ((!strcmp (format_name, "3gp") || !strcmp (format_name, "3g2"))) {
    static enum CodecID tgp_video_list[] = {
      CODEC_ID_MPEG4, CODEC_ID_H263, CODEC_ID_H264,
      CODEC_ID_NONE
    };
    static enum CodecID tgp_audio_list[] = {
      CODEC_ID_AMR_NB, CODEC_ID_AMR_WB,
      CODEC_ID_AAC,
      CODEC_ID_NONE
    };

Regards.
Comment 1 Wim Taymans 2008-01-25 11:40:03 UTC
        * ext/ffmpeg/gstffmpegcodecmap.c:
        (gst_ffmpeg_formatid_get_codecids):
        Add H263+ to valid 3GP muxing formats. Fixes #511476.