Skip to content

Commit

Permalink
timecode: generate a clock/timecode as a subtitle track
Browse files Browse the repository at this point in the history
This is mainly intended to be used as a slave input, e.g.:
 # vlc video.mkv --input-slave timecode:// --timecode-fps 30/1001
  • Loading branch information
Rémi Denis-Courmont committed Jan 19, 2013
1 parent 8539081 commit 145f458
Show file tree
Hide file tree
Showing 4 changed files with 212 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/LIST
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,8 @@ $Id$
* taglib: Taglib tags parser and writer
* tdummy: dummy text renderer
* telx: teletext subtitles decoder
* theora: a theora video decoder/packetizer/encoder using the libtheora library
* theora: a theora video decoder/packetizer/encoder using the libtheora
* timecode: clock/timecode as a subtitle input
* transform: filter for horizontal and vertical image flips and 90° rotations
* tremor: a vorbis audio decoder using the libvorbisidec (aka tremor) library
* trivial_channel_mixer: Simple channel mixer plugin
Expand Down
5 changes: 5 additions & 0 deletions modules/access/Modules.am
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ libsdp_plugin_la_SOURCES = sdp.c
libsdp_plugin_la_CFLAGS = $(AM_CFLAGS)
libsdp_plugin_la_LIBADD = $(AM_LIBADD)

libtimecode_plugin_la_SOURCES = timecode.c
libtimecode_plugin_la_CFLAGS = $(AM_CFLAGS)
libtimecode_plugin_la_LIBADD = $(AM_LIBADD)

libzip_plugin_la_SOURCES = zip/zip.h zip/zipstream.c zip/zipaccess.c
libzip_plugin_la_CFLAGS = $(AM_CFLAGS) $(MINIZIP_CFLAGS)
libzip_plugin_la_LIBADD = $(AM_LIBADD) $(MINIZIP_LIBS)
Expand Down Expand Up @@ -90,6 +94,7 @@ libvlc_LTLIBRARIES += \
libaccess_imem_plugin.la \
libaccess_attachment_plugin.la \
libsdp_plugin.la \
libtimecode_plugin.la \
libaccess_rar_plugin.la \
libstream_filter_rar_plugin.la \
libaccess_vdr_plugin.la \
Expand Down
204 changes: 204 additions & 0 deletions modules/access/timecode.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,204 @@
/**
* @file timecode.c
* @brief Time code sub-picture generator for VLC media player
*/
/*****************************************************************************
* Copyright © 2013 Rémi Denis-Courmont
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif

#include <stdlib.h>
#include <assert.h>

#include <vlc_common.h>
#include <vlc_demux.h>
#include <vlc_plugin.h>

#define FPS_TEXT N_("Frame rate")

static int Open (vlc_object_t *);
static void Close (vlc_object_t *);

static const char *const fps_values[] = { "24/1", "25/1", "30/1001", "30/1" };

vlc_module_begin ()
set_shortname (N_("Time code"))
set_description (N_("Screen capture (with X11/XCB)"))
set_category (CAT_INPUT)
set_subcategory (SUBCAT_INPUT_ACCESS)
set_capability ("access_demux", 0)
set_callbacks (Open, Close)

add_string ("timecode-fps", "25/1", FPS_TEXT, FPS_TEXT, false)
change_string_list (fps_values, fps_values)
change_safe ()
vlc_module_end ()

struct demux_sys_t
{
es_out_id_t *es;
date_t date;
mtime_t next_time;
};

static int DemuxOnce (demux_t *demux, bool master)
{
demux_sys_t *sys = demux->p_sys;
mtime_t pts = date_Get (&sys->date);
lldiv_t d;
unsigned h, m, s, f;

d = lldiv (pts, CLOCK_FREQ);
f = d.rem * sys->date.i_divider_num / sys->date.i_divider_den / CLOCK_FREQ;
d = lldiv (d.quot, 60);
s = d.rem;
d = lldiv (d.quot, 60);
m = d.rem;
h = d.quot;

char *str;
int len = asprintf (&str, "%02u:%02u:%02u:%02u", h, m, s, f);
if (len == -1)
return -1;

block_t *block = block_heap_Alloc (str, len + 1);
if (unlikely(block == NULL))
return -1;

block->i_buffer = len;
assert(str[len] == '\0');

block->i_pts = block->i_dts = pts;
block->i_length = date_Increment (&sys->date, 1) - pts;
es_out_Send (demux->out, sys->es, block);
if (master)
es_out_Control (demux->out, ES_OUT_SET_PCR, pts);
return 1;
}

static int Demux (demux_t *demux)
{
demux_sys_t *sys = demux->p_sys;

if (sys->next_time == VLC_TS_INVALID) /* Master mode */
return DemuxOnce (demux, true);

/* Slave mode */
while (sys->next_time > date_Get (&sys->date))
{
int val = DemuxOnce (demux, false);
if (val <= 0)
return val;
}
return 1;
}

static int Control (demux_t *demux, int query, va_list args)
{
demux_sys_t *sys = demux->p_sys;

switch (query)
{
case DEMUX_GET_POSITION:
*va_arg (args, float *) = 0.f;
break;

case DEMUX_GET_LENGTH:
*va_arg (args, int64_t *) = INT64_C(0);
break;

case DEMUX_GET_TIME:
*va_arg (args, int64_t *) = date_Get (&sys->date);
break;

case DEMUX_SET_TIME:
date_Set (&sys->date, va_arg (args, int64_t));
break;

case DEMUX_SET_NEXT_DEMUX_TIME:
{
const mtime_t pts = va_arg (args, int64_t );

if (sys->next_time == VLC_TS_INVALID) /* first invocation? */
{
date_Set (&sys->date, pts);
date_Decrement (&sys->date, 1);
}
sys->next_time = pts;
break;
}

case DEMUX_GET_PTS_DELAY:
{
int64_t *v = va_arg (args, int64_t *);
*v = INT64_C(1000) * var_InheritInteger (demux, "live-caching");
break;
}

case DEMUX_CAN_PAUSE:
case DEMUX_CAN_CONTROL_PACE:
case DEMUX_CAN_SEEK:
*va_arg (args, bool *) = true;
break;

default:
return VLC_EGENERIC;
}
return VLC_SUCCESS;
}

static int Open (vlc_object_t *obj)
{
demux_t *demux = (demux_t *)obj;
demux_sys_t *sys = malloc (sizeof (*sys));

if (unlikely(sys == NULL))
return VLC_ENOMEM;

es_format_t fmt;
es_format_Init (&fmt, SPU_ES, VLC_CODEC_ITU_T140);
sys->es = es_out_Add (demux->out, &fmt);

unsigned num, den;
if (var_InheritURational (demux, &num, &den, "timecode-fps")
|| !num || !den)
{
msg_Err (demux, "invalid frame rate");
free (sys);
return VLC_EGENERIC;
}

date_Init (&sys->date, num, den);
date_Set (&sys->date, VLC_TS_0);
sys->next_time = VLC_TS_INVALID;

demux->p_sys = sys;
demux->pf_demux = Demux;
demux->pf_control = Control;
return VLC_SUCCESS;
}

static void Close (vlc_object_t *obj)
{
demux_t *demux = (demux_t *)obj;
demux_sys_t *sys = demux->p_sys;

free (sys);
}
1 change: 1 addition & 0 deletions po/POTFILES.in
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@ modules/access/sftp.c
modules/access/shm.c
modules/access/smb.c
modules/access/tcp.c
modules/access/timecode.c
modules/access/udp.c
modules/access/v4l2/controls.c
modules/access/v4l2/v4l2.c
Expand Down

0 comments on commit 145f458

Please sign in to comment.