mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
ext/ffmpeg/gstffmpegcodecmap.c: Add x264 to muxer (it was added to template, but I forgot to add h264 caps recognitio...
Original commit message from CVS: * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_codecid): Add x264 to muxer (it was added to template, but I forgot to add h264 caps recognition for some reason).
This commit is contained in:
parent
e24d6984e4
commit
50cfdb7539
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2005-07-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
||||||
|
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_codecid):
|
||||||
|
Add x264 to muxer (it was added to template, but I forgot to add
|
||||||
|
h264 caps recognition for some reason).
|
||||||
|
|
||||||
2005-07-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
2005-07-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
||||||
* ext/ffmpeg/gstffmpegcodecmap.c:
|
* ext/ffmpeg/gstffmpegcodecmap.c:
|
||||||
|
|
|
@ -1841,6 +1841,9 @@ gst_ffmpeg_caps_to_codecid (const GstCaps * caps, AVCodecContext * context)
|
||||||
} else if (!strcmp (mimetype, "audio/x-amrwb")) {
|
} else if (!strcmp (mimetype, "audio/x-amrwb")) {
|
||||||
id = CODEC_ID_AMR_WB;
|
id = CODEC_ID_AMR_WB;
|
||||||
audio = TRUE;
|
audio = TRUE;
|
||||||
|
} else if (!strcmp (mimetype, "video/x-h264")) {
|
||||||
|
id = CODEC_ID_H264;
|
||||||
|
video = TRUE;
|
||||||
} else if (!strncmp (mimetype, "audio/x-gst_ff-", 15) ) {
|
} else if (!strncmp (mimetype, "audio/x-gst_ff-", 15) ) {
|
||||||
gchar ext[16];
|
gchar ext[16];
|
||||||
AVCodec *codec;
|
AVCodec *codec;
|
||||||
|
|
Loading…
Reference in a new issue