mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-04 13:32:29 +00:00
ext/faad/gstfaad.c: Sign/unsign mismatch.
Original commit message from CVS: * ext/faad/gstfaad.c: (gst_faad_event): Sign/unsign mismatch. * configure.ac: * gst/qtdemux/qtdemux.c: (gst_qtdemux_class_init), (gst_qtdemux_init), (gst_qtdemux_get_src_query_types), (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event), (plugin_init), (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state), (gst_qtdemux_loop_header), (qtdemux_sink_activate), (qtdemux_sink_activate_pull), (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree), (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps): * gst/qtdemux/qtdemux.h: Half-assed port (hey, it works).
This commit is contained in:
parent
41c277d1b7
commit
634943e381
5 changed files with 328 additions and 330 deletions
16
ChangeLog
16
ChangeLog
|
@ -1,3 +1,19 @@
|
|||
2005-08-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* ext/faad/gstfaad.c: (gst_faad_event):
|
||||
Sign/unsign mismatch.
|
||||
* configure.ac:
|
||||
* gst/qtdemux/qtdemux.c: (gst_qtdemux_class_init),
|
||||
(gst_qtdemux_init), (gst_qtdemux_get_src_query_types),
|
||||
(gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
|
||||
(plugin_init), (gst_qtdemux_handle_sink_event),
|
||||
(gst_qtdemux_change_state), (gst_qtdemux_loop_header),
|
||||
(qtdemux_sink_activate), (qtdemux_sink_activate_pull),
|
||||
(gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
|
||||
(qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
|
||||
* gst/qtdemux/qtdemux.h:
|
||||
Half-assed port (hey, it works).
|
||||
|
||||
2005-08-09 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
|
||||
|
|
|
@ -295,6 +295,7 @@ GST_PLUGINS_ALL="\
|
|||
goom \
|
||||
law \
|
||||
level \
|
||||
qtdemux \
|
||||
realmedia \
|
||||
rtp \
|
||||
rtsp \
|
||||
|
@ -618,6 +619,7 @@ gst/udp/Makefile
|
|||
gst/videobox/Makefile
|
||||
gst/videofilter/Makefile
|
||||
ext/jpeg/Makefile
|
||||
gst/qtdemux/Makefile
|
||||
gst/wavparse/Makefile
|
||||
gst-libs/Makefile
|
||||
gst-libs/gst/Makefile
|
||||
|
|
|
@ -628,7 +628,7 @@ gst_faad_event (GstPad * pad, GstEvent * event)
|
|||
case GST_EVENT_NEWSEGMENT:
|
||||
{
|
||||
GstFormat fmt;
|
||||
guint64 start, end, base;
|
||||
gint64 start, end, base;
|
||||
gdouble rate;
|
||||
|
||||
gst_event_parse_newsegment (event, &rate, &fmt, &start, &end, &base);
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -22,8 +22,6 @@
|
|||
#define __GST_QTDEMUX_H__
|
||||
|
||||
#include <gst/gst.h>
|
||||
#include <gst/bytestream/bytestream.h>
|
||||
#include <gst/getbits/getbits.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
@ -58,8 +56,6 @@ struct _GstQTDemux {
|
|||
int n_video_streams;
|
||||
int n_audio_streams;
|
||||
|
||||
GstByteStream *bs;
|
||||
|
||||
GNode *moov_node;
|
||||
GNode *moov_node_compressed;
|
||||
|
||||
|
@ -68,7 +64,7 @@ struct _GstQTDemux {
|
|||
|
||||
int state;
|
||||
|
||||
int offset;
|
||||
guint64 offset;
|
||||
|
||||
GstTagList *tag_list;
|
||||
|
||||
|
@ -81,6 +77,9 @@ struct _GstQTDemux {
|
|||
|
||||
struct _GstQTDemuxClass {
|
||||
GstElementClass parent_class;
|
||||
|
||||
void (* got_redirect) (GstElement * element,
|
||||
const gchar * new_location);
|
||||
};
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
Loading…
Reference in a new issue