08 Apr, 2013
1 commit
-
"enum dmx_ts_pes" and "typedef enum dmx_pes_type_t" are just the
same enum declared twice, since Kernel (2.6.12). There's no reason
to duplicate it there, and sparse complains about that:
drivers/media/dvb-core/dmxdev.c:600:55: warning: mixing different enum types
So, remove the internal define, keeping just the external one.
Internally, use only "enum dmx_ts_pes", as it is too late to drop
dmx_pes_type_t from the userspace API.Signed-off-by: Mauro Carvalho Chehab
20 Mar, 2013
1 commit
-
This patch avoids incrementing continuity counter
demux->cnt_storage[pid] for TS packets without payload in accordance
with ISO /IEC 13818-1.[mchehab@redhat.com: unmangle whitespacing and fix CodingStyle.
Also checked ISO/IEC spec: patch is according with it]
Reviewed-by: Mauro Carvalho Chehab
Signed-off-by: John SmithSigned-off-by: Mauro Carvalho Chehab
24 Sep, 2012
1 commit
-
removes unnecessary semicolon
Found by Coccinelle: http://coccinelle.lip6.fr/Signed-off-by: Peter Senna Tschudin
Signed-off-by: Mauro Carvalho Chehab
14 Aug, 2012
1 commit
-
just like the V4L2 core, move the DVB core to drivers/media, as the
intention is to get rid of both "video" and "dvb" directories.Signed-off-by: Mauro Carvalho Chehab