Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
d50fc62e
Commit
d50fc62e
authored
Aug 18, 2011
by
Sven Hesse
Committed by
Michael Niedermayer
Aug 18, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xmv: Make the various offset variables uint64_t
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
909e0fe2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
xmv.c
libavformat/xmv.c
+6
-6
No files found.
libavformat/xmv.c
View file @
d50fc62e
...
...
@@ -60,7 +60,7 @@ typedef struct XMVVideoPacket {
int
stream_index
;
uint32_t
data_size
;
uint
32
_t
data_offset
;
uint
64
_t
data_offset
;
uint32_t
current_frame
;
uint32_t
frame_count
;
...
...
@@ -83,11 +83,11 @@ typedef struct XMVAudioPacket {
XMVAudioTrack
*
track
;
uint32_t
data_size
;
uint
32
_t
data_offset
;
uint
64
_t
data_offset
;
uint32_t
frame_size
;
uint
32
_t
block_count
;
uint
64
_t
block_count
;
}
XMVAudioPacket
;
typedef
struct
XMVDemuxContext
{
...
...
@@ -98,8 +98,8 @@ typedef struct XMVDemuxContext {
uint32_t
this_packet_size
;
uint32_t
next_packet_size
;
uint
32
_t
this_packet_offset
;
uint
32
_t
next_packet_offset
;
uint
64
_t
this_packet_offset
;
uint
64
_t
next_packet_offset
;
uint16_t
current_stream
;
uint16_t
stream_count
;
...
...
@@ -286,7 +286,7 @@ static int xmv_process_packet_header(AVFormatContext *s)
uint8_t
data
[
8
];
uint16_t
audio_track
;
uint
32
_t
data_offset
;
uint
64
_t
data_offset
;
/* Next packet size */
xmv
->
next_packet_size
=
avio_rl32
(
pb
);
...
...
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