mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 21:01:14 +00:00
ada045509e
Original commit message from CVS: * ext/ffmpeg/gstffmpeg.h: * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps), (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpeg_formatid_get_codecids), (gst_ffmpeg_caps_to_codecid), (gst_ffmpeg_get_codecid_longname), (gst_ffmpeg_img_convert): * ext/ffmpeg/gstffmpegcodecmap.h: * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_negotiate), (gst_ffmpegdec_frame), (gst_ffmpegdec_chain), (gst_ffmpegdec_register): * ext/ffmpeg/gstffmpegdeinterlace.c: (gst_ffmpegdeinterlace_getcaps), (gst_ffmpegdeinterlace_pad_link): * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_src_event), (gst_ffmpegdemux_src_format_list), (gst_ffmpegdemux_src_query), (gst_ffmpegdemux_src_convert), (gst_ffmpegdemux_add), (gst_ffmpegdemux_register): * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_getcaps), (gst_ffmpegenc_link), (gst_ffmpegenc_chain_video), (gst_ffmpegenc_chain_audio): * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_request_new_pad), (gst_ffmpegmux_connect), (gst_ffmpegmux_loop), (gst_ffmpegmux_register): * ext/ffmpeg/gstffmpegprotocol.c: (gst_ffmpegdata_write): * ext/ffmpeg/gstffmpegscale.c: (gst_ffmpegscale_pad_link): * ext/libpostproc/gstpostproc.c: (gst_postproc_chain): Update to ffmpeg snapshot of Jul 20 2005 4:00 PM GMT. Mostly some added codecs, some API changes, etc. Also adds a VOB muxer for MPEG-2 video and adds h264 to .mp4 muxing.
391 lines
9.6 KiB
C
391 lines
9.6 KiB
C
/* GStreamer
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#ifdef HAVE_FFMPEG_UNINSTALLED
|
|
#include <avformat.h>
|
|
#else
|
|
#include <ffmpeg/avformat.h>
|
|
#endif
|
|
|
|
#include <gst/gst.h>
|
|
#include <gst/bytestream/bytestream.h>
|
|
|
|
#include "gstffmpeg.h"
|
|
|
|
typedef struct _GstProtocolInfo GstProtocolInfo;
|
|
|
|
struct _GstProtocolInfo
|
|
{
|
|
GstPad *pad;
|
|
|
|
GstByteStream *bs;
|
|
gboolean eos;
|
|
gboolean set_streamheader;
|
|
};
|
|
|
|
static int
|
|
gst_ffmpegdata_open (URLContext * h, const char *filename, int flags)
|
|
{
|
|
GstProtocolInfo *info;
|
|
GstPad *pad;
|
|
|
|
GST_LOG ("Opening %s", filename);
|
|
|
|
info = g_new0 (GstProtocolInfo, 1);
|
|
|
|
info->set_streamheader = flags & GST_FFMPEG_URL_STREAMHEADER;
|
|
flags &= ~GST_FFMPEG_URL_STREAMHEADER;
|
|
h->flags &= ~GST_FFMPEG_URL_STREAMHEADER;
|
|
|
|
/* we don't support R/W together */
|
|
if (flags != URL_RDONLY && flags != URL_WRONLY) {
|
|
g_warning ("Only read-only or write-only are supported");
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (sscanf (&filename[12], "%p", &pad) != 1) {
|
|
g_warning ("could not decode pad from %s", filename);
|
|
return -EIO;
|
|
}
|
|
|
|
/* make sure we're a pad and that we're of the right type */
|
|
g_return_val_if_fail (GST_IS_PAD (pad), -EINVAL);
|
|
|
|
switch (flags) {
|
|
case URL_RDONLY:
|
|
g_return_val_if_fail (GST_PAD_IS_SINK (pad), -EINVAL);
|
|
info->bs = gst_bytestream_new (pad);
|
|
break;
|
|
case URL_WRONLY:
|
|
g_return_val_if_fail (GST_PAD_IS_SRC (pad), -EINVAL);
|
|
info->bs = NULL;
|
|
break;
|
|
}
|
|
|
|
info->eos = FALSE;
|
|
info->pad = pad;
|
|
|
|
h->priv_data = (void *) info;
|
|
h->is_streamed = FALSE;
|
|
h->max_packet_size = 0;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
gst_ffmpegdata_peek (URLContext * h, unsigned char *buf, int size)
|
|
{
|
|
GstByteStream *bs;
|
|
guint32 total, request;
|
|
guint8 *data;
|
|
GstProtocolInfo *info;
|
|
gboolean have_event, will_get_eos;
|
|
|
|
info = (GstProtocolInfo *) h->priv_data;
|
|
|
|
g_return_val_if_fail (h->flags == URL_RDONLY, AVERROR_IO);
|
|
|
|
bs = info->bs;
|
|
|
|
if (info->eos)
|
|
return 0;
|
|
|
|
do {
|
|
have_event = FALSE, will_get_eos = FALSE;
|
|
|
|
/* prevent EOS */
|
|
if (gst_bytestream_tell (bs) + size >= gst_bytestream_length (bs)) {
|
|
request = (int) (gst_bytestream_length (bs) - gst_bytestream_tell (bs));
|
|
will_get_eos = TRUE;
|
|
} else {
|
|
request = size;
|
|
}
|
|
|
|
if (request > 0) {
|
|
total = gst_bytestream_peek_bytes (bs, &data, request);
|
|
} else {
|
|
total = 0;
|
|
}
|
|
|
|
if (total < request) {
|
|
GstEvent *event;
|
|
guint32 remaining;
|
|
|
|
gst_bytestream_get_status (bs, &remaining, &event);
|
|
|
|
if (!event) {
|
|
g_warning ("gstffmpegprotocol: no bytestream event");
|
|
return total;
|
|
}
|
|
GST_LOG ("Reading (req %d, got %d) gave event of type %d",
|
|
request, total, GST_EVENT_TYPE (event));
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
case GST_EVENT_DISCONTINUOUS:
|
|
gst_event_unref (event);
|
|
break;
|
|
case GST_EVENT_EOS:
|
|
g_warning ("Unexpected/unwanted eos in data function");
|
|
info->eos = TRUE;
|
|
have_event = TRUE;
|
|
gst_event_unref (event);
|
|
break;
|
|
case GST_EVENT_FLUSH:
|
|
gst_event_unref (event);
|
|
break;
|
|
case GST_EVENT_INTERRUPT:
|
|
have_event = TRUE;
|
|
gst_event_unref (event);
|
|
break;
|
|
default:
|
|
gst_pad_event_default (info->pad, event);
|
|
break;
|
|
}
|
|
} else {
|
|
GST_DEBUG ("got data (%d bytes)", request);
|
|
if (will_get_eos)
|
|
info->eos = TRUE;
|
|
}
|
|
} while ((!info->eos && total != request) && !have_event);
|
|
|
|
memcpy (buf, data, total);
|
|
|
|
return total;
|
|
}
|
|
|
|
static int
|
|
gst_ffmpegdata_read (URLContext * h, unsigned char *buf, int size)
|
|
{
|
|
gint res;
|
|
GstByteStream *bs;
|
|
GstProtocolInfo *info;
|
|
|
|
GST_DEBUG ("Reading %d bytes of data", size);
|
|
|
|
info = (GstProtocolInfo *) h->priv_data;
|
|
bs = info->bs;
|
|
res = gst_ffmpegdata_peek (h, buf, size);
|
|
if (res > 0) {
|
|
gst_bytestream_flush_fast (bs, res);
|
|
}
|
|
|
|
GST_DEBUG ("Returning %d bytes", res);
|
|
|
|
return res;
|
|
}
|
|
|
|
static int
|
|
gst_ffmpegdata_write (URLContext * h, unsigned char *buf, int size)
|
|
{
|
|
GstProtocolInfo *info;
|
|
GstBuffer *outbuf;
|
|
|
|
GST_DEBUG ("Writing %d bytes", size);
|
|
info = (GstProtocolInfo *) h->priv_data;
|
|
|
|
g_return_val_if_fail (h->flags != URL_RDONLY, -EIO);
|
|
|
|
/* create buffer and push data further */
|
|
outbuf = gst_buffer_new_and_alloc (size);
|
|
GST_BUFFER_SIZE (outbuf) = size;
|
|
memcpy (GST_BUFFER_DATA (outbuf), buf, size);
|
|
|
|
if (info->set_streamheader) {
|
|
GstCaps *caps = gst_pad_get_caps (info->pad);
|
|
GstStructure *structure = gst_caps_get_structure (caps, 0);
|
|
GValue list = { 0 }, value = { 0 };
|
|
|
|
GST_DEBUG ("Using buffer (size %i) as streamheader", size);
|
|
|
|
g_value_init (&list, GST_TYPE_FIXED_LIST);
|
|
|
|
GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_IN_CAPS);
|
|
|
|
g_value_init (&value, GST_TYPE_BUFFER);
|
|
g_value_set_boxed (&value, outbuf);
|
|
gst_value_list_append_value (&list, &value);
|
|
g_value_unset (&value);
|
|
|
|
gst_structure_set_value (structure, "streamheader", &list);
|
|
g_value_unset (&list);
|
|
|
|
gst_pad_try_set_caps (info->pad, caps);
|
|
|
|
/* only set the first buffer */
|
|
info->set_streamheader = FALSE;
|
|
}
|
|
|
|
gst_pad_push (info->pad, GST_DATA (outbuf));
|
|
|
|
return size;
|
|
}
|
|
|
|
static offset_t
|
|
gst_ffmpegdata_seek (URLContext * h, offset_t pos, int whence)
|
|
{
|
|
GstSeekType seek_type = 0;
|
|
GstProtocolInfo *info;
|
|
guint64 newpos;
|
|
|
|
GST_DEBUG ("Seeking to %" G_GINT64_FORMAT ", whence=%d", pos, whence);
|
|
|
|
info = (GstProtocolInfo *) h->priv_data;
|
|
|
|
if (h->flags == URL_RDONLY) {
|
|
/* get data (typefind hack) */
|
|
if (gst_bytestream_tell (info->bs) != gst_bytestream_length (info->bs)) {
|
|
gchar buf;
|
|
gst_ffmpegdata_peek (h, &buf, 1);
|
|
}
|
|
|
|
/* hack in ffmpeg to get filesize... */
|
|
if (whence == SEEK_END && pos == -1)
|
|
return gst_bytestream_length (info->bs) - 1;
|
|
else if (whence == SEEK_END && pos == 0)
|
|
return gst_bytestream_length (info->bs);
|
|
/* another hack to get the current position... */
|
|
else if (whence == SEEK_CUR && pos == 0)
|
|
return gst_bytestream_tell (info->bs);
|
|
}
|
|
|
|
switch (whence) {
|
|
case SEEK_SET:
|
|
seek_type = GST_SEEK_METHOD_SET;
|
|
break;
|
|
case SEEK_CUR:
|
|
seek_type = GST_SEEK_METHOD_CUR;
|
|
break;
|
|
case SEEK_END:
|
|
seek_type = GST_SEEK_METHOD_END;
|
|
break;
|
|
default:
|
|
g_assert (0);
|
|
break;
|
|
}
|
|
|
|
switch (h->flags) {
|
|
case URL_RDONLY: {
|
|
GstEvent *event;
|
|
guint8 *data;
|
|
guint32 remaining;
|
|
|
|
/* handle discont */
|
|
gst_bytestream_seek (info->bs, pos, seek_type);
|
|
|
|
/* prevent eos */
|
|
if (gst_bytestream_tell (info->bs) ==
|
|
gst_bytestream_length (info->bs)) {
|
|
info->eos = TRUE;
|
|
break;
|
|
}
|
|
info->eos = FALSE;
|
|
while (gst_bytestream_peek_bytes (info->bs, &data, 1) == 0) {
|
|
gst_bytestream_get_status (info->bs, &remaining, &event);
|
|
|
|
if (!event) {
|
|
g_warning ("no data, no event - panic!");
|
|
return -1;
|
|
}
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
case GST_EVENT_EOS:
|
|
g_warning ("unexpected/unwanted EOS event after seek");
|
|
info->eos = TRUE;
|
|
gst_event_unref (event);
|
|
return -1;
|
|
case GST_EVENT_DISCONTINUOUS:
|
|
gst_event_unref (event); /* we expect this */
|
|
break;
|
|
case GST_EVENT_FLUSH:
|
|
break;
|
|
case GST_EVENT_INTERRUPT:
|
|
gst_event_unref (event);
|
|
return -1;
|
|
default:
|
|
gst_pad_event_default (info->pad, event);
|
|
break;
|
|
}
|
|
}
|
|
newpos = gst_bytestream_tell (info->bs);
|
|
break;
|
|
}
|
|
|
|
case URL_WRONLY:
|
|
gst_pad_push (info->pad,
|
|
GST_DATA (gst_event_new_seek (seek_type | GST_FORMAT_BYTES, pos)));
|
|
/* this is screwy because there might be queues or scheduler-queued
|
|
* buffers... Argh! */
|
|
if (whence == SEEK_SET) {
|
|
newpos = pos;
|
|
} else {
|
|
g_warning ("Writer reposition: implement me\n");
|
|
newpos = 0;
|
|
}
|
|
break;
|
|
|
|
default:
|
|
g_assert (0);
|
|
break;
|
|
}
|
|
|
|
return newpos;
|
|
}
|
|
|
|
static int
|
|
gst_ffmpegdata_close (URLContext * h)
|
|
{
|
|
GstProtocolInfo *info;
|
|
|
|
info = (GstProtocolInfo *) h->priv_data;
|
|
|
|
GST_LOG ("Closing file");
|
|
|
|
switch (h->flags) {
|
|
case URL_WRONLY:{
|
|
/* send EOS - that closes down the stream */
|
|
GstEvent *event = gst_event_new (GST_EVENT_EOS);
|
|
|
|
gst_pad_push (info->pad, GST_DATA (event));
|
|
}
|
|
break;
|
|
|
|
case URL_RDONLY:
|
|
/* unref bytestream */
|
|
gst_bytestream_destroy (info->bs);
|
|
break;
|
|
}
|
|
|
|
/* clean up data */
|
|
g_free (info);
|
|
|
|
return 0;
|
|
}
|
|
|
|
URLProtocol gstreamer_protocol = {
|
|
.name = "gstreamer",
|
|
.url_open = gst_ffmpegdata_open,
|
|
.url_read = gst_ffmpegdata_read,
|
|
.url_write = gst_ffmpegdata_write,
|
|
.url_seek = gst_ffmpegdata_seek,
|
|
.url_close = gst_ffmpegdata_close,
|
|
};
|