mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
5f377234f5
Original commit message from CVS: Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net> * ext/ffmpeg/gstffmpeg.h: * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop): * ext/ffmpeg/gstffmpegprotocol.c: (gst_ffmpegdata_open), (gst_ffmpegdata_write): Add a stream-header flag to set stream-header caps on some streams, such as (in this case) flv (fixes #309051).
56 lines
1.8 KiB
C
56 lines
1.8 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.
|
|
*/
|
|
|
|
/* First, include the header file for the plugin, to bring in the
|
|
* object definition and other useful things.
|
|
*/
|
|
|
|
#ifndef __GST_FFMPEG_H__
|
|
#define __GST_FFMPEG_H
|
|
|
|
#ifdef HAVE_FFMPEG_UNINSTALLED
|
|
#include <avcodec.h>
|
|
#include <avformat.h>
|
|
#else
|
|
#include <ffmpeg/avcodec.h>
|
|
#include <ffmpeg/avformat.h>
|
|
#endif
|
|
|
|
#include <gst/gst.h>
|
|
|
|
GST_DEBUG_CATEGORY_EXTERN (ffmpeg_debug);
|
|
#define GST_CAT_DEFAULT ffmpeg_debug
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
extern gboolean gst_ffmpegdemux_register (GstPlugin * plugin);
|
|
extern gboolean gst_ffmpegdec_register (GstPlugin * plugin);
|
|
extern gboolean gst_ffmpegenc_register (GstPlugin * plugin);
|
|
extern gboolean gst_ffmpegmux_register (GstPlugin * plugin);
|
|
extern gboolean gst_ffmpegcsp_register (GstPlugin * plugin);
|
|
|
|
G_END_DECLS
|
|
|
|
extern URLProtocol gstreamer_protocol;
|
|
|
|
/* use GST_FFMPEG URL_STREAMHEADER with URL_WRONLY if the first
|
|
* buffer should be used as streamheader property on the pad's caps. */
|
|
#define GST_FFMPEG_URL_STREAMHEADER 16
|
|
|
|
#endif /* __GST_FFMPEG_H__ */
|