Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
16c54bad
Commit
16c54bad
authored
Jun 19, 2000
by
Jean-Marc Dressler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
. correction d'un flag inexistant dans input_file
. d�but du support son BeOS . fix d'un warning dans ac3_exponent.c
parent
74daded6
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
3 deletions
+14
-3
Makefile.in
Makefile.in
+5
-1
src/ac3_decoder/ac3_exponent.c
src/ac3_decoder/ac3_exponent.c
+8
-1
src/input/input_file.c
src/input/input_file.c
+1
-1
No files found.
Makefile.in
View file @
16c54bad
...
@@ -324,7 +324,8 @@ FORCE:
...
@@ -324,7 +324,8 @@ FORCE:
vlc
:
$(C_OBJ) $(CPP_OBJ) $(ASM_OBJ)
vlc
:
$(C_OBJ) $(CPP_OBJ) $(ASM_OBJ)
ifeq
($(SYS),beos)
ifeq
($(SYS),beos)
$(CC)
$(CCFLAGS)
$(LCFLAGS)
$(CFLAGS)
-Xlinker
-soname
=
_APP_
-o
$@
$(C_OBJ)
$(CPP_OBJ)
$(ASM_OBJ)
$(CC)
$(CCFLAGS)
$(LCFLAGS)
$(CFLAGS)
-Xlinker
-soname
=
_APP_
-o
$@
$(C_OBJ)
$(CPP_OBJ)
$(ASM_OBJ)
# ln -s ../vlc ./plugins/_APP_
rm
-f
./plugins/_APP_
ln
-s
../vlc ./plugins/_APP_
else
else
$(CC)
$(CCFLAGS)
$(LCFLAGS)
$(CFLAGS)
--export-dynamic
-rdynamic
-o
$@
$(C_OBJ)
$(CPP_OBJ)
$(ASM_OBJ)
$(CC)
$(CCFLAGS)
$(LCFLAGS)
$(CFLAGS)
--export-dynamic
-rdynamic
-o
$@
$(C_OBJ)
$(CPP_OBJ)
$(ASM_OBJ)
endif
endif
...
@@ -367,6 +368,9 @@ else
...
@@ -367,6 +368,9 @@ else
$(CC)
$(CCFLAGS)
$(CFLAGS)
-laudiofile
-lesd
-shared
-o
$@
$<
$(CC)
$(CCFLAGS)
$(CFLAGS)
-laudiofile
-lesd
-shared
-o
$@
$<
endif
endif
plugins/aout/aout_beos.so
:
%.so: %.cpp
$(CC)
$(LCFLAGS)
$(CCFLAGS)
$(CFLAGS)
-nostart
-Xlinker
-soname
=
$@
-o
$@
$<
plugins/_APP_
# video plugins
# video plugins
plugins/intf/intf_dummy.so
plugins/vout/vout_dummy.so
\
plugins/intf/intf_dummy.so
plugins/vout/vout_dummy.so
\
plugins/intf/intf_fb.so plugins/vout/vout_fb.so
:
%.so: %.c
plugins/intf/intf_fb.so plugins/vout/vout_fb.so
:
%.so: %.c
...
...
src/ac3_decoder/ac3_exponent.c
View file @
16c54bad
...
@@ -23,7 +23,14 @@
...
@@ -23,7 +23,14 @@
#include <stdio.h>
/* "intf_msg.h" */
#include <stdio.h>
/* "intf_msg.h" */
#include "int_types.h"
#include "config.h"
#include "common.h"
#include "threads.h"
#include "mtime.h"
#include "plugins.h"
#include "intf_msg.h"
#include "ac3_decoder.h"
#include "ac3_decoder.h"
#include "ac3_bit_stream.h"
#include "ac3_bit_stream.h"
#include "ac3_internal.h"
#include "ac3_internal.h"
...
...
src/input/input_file.c
View file @
16c54bad
...
@@ -298,7 +298,7 @@ int file_next( options_t *options )
...
@@ -298,7 +298,7 @@ int file_next( options_t *options )
fprintf
(
stderr
,
"Playing file %s
\n
"
,
fprintf
(
stderr
,
"Playing file %s
\n
"
,
options
->
playlist
[
options
->
i_list_index
]
);
options
->
playlist
[
options
->
i_list_index
]
);
return
(
options
->
in
=
open
(
options
->
playlist
[
options
->
i_list_index
],
return
(
options
->
in
=
open
(
options
->
playlist
[
options
->
i_list_index
],
O_RDONLY
|
O_N
DELAY
)
);
O_RDONLY
|
O_N
ONBLOCK
)
);
}
}
}
}
...
...
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