diff options
author | Edward Hervey <bilboed@bilboed.com> | 2006-10-24 09:27:16 +0000 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2006-10-24 09:27:16 +0000 |
commit | 5ace343ac9200c7bd4c59dc30d7b39c5a4e014db (patch) | |
tree | 7333d7e351dd381aacc9e81653d0c8e57155f388 /ext/ffmpeg/gstffmpegcfg.c | |
parent | b4f0d0c92956a6700dfb2a7ccb5cd3d13a22c6e8 (diff) |
ext/ffmpeg/gstffmpegcfg.c: FLV is in fact h263 and can take the same parameters as other mpeg derivatives.
Original commit message from CVS:
* ext/ffmpeg/gstffmpegcfg.c:
FLV is in fact h263 and can take the same parameters as other mpeg
derivatives.
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
(gst_ffmpeg_caps_with_codecid):
Add pixel format to video/x-dv,systemstream=False
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init):
Use EPZS (Enhanced Predictive Zonal Search) as the default motion
estimation method, since it's the best quality to speed compromise.
Diffstat (limited to 'ext/ffmpeg/gstffmpegcfg.c')
-rw-r--r-- | ext/ffmpeg/gstffmpegcfg.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/ffmpeg/gstffmpegcfg.c b/ext/ffmpeg/gstffmpegcfg.c index 2280c5e..dd9e80c 100644 --- a/ext/ffmpeg/gstffmpegcfg.c +++ b/ext/ffmpeg/gstffmpegcfg.c @@ -353,6 +353,7 @@ static gint mpeg4[] = { CODEC_ID_MSMPEG4V1, CODEC_ID_MSMPEG4V2, CODEC_ID_MSMPEG4V3, + CODEC_ID_FLV1, CODEC_ID_NONE }; |