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
e33dbc3f
Commit
e33dbc3f
authored
Nov 13, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* avi: little clean up, and ported to es_format_t.
parent
1c8b01a7
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
386 additions
and
603 deletions
+386
-603
modules/demux/avi/avi.c
modules/demux/avi/avi.c
+380
-595
modules/demux/avi/avi.h
modules/demux/avi/avi.h
+6
-8
No files found.
modules/demux/avi/avi.c
View file @
e33dbc3f
This diff is collapsed.
Click to expand it.
modules/demux/avi/avi.h
View file @
e33dbc3f
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* avi.h : AVI file Stream input module for vlc
* avi.h : AVI file Stream input module for vlc
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* Copyright (C) 2001 VideoLAN
* $Id: avi.h,v 1.1
6 2003/10/19 13:39:11 hartman
Exp $
* $Id: avi.h,v 1.1
7 2003/11/13 11:49:27 fenrir
Exp $
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
*
* This program is free software; you can redistribute it and/or modify
* This program is free software; you can redistribute it and/or modify
...
@@ -44,19 +44,18 @@ typedef struct AVIIndexEntry_s
...
@@ -44,19 +44,18 @@ typedef struct AVIIndexEntry_s
}
AVIIndexEntry_t
;
}
AVIIndexEntry_t
;
typedef
struct
avi_stream_s
typedef
struct
{
{
vlc_bool_t
b_activated
;
vlc_bool_t
b_activated
;
unsigned
int
i_cat
;
/* AUDIO_ES, VIDEO_ES */
unsigned
int
i_cat
;
/* AUDIO_ES, VIDEO_ES */
vlc_fourcc_t
i_fourcc
;
vlc_fourcc_t
i_codec
;
vlc_fourcc_t
i_codec
;
int
i_rate
;
int
i_rate
;
int
i_scale
;
int
i_scale
;
int
i_samplesize
;
int
i_samplesize
;
es_
descriptor
_t
*
p_es
;
es_
out_id
_t
*
p_es
;
AVIIndexEntry_t
*
p_index
;
AVIIndexEntry_t
*
p_index
;
unsigned
int
i_idxnb
;
unsigned
int
i_idxnb
;
...
@@ -65,7 +64,7 @@ typedef struct avi_stream_s
...
@@ -65,7 +64,7 @@ typedef struct avi_stream_s
unsigned
int
i_idxposc
;
/* numero of chunk */
unsigned
int
i_idxposc
;
/* numero of chunk */
unsigned
int
i_idxposb
;
/* byte in the current chunk */
unsigned
int
i_idxposb
;
/* byte in the current chunk */
}
avi_
stream
_t
;
}
avi_
track
_t
;
struct
demux_sys_t
struct
demux_sys_t
{
{
...
@@ -77,13 +76,12 @@ struct demux_sys_t
...
@@ -77,13 +76,12 @@ struct demux_sys_t
avi_chunk_t
ck_root
;
avi_chunk_t
ck_root
;
vlc_bool_t
b_odml
;
vlc_bool_t
b_odml
;
vlc_bool_t
b_interleaved
;
/* for seeking purpose */
off_t
i_movi_begin
;
off_t
i_movi_begin
;
off_t
i_movi_lastchunk_pos
;
/* XXX position of last valid chunk */
off_t
i_movi_lastchunk_pos
;
/* XXX position of last valid chunk */
/* number of streams and information */
/* number of streams and information */
unsigned
int
i_
streams
;
unsigned
int
i_
track
;
avi_
stream_t
**
pp_info
;
avi_
track_t
**
track
;
};
};
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