mpegts mux: include network to the mux class title - fixes #2219

This commit is contained in:
Jaroslav Kysela 2014-08-13 14:30:41 +02:00
parent fc1f960629
commit b64b62964a

View file

@ -175,10 +175,7 @@ static const char *
mpegts_mux_class_get_title ( idnode_t *self )
{
static __thread char buf[256];
mpegts_mux_t *mm = (mpegts_mux_t*)self;
*buf = 0;
if (mm->mm_display_name)
mm->mm_display_name(mm, buf, sizeof(buf));
mpegts_mux_nice_name((mpegts_mux_t*)self, buf, sizeof(buf));
return buf;
}