Commit 5495b91f authored by Francois Cartegnie's avatar Francois Cartegnie

demux: mp4: remove useless header

parent cf100d42
...@@ -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
......
...@@ -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>
......
/*****************************************************************************
* 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
...@@ -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
......
...@@ -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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment