GNOME Bugzilla – Bug 421068
ffenc_h263p -- missing options
Last modified: 2008-02-13 20:18:09 UTC
Hi, most of flags and options used for ffmpeg mpeg4 encoding are also usable for H263+ encoding (umv, aiv, aic...) . Shouldn't the CODEC_ID_H263P added to the structure static gint mpeg[] = { CODEC_ID_MPEG4, CODEC_ID_MSMPEG4V1, CODEC_ID_MSMPEG4V2, CODEC_ID_MSMPEG4V3, CODEC_ID_MPEG1VIDEO, CODEC_ID_MPEG2VIDEO, CODEC_ID_FLV1, CODEC_ID_NONE }; in file gst-ffmpeg/ext/ffmpeg/gstffmpegcfg.c ? Somes Flags could also be added but are more specific to H263+ : CODEC_FLAG_H263P_SLICE_STRUCT CODEC_FLAG_H263P_AIV Regards.
* ext/ffmpeg/gstffmpegcfg.c: (gst_ffmpeg_flags_get_type): Add h263 to the list of codecs using the mpeg flags and options. Add some more H263 specific flags. Fixes #421068.