[vlc-commits] commit: Demux image: remove \t in source code (Jean-Baptiste Kempf )
git at videolan.org
git at videolan.org
Sun Oct 31 11:27:02 CET 2010
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sun Oct 31 12:26:44 2010 +0100| [d6c8ad452a2905b317ae7e50e094f0df860de0cb] | committer: Jean-Baptiste Kempf
Demux image: remove \t in source code
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d6c8ad452a2905b317ae7e50e094f0df860de0cb
---
modules/demux/image.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/modules/demux/image.c b/modules/demux/image.c
index f5280f9..1b74c24 100644
--- a/modules/demux/image.c
+++ b/modules/demux/image.c
@@ -104,7 +104,7 @@ struct demux_sys_t
bool is_realtime;
mtime_t pts_origin;
mtime_t pts_next;
- date_t pts;
+ date_t pts;
};
static block_t *Load(demux_t *demux)
@@ -218,7 +218,7 @@ static int Control(demux_t *demux, int query, va_list args)
{
demux_sys_t *sys = demux->p_sys;
- switch (query) {
+ switch (query) {
case DEMUX_GET_POSITION: {
double *position = va_arg(args, double *);
if (sys->duration > 0)
@@ -267,9 +267,9 @@ static int Control(demux_t *demux, int query, va_list args)
case DEMUX_GET_META:
case DEMUX_HAS_UNSUPPORTED_META:
case DEMUX_GET_ATTACHMENTS:
- default:
- return VLC_EGENERIC;
- }
+ default:
+ return VLC_EGENERIC;
+ }
}
static bool IsBmp(stream_t *s)
More information about the vlc-commits
mailing list