Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
2a0c82e4
Commit
2a0c82e4
authored
Apr 03, 2004
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* mp4*: demux -> demux2.
parent
c0b276ae
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
239 additions
and
267 deletions
+239
-267
modules/demux/mp4/libmp4.c
modules/demux/mp4/libmp4.c
+83
-84
modules/demux/mp4/libmp4.h
modules/demux/mp4/libmp4.h
+4
-4
modules/demux/mp4/mp4.c
modules/demux/mp4/mp4.c
+152
-179
No files found.
modules/demux/mp4/libmp4.c
View file @
2a0c82e4
This diff is collapsed.
Click to expand it.
modules/demux/mp4/libmp4.h
View file @
2a0c82e4
...
@@ -189,7 +189,7 @@ typedef struct MP4_Stream_s
...
@@ -189,7 +189,7 @@ typedef struct MP4_Stream_s
{
{
int
b_memory
;
/* do we uses a memory buffer */
int
b_memory
;
/* do we uses a memory buffer */
input_thread_t
*
p_input
;
stream_t
*
s
;
off_t
i_start
;
/* in the buffer position for memory stream */
off_t
i_start
;
/* in the buffer position for memory stream */
off_t
i_stop
;
off_t
i_stop
;
...
@@ -821,7 +821,7 @@ typedef struct MP4_Box_s
...
@@ -821,7 +821,7 @@ typedef struct MP4_Box_s
* The first box is a virtual box "root" and is the father for all first
* The first box is a virtual box "root" and is the father for all first
* level boxes
* level boxes
*****************************************************************************/
*****************************************************************************/
MP4_Box_t
*
MP4_BoxGetRoot
(
input_thread_t
*
p_input
);
MP4_Box_t
*
MP4_BoxGetRoot
(
stream_t
*
);
/*****************************************************************************
/*****************************************************************************
* MP4_FreeBox : free memory allocated after read with MP4_ReadBox
* MP4_FreeBox : free memory allocated after read with MP4_ReadBox
...
@@ -829,14 +829,14 @@ MP4_Box_t *MP4_BoxGetRoot( input_thread_t *p_input );
...
@@ -829,14 +829,14 @@ MP4_Box_t *MP4_BoxGetRoot( input_thread_t *p_input );
* XXX : all children have to be allocated by a malloc !! and
* XXX : all children have to be allocated by a malloc !! and
* p_box is freed
* p_box is freed
*****************************************************************************/
*****************************************************************************/
void
MP4_BoxFree
(
input_thread_t
*
p_input
,
MP4_Box_t
*
p_box
);
void
MP4_BoxFree
(
stream_t
*
,
MP4_Box_t
*
p_box
);
/*****************************************************************************
/*****************************************************************************
* MP4_DumpBoxStructure: print the structure of the p_box
* MP4_DumpBoxStructure: print the structure of the p_box
*****************************************************************************
*****************************************************************************
* Usefull while debugging
* Usefull while debugging
*****************************************************************************/
*****************************************************************************/
void
MP4_BoxDumpStructure
(
input_thread
_t
*
p_input
,
MP4_Box_t
*
p_box
);
void
MP4_BoxDumpStructure
(
stream
_t
*
p_input
,
MP4_Box_t
*
p_box
);
/*****************************************************************************
/*****************************************************************************
...
...
modules/demux/mp4/mp4.c
View file @
2a0c82e4
This diff is collapsed.
Click to expand it.
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