mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
av: Fix redefinition of typedef 'GstFFMpegPipe'
Move declaration of pipe function to correct headers file
This commit is contained in:
parent
faa23b57b8
commit
bdd7406bc4
2 changed files with 3 additions and 3 deletions
|
@ -59,9 +59,6 @@ int gst_ffmpeg_av_find_stream_info(AVFormatContext *ic);
|
||||||
|
|
||||||
int gst_ffmpegdata_open (GstPad * pad, int flags, AVIOContext ** context);
|
int gst_ffmpegdata_open (GstPad * pad, int flags, AVIOContext ** context);
|
||||||
int gst_ffmpegdata_close (AVIOContext * h);
|
int gst_ffmpegdata_close (AVIOContext * h);
|
||||||
typedef struct _GstFFMpegPipe GstFFMpegPipe;
|
|
||||||
int gst_ffmpeg_pipe_open (GstFFMpegPipe *ffpipe, int flags, AVIOContext ** context);
|
|
||||||
int gst_ffmpeg_pipe_close (AVIOContext * h);
|
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
|
|
|
@ -67,6 +67,9 @@ struct _GstFFMpegPipe
|
||||||
guint needed;
|
guint needed;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
int gst_ffmpeg_pipe_open (GstFFMpegPipe *ffpipe, int flags, AVIOContext ** context);
|
||||||
|
int gst_ffmpeg_pipe_close (AVIOContext * h);
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
#endif /* __GST_FFMPEGPIPE_H__ */
|
#endif /* __GST_FFMPEGPIPE_H__ */
|
||||||
|
|
Loading…
Reference in a new issue