Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
2e48e657
Commit
2e48e657
authored
May 01, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remnants of I64F.
parent
97897eee
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
src/input/es_out.c
src/input/es_out.c
+1
-1
src/input/stream.c
src/input/stream.c
+3
-3
src/input/vlm.c
src/input/vlm.c
+2
-2
src/misc/objects.c
src/misc/objects.c
+1
-1
No files found.
src/input/es_out.c
View file @
2e48e657
...
...
@@ -2090,7 +2090,7 @@ static void EsOutAddInfo( es_out_t *out, es_out_id_t *es )
fmt
->
video
.
i_frame_rate_base
*
1000000
,
1000000
);
input_Control
(
p_input
,
INPUT_ADD_INFO
,
psz_cat
,
_
(
"Frame rate"
),
I64Fd
".%06u"
,
_
(
"Frame rate"
),
"%"
PRId64
".%06u"
,
div
.
quot
,
(
unsigned
int
)
div
.
rem
);
}
break
;
...
...
src/input/stream.c
View file @
2e48e657
...
...
@@ -635,7 +635,7 @@ static void AStreamPrebufferBlock( stream_t *s )
(
p_sys
->
stat
.
i_read_time
+
1
);
msg_Dbg
(
s
,
"prebuffering done %"
PRId64
" bytes in %"
PRId64
"s - "
I64Fd
" kbytes/s"
,
"%"
PRId64
" kbytes/s"
,
p_sys
->
stat
.
i_bytes
,
p_sys
->
stat
.
i_read_time
/
I64C
(
1000000
),
i_byterate
/
1024
);
...
...
@@ -860,7 +860,7 @@ static int AStreamSeekBlock( stream_t *s, int64_t i_pos )
if
(
!
b_aseek
)
{
b_seek
=
false
;
msg_Warn
(
s
,
I64Fd
" bytes need to be skipped "
msg_Warn
(
s
,
"%"
PRId64
" bytes need to be skipped "
"(access non seekable)"
,
i_offset
-
p_sys
->
block
.
i_size
);
}
...
...
@@ -1380,7 +1380,7 @@ static void AStreamPrebufferStream( stream_t *s )
(
p_sys
->
stat
.
i_read_time
+
1
);
msg_Dbg
(
s
,
"pre-buffering done %"
PRId64
" bytes in %"
PRId64
"s - "
I64Fd
" kbytes/s"
,
"%"
PRId64
" kbytes/s"
,
p_sys
->
stat
.
i_bytes
,
p_sys
->
stat
.
i_read_time
/
I64C
(
1000000
),
i_byterate
/
1024
);
...
...
src/input/vlm.c
View file @
2e48e657
...
...
@@ -1484,8 +1484,8 @@ static vlm_message_t *vlm_ShowMedia( vlm_media_sys_t *p_media )
vlm_MessageAdd( p_msg_instance, vlm_MessageNew( a, psz_tmp ) ); \
free( psz_tmp );
APPEND_INPUT_INFO
(
"position"
,
"%f"
,
Float
);
APPEND_INPUT_INFO
(
"time"
,
I64Fi
,
Time
);
APPEND_INPUT_INFO
(
"length"
,
I64Fi
,
Time
);
APPEND_INPUT_INFO
(
"time"
,
"%"
PRIi64
,
Time
);
APPEND_INPUT_INFO
(
"length"
,
"%"
PRIi64
,
Time
);
APPEND_INPUT_INFO
(
"rate"
,
"%d"
,
Integer
);
APPEND_INPUT_INFO
(
"title"
,
"%d"
,
Integer
);
APPEND_INPUT_INFO
(
"chapter"
,
"%d"
,
Integer
);
...
...
src/misc/objects.c
View file @
2e48e657
...
...
@@ -1208,7 +1208,7 @@ static int DumpCommand( vlc_object_t *p_this, char const *psz_cmd,
printf
(
": %f"
,
p_var
->
val
.
f_float
);
break
;
case
VLC_VAR_TIME
:
printf
(
":
"
I64Fi
,
(
int64_t
)
p_var
->
val
.
i_time
);
printf
(
":
%"
PRIi64
,
(
int64_t
)
p_var
->
val
.
i_time
);
break
;
case
VLC_VAR_ADDRESS
:
printf
(
": %p"
,
p_var
->
val
.
p_address
);
...
...
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