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
b4be9321
Commit
b4be9321
authored
Dec 11, 2008
by
Reimar Döffinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid _t in typedef type
Originally committed as revision 16058 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
52afa376
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
nuv.c
libavformat/nuv.c
+3
-3
No files found.
libavformat/nuv.c
View file @
b4be9321
...
...
@@ -33,7 +33,7 @@ typedef enum {
NUV_AUDIO
=
'A'
,
NUV_SEEKP
=
'R'
,
NUV_MYTHEXT
=
'X'
}
frametype_t
;
}
nuv_frametype
;
static
int
nuv_probe
(
AVProbeData
*
p
)
{
if
(
!
memcmp
(
p
->
buf
,
"NuppelVideo"
,
12
))
...
...
@@ -55,7 +55,7 @@ static int nuv_probe(AVProbeData *p) {
*/
static
int
get_codec_data
(
ByteIOContext
*
pb
,
AVStream
*
vst
,
AVStream
*
ast
,
int
myth
)
{
frametype_t
frametype
;
nuv_frametype
frametype
;
if
(
!
vst
&&
!
myth
)
return
1
;
// no codec data needed
while
(
!
url_feof
(
pb
))
{
...
...
@@ -191,7 +191,7 @@ static int nuv_packet(AVFormatContext *s, AVPacket *pkt) {
NUVContext
*
ctx
=
s
->
priv_data
;
ByteIOContext
*
pb
=
s
->
pb
;
uint8_t
hdr
[
HDRSIZE
];
frametype_t
frametype
;
nuv_frametype
frametype
;
int
ret
,
size
;
while
(
!
url_feof
(
pb
))
{
int
copyhdrsize
=
ctx
->
rtjpg_video
?
HDRSIZE
:
0
;
...
...
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