Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
5495b91f
Commit
5495b91f
authored
Oct 16, 2014
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
demux: mp4: remove useless header
parent
cf100d42
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
34 deletions
+4
-34
modules/demux/Makefile.am
modules/demux/Makefile.am
+1
-1
modules/demux/mp4/essetup.c
modules/demux/mp4/essetup.c
+0
-1
modules/demux/mp4/essetup.h
modules/demux/mp4/essetup.h
+0
-31
modules/demux/mp4/mp4.c
modules/demux/mp4/mp4.c
+0
-1
modules/demux/mp4/mp4.h
modules/demux/mp4/mp4.h
+3
-0
No files found.
modules/demux/Makefile.am
View file @
5495b91f
...
@@ -193,7 +193,7 @@ libmp4_plugin_la_SOURCES = demux/mp4/mp4.c demux/mp4/mp4.h \
...
@@ -193,7 +193,7 @@ libmp4_plugin_la_SOURCES = demux/mp4/mp4.c demux/mp4/mp4.h \
demux/mp4/libmp4.c demux/mp4/libmp4.h
\
demux/mp4/libmp4.c demux/mp4/libmp4.h
\
demux/mp4/id3genres.h demux/mp4/languages.h
\
demux/mp4/id3genres.h demux/mp4/languages.h
\
demux/asf/asfpacket.c demux/asf/asfpacket.h
\
demux/asf/asfpacket.c demux/asf/asfpacket.h
\
demux/mp4/essetup.c
demus/mp4/essetup.h
demux/mp4/essetup.c
libmp4_plugin_la_LIBADD
=
$(LIBM)
libmp4_plugin_la_LIBADD
=
$(LIBM)
libmp4_plugin_la_LDFLAGS
=
$(AM_LDFLAGS)
libmp4_plugin_la_LDFLAGS
=
$(AM_LDFLAGS)
if
HAVE_ZLIB
if
HAVE_ZLIB
...
...
modules/demux/mp4/essetup.c
View file @
5495b91f
...
@@ -25,7 +25,6 @@
...
@@ -25,7 +25,6 @@
#endif
#endif
#include "mp4.h"
#include "mp4.h"
#include "essetup.h"
#include <vlc_demux.h>
#include <vlc_demux.h>
#include <vlc_aout.h>
#include <vlc_aout.h>
...
...
modules/demux/mp4/essetup.h
deleted
100644 → 0
View file @
cf100d42
/*****************************************************************************
* essetup.h: es setup from stsd and extensions parsing
*****************************************************************************
* Copyright (C) 2001-2004, 2010, 2014 VLC authors and VideoLAN
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef _VLC_MP4_ESSETUP_H
#define _VLC_MP4_ESSETUP_H 1
#include "mp4.h"
int
SetupVideoES
(
demux_t
*
p_demux
,
mp4_track_t
*
p_track
,
MP4_Box_t
*
p_sample
);
int
SetupAudioES
(
demux_t
*
p_demux
,
mp4_track_t
*
p_track
,
MP4_Box_t
*
p_sample
);
int
SetupSpuES
(
demux_t
*
p_demux
,
mp4_track_t
*
p_track
,
MP4_Box_t
*
p_sample
);
#endif
modules/demux/mp4/mp4.c
View file @
5495b91f
...
@@ -40,7 +40,6 @@
...
@@ -40,7 +40,6 @@
#include <assert.h>
#include <assert.h>
#include "id3genres.h"
/* for ATOM_gnre */
#include "id3genres.h"
/* for ATOM_gnre */
#include "essetup.h"
/*****************************************************************************
/*****************************************************************************
* Module descriptor
* Module descriptor
...
...
modules/demux/mp4/mp4.h
View file @
5495b91f
...
@@ -152,4 +152,7 @@ struct mp4_fragment_t
...
@@ -152,4 +152,7 @@ struct mp4_fragment_t
mp4_fragment_t
*
p_next
;
mp4_fragment_t
*
p_next
;
};
};
int
SetupVideoES
(
demux_t
*
p_demux
,
mp4_track_t
*
p_track
,
MP4_Box_t
*
p_sample
);
int
SetupAudioES
(
demux_t
*
p_demux
,
mp4_track_t
*
p_track
,
MP4_Box_t
*
p_sample
);
int
SetupSpuES
(
demux_t
*
p_demux
,
mp4_track_t
*
p_track
,
MP4_Box_t
*
p_sample
);
#endif
#endif
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