Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
gst-libav
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
60
Issues
60
List
Boards
Labels
Service Desk
Milestones
Merge Requests
11
Merge Requests
11
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GStreamer
gst-libav
Commits
90a8b3fb
Commit
90a8b3fb
authored
Sep 10, 2012
by
Edward Hervey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ext: ffmpeg/gstffmpeg*.[ch] => libav/gstav*.[ch]
parent
1ea0285e
Changes
24
Hide whitespace changes
Inline
Side-by-side
Showing
24 changed files
with
60 additions
and
60 deletions
+60
-60
configure.ac
configure.ac
+2
-2
ext/Makefile.am
ext/Makefile.am
+1
-1
ext/libav/Makefile.am
ext/libav/Makefile.am
+21
-21
ext/libav/gstav.c
ext/libav/gstav.c
+2
-2
ext/libav/gstav.h
ext/libav/gstav.h
+0
-0
ext/libav/gstavaudioresample.c
ext/libav/gstavaudioresample.c
+0
-0
ext/libav/gstavcfg.c
ext/libav/gstavcfg.c
+3
-3
ext/libav/gstavcfg.h
ext/libav/gstavcfg.h
+0
-0
ext/libav/gstavcodecmap.c
ext/libav/gstavcodecmap.c
+2
-2
ext/libav/gstavcodecmap.h
ext/libav/gstavcodecmap.h
+0
-0
ext/libav/gstavdec.c
ext/libav/gstavdec.c
+3
-3
ext/libav/gstavdeinterlace.c
ext/libav/gstavdeinterlace.c
+3
-3
ext/libav/gstavdemux.c
ext/libav/gstavdemux.c
+4
-4
ext/libav/gstavenc.c
ext/libav/gstavenc.c
+4
-4
ext/libav/gstavenc.h
ext/libav/gstavenc.h
+0
-0
ext/libav/gstavmux.c
ext/libav/gstavmux.c
+3
-3
ext/libav/gstavpipe.h
ext/libav/gstavpipe.h
+1
-1
ext/libav/gstavprotocol.c
ext/libav/gstavprotocol.c
+2
-2
ext/libav/gstavscale.c
ext/libav/gstavscale.c
+0
-0
ext/libav/gstavutils.c
ext/libav/gstavutils.c
+1
-1
ext/libav/gstavutils.h
ext/libav/gstavutils.h
+0
-0
ext/libav/gstavviddec.c
ext/libav/gstavviddec.c
+3
-3
ext/libav/gstavvidenc.c
ext/libav/gstavvidenc.c
+5
-5
ext/libav/gstavvidenc.h
ext/libav/gstavvidenc.h
+0
-0
No files found.
configure.ac
View file @
90a8b3fb
...
...
@@ -19,7 +19,7 @@ dnl check if this is a release version
AS_NANO(GST_GIT="no", GST_GIT="yes")
dnl can autoconf find the source ?
AC_CONFIG_SRCDIR([ext/
ffmpeg/gstffmpeg
.c])
AC_CONFIG_SRCDIR([ext/
libav/gstav
.c])
dnl define the output header for config
AM_CONFIG_HEADER([config.h])
...
...
@@ -386,7 +386,7 @@ common/Makefile
common/m4/Makefile
gst-libav.spec
ext/Makefile
ext/
ffmpeg
/Makefile
ext/
libav
/Makefile
ext/libswscale/Makefile
gst-libs/Makefile
gst-libs/ext/Makefile
...
...
ext/Makefile.am
View file @
90a8b3fb
SUBDIRS
=
ffmpeg
libswscale
SUBDIRS
=
libav
libswscale
ext/
ffmpeg
/Makefile.am
→
ext/
libav
/Makefile.am
View file @
90a8b3fb
...
...
@@ -6,22 +6,22 @@ else
BZ2_LIBS
=
endif
libgstlibav_la_SOURCES
=
gst
ffmpeg
.c
\
gst
ffmpeg
protocol.c
\
gst
ffmpeg
codecmap.c
\
gst
ffmpeg
utils.c
\
gst
ffmpeg
enc.c
\
gst
ffmpeg
videnc.c
\
gst
ffmpeg
dec.c
\
gst
ffmpeg
viddec.c
\
gst
ffmpeg
cfg.c
\
gst
ffmpeg
demux.c
\
gst
ffmpeg
mux.c
\
gst
ffmpeg
deinterlace.c
libgstlibav_la_SOURCES
=
gst
av
.c
\
gst
av
protocol.c
\
gst
av
codecmap.c
\
gst
av
utils.c
\
gst
av
enc.c
\
gst
av
videnc.c
\
gst
av
dec.c
\
gst
av
viddec.c
\
gst
av
cfg.c
\
gst
av
demux.c
\
gst
av
mux.c
\
gst
av
deinterlace.c
#\
# gst
ffmpeg
audioresample.c
# gst
av
audioresample.c
# \
# gst
ffmpeg
scale.c
# gst
av
scale.c
libgstlibav_la_CFLAGS
=
$(LIBAV_CFLAGS)
$(GST_PLUGINS_BASE_CFLAGS)
$(GST_CFLAGS)
libgstlibav_la_LIBADD
=
$(LIBAV_LIBS)
$(GST_PLUGINS_BASE_LIBS)
\
...
...
@@ -37,10 +37,10 @@ endif
noinst_HEADERS
=
\
gst
ffmpeg
.h
\
gst
ffmpeg
codecmap.h
\
gst
ffmpeg
utils.h
\
gst
ffmpeg
enc.h
\
gst
ffmpeg
videnc.h
\
gst
ffmpeg
cfg.h
\
gst
ffmpeg
pipe.h
gst
av
.h
\
gst
av
codecmap.h
\
gst
av
utils.h
\
gst
av
enc.h
\
gst
av
videnc.h
\
gst
av
cfg.h
\
gst
av
pipe.h
ext/
ffmpeg/gstffmpeg
.c
→
ext/
libav/gstav
.c
View file @
90a8b3fb
...
...
@@ -31,8 +31,8 @@
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include "gst
ffmpeg
.h"
#include "gst
ffmpeg
utils.h"
#include "gst
av
.h"
#include "gst
av
utils.h"
GST_DEBUG_CATEGORY
(
ffmpeg_debug
);
...
...
ext/
ffmpeg/gstffmpeg
.h
→
ext/
libav/gstav
.h
View file @
90a8b3fb
File moved
ext/
ffmpeg/gstffmpeg
audioresample.c
→
ext/
libav/gstav
audioresample.c
View file @
90a8b3fb
File moved
ext/
ffmpeg/gstffmpeg
cfg.c
→
ext/
libav/gstav
cfg.c
View file @
90a8b3fb
...
...
@@ -25,9 +25,9 @@
#include "config.h"
#endif
#include "gst
ffmpeg
.h"
#include "gst
ffmpeg
videnc.h"
#include "gst
ffmpeg
cfg.h"
#include "gst
av
.h"
#include "gst
av
videnc.h"
#include "gst
av
cfg.h"
#include <string.h>
...
...
ext/
ffmpeg/gstffmpeg
cfg.h
→
ext/
libav/gstav
cfg.h
View file @
90a8b3fb
File moved
ext/
ffmpeg/gstffmpeg
codecmap.c
→
ext/
libav/gstav
codecmap.c
View file @
90a8b3fb
...
...
@@ -28,8 +28,8 @@
#include <gst/gst.h>
#include <libavcodec/avcodec.h>
#include "gst
ffmpeg
.h"
#include "gst
ffmpeg
codecmap.h"
#include "gst
av
.h"
#include "gst
av
codecmap.h"
#include <gst/video/video.h>
#include <gst/audio/audio.h>
...
...
ext/
ffmpeg/gstffmpeg
codecmap.h
→
ext/
libav/gstav
codecmap.h
View file @
90a8b3fb
File moved
ext/
ffmpeg/gstffmpeg
dec.c
→
ext/
libav/gstav
dec.c
View file @
90a8b3fb
...
...
@@ -28,9 +28,9 @@
#include <gst/gst.h>
#include "gst
ffmpeg
.h"
#include "gst
ffmpeg
codecmap.h"
#include "gst
ffmpeg
utils.h"
#include "gst
av
.h"
#include "gst
av
codecmap.h"
#include "gst
av
utils.h"
GST_DEBUG_CATEGORY_EXTERN
(
GST_CAT_PERFORMANCE
);
...
...
ext/
ffmpeg/gstffmpeg
deinterlace.c
→
ext/
libav/gstav
deinterlace.c
View file @
90a8b3fb
...
...
@@ -29,9 +29,9 @@
#include <gst/gst.h>
#include <gst/video/video.h>
#include "gst
ffmpeg
.h"
#include "gst
ffmpeg
codecmap.h"
#include "gst
ffmpeg
utils.h"
#include "gst
av
.h"
#include "gst
av
codecmap.h"
#include "gst
av
utils.h"
/* Properties */
...
...
ext/
ffmpeg/gstffmpeg
demux.c
→
ext/
libav/gstav
demux.c
View file @
90a8b3fb
...
...
@@ -29,10 +29,10 @@
/* #include <ffmpeg/avi.h> */
#include <gst/gst.h>
#include "gst
ffmpeg
.h"
#include "gst
ffmpeg
codecmap.h"
#include "gst
ffmpeg
utils.h"
#include "gst
ffmpeg
pipe.h"
#include "gst
av
.h"
#include "gst
av
codecmap.h"
#include "gst
av
utils.h"
#include "gst
av
pipe.h"
#define MAX_STREAMS 20
...
...
ext/
ffmpeg/gstffmpeg
enc.c
→
ext/
libav/gstav
enc.c
View file @
90a8b3fb
...
...
@@ -32,10 +32,10 @@
#include <gst/gst.h>
#include "gst
ffmpeg
.h"
#include "gst
ffmpeg
codecmap.h"
#include "gst
ffmpeg
utils.h"
#include "gst
ffmpeg
enc.h"
#include "gst
av
.h"
#include "gst
av
codecmap.h"
#include "gst
av
utils.h"
#include "gst
av
enc.h"
#define DEFAULT_AUDIO_BITRATE 128000
...
...
ext/
ffmpeg/gstffmpeg
enc.h
→
ext/
libav/gstav
enc.h
View file @
90a8b3fb
File moved
ext/
ffmpeg/gstffmpeg
mux.c
→
ext/
libav/gstav
mux.c
View file @
90a8b3fb
...
...
@@ -27,9 +27,9 @@
#include <gst/gst.h>
#include <gst/base/gstcollectpads.h>
#include "gst
ffmpeg
.h"
#include "gst
ffmpeg
codecmap.h"
#include "gst
ffmpeg
utils.h"
#include "gst
av
.h"
#include "gst
av
codecmap.h"
#include "gst
av
utils.h"
typedef
struct
_GstFFMpegMux
GstFFMpegMux
;
typedef
struct
_GstFFMpegMuxPad
GstFFMpegMuxPad
;
...
...
ext/
ffmpeg/gstffmpeg
pipe.h
→
ext/
libav/gstav
pipe.h
View file @
90a8b3fb
...
...
@@ -22,7 +22,7 @@
#define __GST_FFMPEGPIPE_H__
#include <gst/base/gstadapter.h>
#include "gst
ffmpeg
.h"
#include "gst
av
.h"
G_BEGIN_DECLS
...
...
ext/
ffmpeg/gstffmpeg
protocol.c
→
ext/
libav/gstav
protocol.c
View file @
90a8b3fb
...
...
@@ -28,8 +28,8 @@
#include <gst/gst.h>
#include "gst
ffmpeg
.h"
#include "gst
ffmpeg
pipe.h"
#include "gst
av
.h"
#include "gst
av
pipe.h"
typedef
struct
_GstProtocolInfo
GstProtocolInfo
;
...
...
ext/
ffmpeg/gstffmpeg
scale.c
→
ext/
libav/gstav
scale.c
View file @
90a8b3fb
File moved
ext/
ffmpeg/gstffmpeg
utils.c
→
ext/
libav/gstav
utils.c
View file @
90a8b3fb
...
...
@@ -20,7 +20,7 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "gst
ffmpeg
utils.h"
#include "gst
av
utils.h"
#include <unistd.h>
#ifdef __APPLE__
#include <sys/sysctl.h>
...
...
ext/
ffmpeg/gstffmpeg
utils.h
→
ext/
libav/gstav
utils.h
View file @
90a8b3fb
File moved
ext/
ffmpeg/gstffmpeg
viddec.c
→
ext/
libav/gstav
viddec.c
View file @
90a8b3fb
...
...
@@ -32,9 +32,9 @@
#include <gst/video/gstvideometa.h>
#include <gst/video/gstvideopool.h>
#include "gst
ffmpeg
.h"
#include "gst
ffmpeg
codecmap.h"
#include "gst
ffmpeg
utils.h"
#include "gst
av
.h"
#include "gst
av
codecmap.h"
#include "gst
av
utils.h"
GST_DEBUG_CATEGORY_EXTERN
(
GST_CAT_PERFORMANCE
);
...
...
ext/
ffmpeg/gstffmpeg
videnc.c
→
ext/
libav/gstav
videnc.c
View file @
90a8b3fb
...
...
@@ -33,11 +33,11 @@
#include <gst/gst.h>
#include <gst/video/gstvideometa.h>
#include "gst
ffmpeg
.h"
#include "gst
ffmpeg
codecmap.h"
#include "gst
ffmpeg
utils.h"
#include "gst
ffmpeg
videnc.h"
#include "gst
ffmpeg
cfg.h"
#include "gst
av
.h"
#include "gst
av
codecmap.h"
#include "gst
av
utils.h"
#include "gst
av
videnc.h"
#include "gst
av
cfg.h"
#define DEFAULT_VIDEO_BITRATE 300000
/* in bps */
#define DEFAULT_VIDEO_GOP_SIZE 15
...
...
ext/
ffmpeg/gstffmpeg
videnc.h
→
ext/
libav/gstav
videnc.h
View file @
90a8b3fb
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment