ext/divx/gstdivxenc.c: Use explicit caps - fix capsnego.
Original commit message from CVS: 2004-01-09 Ronald Bultje <rbultje@ronald.bitfreak.net> * ext/divx/gstdivxenc.c: (gst_divxenc_init): Use explicit caps - fix capsnego. * ext/xvid/gstxviddec.c: * ext/xvid/gstxvidenc.c: Remove macro-inside-macro which caused compile errors. * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header): Error out if it's not a RIFF file. Else we error out without gst_element_error() which is not good...
This commit is contained in:
parent
4971038ed9
commit
c9cbb0299c
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
|||||||
|
2004-01-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
||||||
|
* ext/divx/gstdivxenc.c: (gst_divxenc_init):
|
||||||
|
Use explicit caps - fix capsnego.
|
||||||
|
* ext/xvid/gstxviddec.c:
|
||||||
|
* ext/xvid/gstxvidenc.c:
|
||||||
|
Remove macro-inside-macro which caused compile errors.
|
||||||
|
* gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
|
||||||
|
Error out if it's not a RIFF file. Else we error out without
|
||||||
|
gst_element_error() which is not good...
|
||||||
|
|
||||||
2004-01-08 David Schleef <ds@schleef.org>
|
2004-01-08 David Schleef <ds@schleef.org>
|
||||||
|
|
||||||
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
|
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
|
||||||
|
@ -845,7 +845,8 @@ gst_riff_read_header (GstRiffRead *riff,
|
|||||||
if (!gst_riff_peek_head (riff, &tag, &length, NULL))
|
if (!gst_riff_peek_head (riff, &tag, &length, NULL))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
if (tag != GST_RIFF_TAG_RIFF) {
|
if (tag != GST_RIFF_TAG_RIFF) {
|
||||||
GST_WARNING ("Not a RIFF file");
|
gst_element_error (GST_ELEMENT (riff),
|
||||||
|
"Not a RIFF file");
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
gst_bytestream_flush_fast (riff->bs, 8);
|
gst_bytestream_flush_fast (riff->bs, 8);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user