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 421068 - ffenc_h263p -- missing options
ffenc_h263p -- missing options
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-libav
git master
Other Linux
: Normal enhancement
: 0.10.4
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2007-03-21 15:22 UTC by Laurent Glayal
Modified: 2008-02-13 20:18 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Laurent Glayal 2007-03-21 15:22:23 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.
Comment 1 Wim Taymans 2008-01-22 13:54:35 UTC
        * 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.