Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
d049dd48
Commit
d049dd48
authored
Aug 01, 2002
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avi.c: remove an old debug purpose printf :)
parent
81d10098
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
plugins/avi/avi.c
plugins/avi/avi.c
+1
-5
No files found.
plugins/avi/avi.c
View file @
d049dd48
...
...
@@ -2,7 +2,7 @@
* avi.c : AVI file Stream input module for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: avi.c,v 1.3
3 2002/07/31 20:56:50 sam
Exp $
* $Id: avi.c,v 1.3
4 2002/08/01 17:55:31 fenrir
Exp $
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -211,7 +211,6 @@ static int AVI_GetKeyFlag( vlc_fourcc_t i_fourcc, u8 *p_byte )
case
FOURCC_div6
:
case
FOURCC_AP41
:
case
FOURCC_3IV1
:
// printf( "\n Is a Key Frame %s", (*p_byte)&0xC0 ? "no" : "yes!!" );
return
(
(
*
p_byte
)
&
0xC0
?
0
:
AVIIF_KEYFRAME
);
case
FOURCC_DIVX
:
case
FOURCC_divx
:
...
...
@@ -233,8 +232,6 @@ static int AVI_GetKeyFlag( vlc_fourcc_t i_fourcc, u8 *p_byte )
}
else
{
// printf( "\n Is a Key Frame %s", (*(p_byte+4))&0xC0 ? "no" :
// "yes!!" );
return
(
(
*
(
p_byte
+
4
))
&
0xC0
?
0
:
AVIIF_KEYFRAME
);
}
default:
...
...
@@ -1512,7 +1509,6 @@ static pes_packet_t *AVI_ReadStreamBytesInPES( input_thread_t *p_input,
{
return
(
NULL
);
}
fprintf
(
stderr
,
"blah ibyte %i
\n
"
,
i_byte
);
if
(
!
(
p_data
=
input_NewPacket
(
p_input
->
p_method_data
,
i_byte
)
)
)
{
input_DeletePES
(
p_input
->
p_method_data
,
p_pes
);
...
...
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