Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
f0f225c4
Commit
f0f225c4
authored
Jan 17, 2000
by
Christophe Massiot
Browse files
Fin du parsage des I.
parent
ecc98c96
Changes
5
Hide whitespace changes
Inline
Side-by-side
include/config.h
View file @
f0f225c4
...
...
@@ -43,7 +43,7 @@
#define PROGRAM_OPTIONS VIDEO_OPTIONS " " ARCH_OPTIONS
/* Program version and copyright message */
#define PROGRAM_VERSION "
DR 2.1
"
#define PROGRAM_VERSION "
1.0-dev
"
#define COPYRIGHT_MESSAGE "VideoLAN Client v" PROGRAM_VERSION " (" __DATE__ ") - " \
PROGRAM_OPTIONS " - (c)1999 VideoLAN"
...
...
@@ -296,7 +296,7 @@
#define VFIFO_SIZE 4095
/* Maximum number of macroblocks in a picture. */
#define MAX_MB
2048
#define MAX_MB
32767
/*******************************************************************************
* Video decoder configuration
...
...
include/vlc.h.new
View file @
f0f225c4
...
...
@@ -48,7 +48,6 @@
#include "vlc_thread.h"
#include "netutils.h"
#include "debug.h"
#include "xutils.h"
#include "intf_msg.h"
/* Input */
...
...
src/video_decoder/video_decoder.c
View file @
f0f225c4
...
...
@@ -186,7 +186,7 @@ static void RunThread( vdec_thread_t *p_vdec )
return
;
}
p_vdec
->
b_run
=
1
;
p_vdec
->
b_error
=
1
;
/*
* Main loop - it is not executed if an error occured during
* initialization
...
...
src/video_parser/vpar_blocks.c
View file @
f0f225c4
...
...
@@ -607,7 +607,7 @@ void vpar_ParseMacroblock( vpar_thread_t * p_vpar, int * pi_mb_address,
//*pi_mb_address += MacroblockAddressIncrement( p_vpar );
b_stop
=
i_inc
>
1
;
fprintf
(
stderr
,
"inc : %d (%d)
\n
"
,
*
pi_mb_address
,
i_inc
);
//
fprintf( stderr, "inc : %d (%d)\n", *pi_mb_address, i_inc );
if
(
0
)
//i_count > 8 )
{
exit
(
0
);
...
...
src/video_parser/vpar_headers.c
View file @
f0f225c4
...
...
@@ -430,7 +430,7 @@ static void SequenceHeader( vpar_thread_t * p_vpar )
p_vpar
->
sequence
.
i_mb_width
=
(
p_vpar
->
sequence
.
i_width
+
15
)
/
16
;
p_vpar
->
sequence
.
i_mb_height
=
(
p_vpar
->
sequence
.
b_progressive
)
?
(
p_vpar
->
sequence
.
i_height
+
15
)
/
16
:
2
*
(
p_vpar
->
sequence
.
i_height
+
31
)
/
32
;
2
*
(
(
p_vpar
->
sequence
.
i_height
+
31
)
/
32
)
;
p_vpar
->
sequence
.
i_mb_size
=
p_vpar
->
sequence
.
i_mb_width
*
p_vpar
->
sequence
.
i_mb_height
;
p_vpar
->
sequence
.
i_width
=
(
p_vpar
->
sequence
.
i_mb_width
*
16
);
...
...
@@ -747,7 +747,7 @@ fprintf(stderr, "Image trashee\n");
}
else
if
(
p_vpar
->
picture
.
i_current_structure
==
FRAME_STRUCTURE
)
{
fprintf
(
stderr
,
"Image
decod
ee
\n
"
);
fprintf
(
stderr
,
"Image
pars
ee
\n
"
);
/* Frame completely parsed. */
P_picture
->
i_deccount
=
p_vpar
->
sequence
.
i_mb_size
;
for
(
i_mb
=
0
;
i_mb
<
p_vpar
->
sequence
.
i_mb_size
;
i_mb
++
)
...
...
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