Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
2e48e657
Commit
2e48e657
authored
May 01, 2008
by
Rémi Denis-Courmont
Browse files
Remnants of I64F.
parent
97897eee
Changes
4
Hide whitespace changes
Inline
Side-by-side
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
Supports
Markdown
0%
Try again
or
attach a new 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