Re: [PATCH v4 01/10] rockchip/vpu: rename from rockchip to hantro

2019-06-12 Thread Jonas Karlman
an we expose these secondary blocks once rockchip vpu driver has transitioned into a hantro driver? Should a new rockchip vpu driver be created for the HEVC/RKVDEC blocks? Regards, Jonas > > This patch just renames, no functional changes. > > Signed-off-by: Philipp Zabel >

Re: Proposed updates and guidelines for MPEG-2, H.264 and H.265 stateless support

2019-06-04 Thread Jonas Karlman
On 2019-06-04 11:38, Boris Brezillon wrote: > On Tue, 4 Jun 2019 09:15:28 + > Jonas Karlman wrote: > >> On 2019-06-04 11:06, Thierry Reding wrote: >>> On Tue, Jun 04, 2019 at 10:49:21AM +0200, Boris Brezillon wrote: >>>> On Tue, 4 Jun 2019 10:31

Re: Proposed updates and guidelines for MPEG-2, H.264 and H.265 stateless support

2019-06-04 Thread Jonas Karlman
trol to >>> applications makes me think that it's just not worth it from a >>> performance point of view. >> That's not exactly what Nicolas proposed. He was suggesting that we >> build those reflists kernel-side: V4L would provide an helper and >> drivers that need those lists would use it, others won't. This way we >> have no useless computation done, and userspace doesn't even have to >> bother checking the device caps to avoid this extra step. > Oh yeah, that sounds much better. I suppose one notable differences to > other APIs is that they have to pass in buffers for all the frames in > the DPB, so they basically have to build the lists in userspace. Since > we'll end up looking up the frames in the kernel, it sounds reasonable > to also build the lists in the kernel. Userspace must already process the modification list or it wont have correct DPB for next frame. If you move this processing into kernel side you also introduce state into the stateless driver. Regards, Jonas > > On that note, it would probably be useful to have some sort of helper > to get at all the buffers that make up the DPB in the kernel. That's got > to be something that everybody wants. > > Thierry

Re: [PATCH v6 16/16] rockchip/vpu: Add support for MPEG-2 decoding on RK3328

2019-05-29 Thread Jonas Karlman
On 2019-05-29 10:11, Hans Verkuil wrote: > On 5/28/19 7:02 PM, Ezequiel Garcia wrote: >> From: Jonas Karlman >> >> Add necessary bits to support MPEG2 decoding on RK3328. >> >> Signed-off-by: Jonas Karlman >> Signed-off-by: Ezequiel Garcia &

Re: Proposed updates and guidelines for MPEG-2, H.264 and H.265 stateless support

2019-05-23 Thread Jonas Karlman
and that cedrus driver is changed to use 8x8 lists from [0] and [1] instead of [0] and [3]. Regards, Jonas > I'm up for preparing and submitting these control changes and updating > cedrus if they seem agreeable. > > What do you think? > > Cheers, > > Paul

Re: [PATCH v3 14/15] rockchip/vpu: Add support for MPEG-2 decoding

2019-04-22 Thread Jonas Karlman
On 2019-04-22 17:12, Boris Brezillon wrote: > On Mon, 22 Apr 2019 14:59:17 + > Jonas Karlman wrote: > >> On 2019-04-22 10:08, Boris Brezillon wrote: >>> From: Ezequiel Garcia >> Please restore my commit authorship, it seems to have changed in v3. > O

Re: [PATCH v3 14/15] rockchip/vpu: Add support for MPEG-2 decoding

2019-04-22 Thread Jonas Karlman
mit/75de5f322ffe889154832f6ebfb08e48257af526 [3] https://github.com/Kwiboo/linux-rockchip/commit/0729b53c825a630c9040d28541d2635a42177361 Original MPEG-2 commit: [4] https://github.com/Kwiboo/linux-rockchip/commit/25d9502927540c6f17c65d52a350b28c664cbf5a Thanks, Jonas > > Add MPEG-2 decoding, only

Re: [PATCH 1/3] [media] rc/keymaps: add keytable for Pine64 IR Remote Controller

2019-02-22 Thread Jonas Karlman
On 2019-02-20 10:57, Sean Young wrote: > On Mon, Feb 18, 2019 at 09:59:36PM +0000, Jonas Karlman wrote: >> This RC map is based on remote key schema at [1], the mouse button key >> did not have an obvious target and was mapped to KEY_CONTEXT_MENU. > How about BTN_LEFT ? That s

[PATCH 3/3] [media] rc/keymaps: add keytable for Khadas IR Remote Controller

2019-02-18 Thread Jonas Karlman
The mouse button key did not have an obvious target and was mapped to KEY_CONTEXT_MENU. Signed-off-by: Jonas Karlman --- drivers/media/rc/keymaps/Makefile| 1 + drivers/media/rc/keymaps/rc-khadas.c | 46 include/media/rc-map.h | 1 + 3 files

[PATCH 2/3] [media] rc/keymaps: add keytable for ODROID IR Remote Controller

2019-02-18 Thread Jonas Karlman
This RC map is based on remote key schema at [1] [1] https://wiki.odroid.com/accessory/connectivity/ir_remote_controller Signed-off-by: Jonas Karlman --- drivers/media/rc/keymaps/Makefile| 1 + drivers/media/rc/keymaps/rc-odroid.c | 46 include/media/rc-map.h

[PATCH 0/3] Add keytable for Pine64, ODROID and Khadas IR Remote

2019-02-18 Thread Jonas Karlman
Add keymaps for the following single board computer vendors IR remotes: - Pine64 IR Remote - ODROID IR Remote - Khadas IR Remote Regards, Jonas Jonas Karlman (3): [media] rc/keymaps: add keytable for Pine64 IR Remote Controller [media] rc/keymaps: add keytable for ODROID IR Remote Controller

[PATCH 1/3] [media] rc/keymaps: add keytable for Pine64 IR Remote Controller

2019-02-18 Thread Jonas Karlman
This RC map is based on remote key schema at [1], the mouse button key did not have an obvious target and was mapped to KEY_CONTEXT_MENU. [1] http://files.pine64.org/doc/Pine%20A64%20Schematic/remote-wit-logo.jpg Signed-off-by: Jonas Karlman --- drivers/media/rc/keymaps/Makefile| 1

Re: [PATCHv5 6/8] vb2: add vb2_find_timestamp()

2018-12-19 Thread Jonas Karlman
On 2018-12-19 08:16, Tomasz Figa wrote: > On Wed, Dec 19, 2018 at 4:04 PM Jonas Karlman wrote: >> On 2018-12-19 06:10, Tomasz Figa wrote: >>> On Thu, Dec 13, 2018 at 9:28 PM Hans Verkuil >>> wrote: >>>> On 12/12/18 7:28 PM, Jonas Karlman wrote: >>

Re: [PATCHv5 6/8] vb2: add vb2_find_timestamp()

2018-12-18 Thread Jonas Karlman
On 2018-12-19 06:10, Tomasz Figa wrote: > On Thu, Dec 13, 2018 at 9:28 PM Hans Verkuil wrote: >> On 12/12/18 7:28 PM, Jonas Karlman wrote: >>> Hi Hans, >>> >>> Since this function only return DEQUEUED and DONE buffers, >>> it cannot be used to find a c

Re: [PATCHv5 5/8] videodev2.h: add v4l2_timeval_to_ns inline function

2018-12-16 Thread Jonas Karlman
_request.c:28: /home/docker/LibreELEC/build.LibreELEC-H3.arm-9.0-devel/toolchain/armv7ve-libreelec-linux-gnueabi/sysroot/usr/include/linux/videodev2.h:975:19: error: unknown type name 'u64'  static __inline__ u64 v4l2_timeval_to_ns(const struct timeval *tv)    ^~~ Regards, Jonas > + > /* Flags for 'flags' field */ > /* Buffer is mapped (flag) */ > #define V4L2_BUF_FLAG_MAPPED 0x0001

Re: [PATCHv5 6/8] vb2: add vb2_find_timestamp()

2018-12-12 Thread Jonas Karlman
ed and multi-slice support using previous tag version of this patchset can be found at: https://github.com/jernejsk/LibreELEC.tv/blob/hw_dec_ffmpeg/projects/Allwinner/patches/linux/0025-H264-fixes.patch#L120-L124 https://github.com/Kwiboo/FFmpeg/compare/4.0.3-Leia-Beta5...v4l2-request-hwaccel Regard

[PATCH] media: v4l: Fix MPEG-2 slice Intra DC Precision validation

2018-11-25 Thread Jonas Karlman
intra_dc_precision is a 2-bit integer [1] allow use of all valid options, 8 - 11 bits precision [1] ISO/IEC 13818-2 Table 6-13 Fixes: c27bb30e7b6d ("media: v4l: Add definitions for MPEG-2 slice format and metadata") Signed-off-by: Jonas Karlman --- drivers/media/v4l2-core/v4l2-c

Project Funding Program

2017-11-23 Thread Austin Jonas
Hello, Can i trust an investment project in your country? accepted please send email for more details. Best Regards Austin Jonas

Reception Troubles with Hauppauge Nova-TD Stick

2011-06-20 Thread Jonas Diemer
I noticed that the LED on the stick has a different color under windows (blue) than under Linux (green) - if that makes any difference. So, is there anyone that can help? Any ideas how I can get this to work? Kind Regards, Jonas -- To unsubscribe from this list: send the line "unsubscr

Re: Remote control not working for Terratec Cinergy C (2.6.37 Mantis driver)

2011-03-02 Thread Jonas Hanschke
just be incorrect and I would be looking for a solution that does not exist - is that just a hunch or do you acutally know it's not working? Jonas 2011/3/1 Marko Ristola : > 28.02.2011 19:26, Jonas Hanschke kirjoitti: >> >> Hi, >> >> despite lots of time spent tinkerin

Remote control not working for Terratec Cinergy C (2.6.37 Mantis driver)

2011-02-28 Thread Jonas Hanschke
n is needed, I will be happy to provide it. However, I am not sure what is useful and what is not and did not want to bloat this message. Thanks in advance, Jonas -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.or

CI USB

2010-01-02 Thread Jonas
roduced a usb stick as well; http://www.smardtv.com/index.php?page=products_listing&rubrique=pctv§ion=usbcam but besides the scary Vista logo on that page, it looks like they target broadcast companies only and not end users. Cheers, - jonas -- To unsubscribe from this list: send the line

Technisat SkyStar2 DVB card (rev 02)

2009-12-05 Thread Jonas Kvinge
5] mt312_read: ret == -121 <3>[ 13.708549] b2c2-flexcop: no frontend driver found for this B2C2/FlexCop adapter <6>[ 13.728109] b2c2_flexcop_pci :02:0c.0: PCI INT A disabled Jonas -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: IR Receiver on an Tevii S470

2009-11-21 Thread Jonas Kvinge
ordomo-info.html > According to the Wiki it's a cx23885. Looks like the IR is on the chip. It's in the Wiki: http://linuxtv.org/wiki/index.php/TeVii_S470 Tevii is listing the card as supported in Linux with ti's own s2api driver download, its here: http://www.tevii.com/Support.asp Jonas -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: pull from http://jusst.de/hg/v4l-dvb

2009-11-15 Thread Jonas Kvinge
Manu Abraham wrote: > Thanks for the feedback. > > I've been looking into the issue you mentioned as well, but still > haven't reached > the destination yet. > Has anyone tested if the S2-1600 has the same problems? Jonas -- To unsubscribe from this list: send

Re: pull from http://jusst.de/hg/v4l-dvb

2009-11-14 Thread Jonas Kvinge
s with SR 25.000, the stream seem to be fine and without interference / corruption. It's hard to lock HD channels with SR 30.000, I managed to lock Discovery HD but the stream was totally corrupted. I think your on to something but there are still problems. Jonas -- To unsubscribe fro

Re: [linux-dvb] Most stable DVB-S2 PCI Card?

2009-11-13 Thread Jonas Kvinge
y > transonder on 1.0W, without them it does not. I also have an S2-3200 and > a NOVA-HD-S2 but they can't handle all transponders symbol rates so I > highly recommend the S2-1600. Bought them for <€50 in Germany. > > /Magnus H > > Why aren't those patches in

Re: [linux-dvb] Most stable DVB-S2 PCI Card?

2009-11-12 Thread Jonas Kvinge
tions would be most appreciated! >> > > > If you don't need the CI part, The TT S2-1600 is a 2nd generation DVB-S2 PCI > card with great performance (supports Symbol rates upto 60MSPS), with support > out of the box from the v4l-dvb tree. > > Regards, > Manu

Hauppauge WinTV-HVR4000(Lite) Nova-HD-S2 LNB Voltage

2009-11-01 Thread Jonas Kvinge
Hi, When measuring the voltage on the card it is between 12.8 and 13.0V, while the set-top box measures 13.6V. I got a pretty long cable to the LNB, approx 30 meters, could this be causing problems for me? Is there a way to increase the voltage by 0.5V? Jonas -- To unsubscribe from this list

TV card working with kernel 2.6.28 not working with kernel 2.6.31

2009-10-23 Thread Norman Jonas
I am an Ubuntu user. Since I switched to the new Karmic release with the new kernel my TV card stopped working. Even explicitly setting the tuner doesnt seem to work. Setting the options explicitly with saa7134 i2c_scan=1 card=49 tuner=5 and tuner no_autodetect=5 addr=0xc6 / 0x63 and any combinatio

Corruption and decoding problems on SD channels with Hauppauge WinTV-Nova-HD-S2, HD channels are fine.]

2009-10-21 Thread Jonas Kvinge
nd version: trunk [22257] www.mythtv.org 2009-10-08 15:58:43.406 Using runtime prefix = /usr/local 2009-10-08 15:58:43.406 Using configuration directory = /home/jonas/.mythtv 2009-10-08 15:58:44.147 Unable to read configuration file mysql.txt 2009-10-08 15:58:44.148 Empty LocalHostName. 2009-10-08

Updated scanfile se-Ornskoldsvik_As

2009-08-03 Thread jonas
QAM64 8k 1/8 NONE T 50600 8MHz 2/3 NONE QAM64 8k 1/8 NONE T 64200 8MHz 2/3 NONE QAM64 8k 1/8 NONE /Jonas -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org

Hauppauge WinTV-HVR-4000 / Nova-HD-S2

2009-04-02 Thread Jonas Kvinge
/Hauppauge_WinTV-HVR-4000 is broken. Jonas -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [linux-dvb] Re : Technotrend Budget S2-3200 Digital artefacts on HDchannels

2009-02-02 Thread Jonas Kvinge
orks out for DVB-S2 only)? > > > - From what I understand the driver still has some issues. Got feedback from another guy with Canal Digital in Norway that he has the same issues as me. Not sure if the diff was an attempt to fix the digital artefacts but I tried applying the diff manua