mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
av: Move gst_ffmpegdata functions to gstavprotocol.h too
Just for consistency.
This commit is contained in:
parent
bdd7406bc4
commit
08ca549627
6 changed files with 10 additions and 9 deletions
|
@ -45,4 +45,4 @@ noinst_HEADERS = \
|
|||
gstavaudenc.h \
|
||||
gstavvidenc.h \
|
||||
gstavcfg.h \
|
||||
gstavpipe.h
|
||||
gstavprotocol.h
|
||||
|
|
|
@ -57,9 +57,6 @@ int gst_ffmpeg_avcodec_open (AVCodecContext *avctx, AVCodec *codec);
|
|||
int gst_ffmpeg_avcodec_close (AVCodecContext *avctx);
|
||||
int gst_ffmpeg_av_find_stream_info(AVFormatContext *ic);
|
||||
|
||||
int gst_ffmpegdata_open (GstPad * pad, int flags, AVIOContext ** context);
|
||||
int gst_ffmpegdata_close (AVIOContext * h);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
/* use GST_FFMPEG URL_STREAMHEADER with URL_WRONLY if the first
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
#include "gstav.h"
|
||||
#include "gstavcodecmap.h"
|
||||
#include "gstavutils.h"
|
||||
#include "gstavpipe.h"
|
||||
#include "gstavprotocol.h"
|
||||
|
||||
#define MAX_STREAMS 20
|
||||
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
#include "gstav.h"
|
||||
#include "gstavcodecmap.h"
|
||||
#include "gstavutils.h"
|
||||
#include "gstavprotocol.h"
|
||||
|
||||
typedef struct _GstFFMpegMux GstFFMpegMux;
|
||||
typedef struct _GstFFMpegMuxPad GstFFMpegMuxPad;
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include <gst/gst.h>
|
||||
|
||||
#include "gstav.h"
|
||||
#include "gstavpipe.h"
|
||||
#include "gstavprotocol.h"
|
||||
|
||||
typedef struct _GstProtocolInfo GstProtocolInfo;
|
||||
|
||||
|
|
|
@ -18,8 +18,8 @@
|
|||
*/
|
||||
|
||||
|
||||
#ifndef __GST_FFMPEGPIPE_H__
|
||||
#define __GST_FFMPEGPIPE_H__
|
||||
#ifndef __GST_FFMPEGPROTOCOL_H__
|
||||
#define __GST_FFMPEGPROTOCOL_H__
|
||||
|
||||
#include <gst/base/gstadapter.h>
|
||||
#include "gstav.h"
|
||||
|
@ -70,6 +70,9 @@ struct _GstFFMpegPipe
|
|||
int gst_ffmpeg_pipe_open (GstFFMpegPipe *ffpipe, int flags, AVIOContext ** context);
|
||||
int gst_ffmpeg_pipe_close (AVIOContext * h);
|
||||
|
||||
int gst_ffmpegdata_open (GstPad * pad, int flags, AVIOContext ** context);
|
||||
int gst_ffmpegdata_close (AVIOContext * h);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GST_FFMPEGPIPE_H__ */
|
||||
#endif /* __GST_FFMPEGPROTOCOL_H__ */
|
Loading…
Reference in a new issue