Hello Guest, if you are reading this it means you have not registered yet. Please take a second, Click here to register, and in a few simple steps you will be able to enjoy our community and use our OpenViX support section.
Page 4 of 4 FirstFirst ... 234
Results 46 to 58 of 58

Thread: missing epg data - opentv

  1. #46

    Title
    Senior Member
    Join Date
    May 2019
    Posts
    110
    Thanks
    14
    Thanked 28 Times in 26 Posts
    @abu baniaz, with reguards to OpenTV zapper do you think it could be ported to openatv, I use epg refresh I select a few channels only for freeview bbc one and E4 but with reguards to IEPG data 1 when I select that in epgrefresh obviously no signal as to speak in autobouqets maker I don't want to have bouquet sky info shown and in epg main setting i have nothing enabled
    I know I can just select a channel on freeview and epg will be pulled in but would be good to have epg there without having to zap to a channel if possible
    1.jpg

  2. #47
    abu baniaz's Avatar
    Title
    Moderator
    Join Date
    Sep 2010
    Location
    East London
    Posts
    23,358
    Thanks
    6,439
    Thanked 9,160 Times in 6,235 Posts
    You will have to ask ATV, but it is just a zapper. You can select iepg from service list instead of bouquet.

  3. The Following User Says Thank You to abu baniaz For This Useful Post:

    urie (13-03-23)

  4. #48
    Joe_90's Avatar
    Title
    Moderator
    Join Date
    Mar 2014
    Location
    Wicklow, Ireland
    Posts
    4,104
    Thanks
    1,272
    Thanked 1,117 Times in 881 Posts
    Quote Originally Posted by BrianG61UK View Post
    Do no other people find that flicking from channel to channel (satellite channels) while OpenTV EPG download starts doesn't cause a problem?

    I'm wondering if it's some weird bug that's specific to Zgemma or to the Zgemma H7.
    Definitely causes an issue (sometimes!). I can't pin it down. I know if I don't disturb the download, then I have no issues with the EPG.
    GB Quad Plus, Mut@nt HD51, AX HD61, 80cm dish and Supreme Dark motor. Sony STR-DN 1060, Sony UHP-H1 Bluray, Odroid N2+ (CoreElec), Monitor Audio Bronze 5.1 speakers

  5. The Following User Says Thank You to Joe_90 For This Useful Post:

    BrianG61UK (13-03-23)

  6. #49

    Title
    V.I.P
    Join Date
    Jan 2011
    Posts
    254
    Thanks
    60
    Thanked 567 Times in 184 Posts
    So this huffman issue only happens when a user zapperdy zap zap zaps on multi-tuner box... eg. zapping tuner 1 while opentv zapper has also initiated an epg download on tuner 2?

    Many..
    < 438.7103> 17:45:54.2754 [huffman] Error. Cannot decode Huffman data
    huffman_root is being reset to NULL each zap prior to the check for valid epg transpoder in the call to the huffman_read_dictionary() function.

    I think moving the code in huffman.cpp for the epg transponder validation check so that it is above the huffman_root NULL should stop those huffman decode errors.

    Code:
    diff --git a/lib/base/huffman.cpp b/lib/base/huffman.cpp
    index 70ef87c8a8..a8e6be661c 100644
    --- a/lib/base/huffman.cpp
    +++ b/lib/base/huffman.cpp
    @@ -12,6 +12,13 @@ type_huffman_node huffman_root;
     bool huffman_read_dictionary (char *file)
     {
     	FILE *fd;
    +	fd = fopen (file, "r");
    +
    +	if (!fd)
    +		return false;
    +	else
    +		eDebug("[huffman] read.. '%s'", file);
    +
     	char line[512];
     	char value[256];
     	char code[256];
    @@ -24,15 +31,6 @@ bool huffman_read_dictionary (char *file)
     	huffman_root.p0 = NULL;
     	huffman_root.p1 = NULL;
     
    -	eDebug("[huffman] read.. '%s'", file);
    -
    -	fd = fopen (file, "r");
    -	if (!fd)
    -	{
    -		//eDebug("[huffman] Cannot open dictionary file");
    -		return false;
    -	}
    -
     	while (fgets (line, sizeof(line), fd))
     	{
     		memset (value, 0, sizeof (value));

  7. The Following 3 Users Say Thank You to LraiZer For This Useful Post:

    abu baniaz (15-03-23),BrianG61UK (21-03-23),Joe_90 (15-03-23)

  8. #50
    Joe_90's Avatar
    Title
    Moderator
    Join Date
    Mar 2014
    Location
    Wicklow, Ireland
    Posts
    4,104
    Thanks
    1,272
    Thanked 1,117 Times in 881 Posts
    Quote Originally Posted by LraiZer View Post
    So this huffman issue only happens when a user zapperdy zap zap zaps on multi-tuner box... eg. zapping tuner 1 while opentv zapper has also initiated an epg download on tuner 2?

    Many..


    huffman_root is being reset to NULL each zap prior to the check for valid epg transpoder in the call to the huffman_read_dictionary() function.

    I think moving the code in huffman.cpp for the epg transponder validation check so that it is above the huffman_root NULL should stop those huffman decode errors.

    ...
    Yep - I think that about describes the error situation - zapping while the OpenTVzapper is running seems to trigger the runaway error messages. It would be great if a code change could be made. Happy to test.
    GB Quad Plus, Mut@nt HD51, AX HD61, 80cm dish and Supreme Dark motor. Sony STR-DN 1060, Sony UHP-H1 Bluray, Odroid N2+ (CoreElec), Monitor Audio Bronze 5.1 speakers

  9. #51
    abu baniaz's Avatar
    Title
    Moderator
    Join Date
    Sep 2010
    Location
    East London
    Posts
    23,358
    Thanks
    6,439
    Thanked 9,160 Times in 6,235 Posts
    I have submitted a pull request here: https://github.com/OpenViX/enigma2/pull/849
    A build will need to be run for it to be tested

  10. The Following 2 Users Say Thank You to abu baniaz For This Useful Post:

    BrianG61UK (21-03-23),Joe_90 (15-03-23)

  11. #52

    Title
    V.I.P
    Join Date
    Jan 2011
    Posts
    254
    Thanks
    60
    Thanked 567 Times in 184 Posts
    patch missing this line from above...
    Code:
    -	eDebug("[huffman] read.. '%s'", file);

  12. The Following 3 Users Say Thank You to LraiZer For This Useful Post:

    abu baniaz (15-03-23),BrianG61UK (21-03-23),Joe_90 (15-03-23)

  13. #53
    abu baniaz's Avatar
    Title
    Moderator
    Join Date
    Sep 2010
    Location
    East London
    Posts
    23,358
    Thanks
    6,439
    Thanked 9,160 Times in 6,235 Posts
    @joe_90
    Any update on the change. If OK, we can submit pull request to other images.

  14. #54
    Joe_90's Avatar
    Title
    Moderator
    Join Date
    Mar 2014
    Location
    Wicklow, Ireland
    Posts
    4,104
    Thanks
    1,272
    Thanked 1,117 Times in 881 Posts
    Waiting on dev build 6.3.004.013 - the 011 and 012 builds did not work for me as there was a bug in menu.py which surfaced in my sorted menu. I did run the 012 build for a couple of days unattended on my single tuner HD61and the scheduled run of OpenTVzapper worked fine, but I didn't try to provoke the huffman error. Once 013 is available I will download later tonight on my Quad Plus and test.
    GB Quad Plus, Mut@nt HD51, AX HD61, 80cm dish and Supreme Dark motor. Sony STR-DN 1060, Sony UHP-H1 Bluray, Odroid N2+ (CoreElec), Monitor Audio Bronze 5.1 speakers

  15. #55
    Joe_90's Avatar
    Title
    Moderator
    Join Date
    Mar 2014
    Location
    Wicklow, Ireland
    Posts
    4,104
    Thanks
    1,272
    Thanked 1,117 Times in 881 Posts
    Dev build 013 does not seem to have completed for ax61HD. I did flash the 013 build for the QuadPlus early this morning and will test it.
    GB Quad Plus, Mut@nt HD51, AX HD61, 80cm dish and Supreme Dark motor. Sony STR-DN 1060, Sony UHP-H1 Bluray, Odroid N2+ (CoreElec), Monitor Audio Bronze 5.1 speakers

  16. #56
    Joe_90's Avatar
    Title
    Moderator
    Join Date
    Mar 2014
    Location
    Wicklow, Ireland
    Posts
    4,104
    Thanks
    1,272
    Thanked 1,117 Times in 881 Posts
    Dev build 014 has completed for the AX61HD. Have downloaded and flashed ok. Looks good so far. My AX61HD has only a single DVB-S tuner, so can't verify huffman issue on it. I am testing that on the Quad Plus.
    GB Quad Plus, Mut@nt HD51, AX HD61, 80cm dish and Supreme Dark motor. Sony STR-DN 1060, Sony UHP-H1 Bluray, Odroid N2+ (CoreElec), Monitor Audio Bronze 5.1 speakers

  17. #57
    Joe_90's Avatar
    Title
    Moderator
    Join Date
    Mar 2014
    Location
    Wicklow, Ireland
    Posts
    4,104
    Thanks
    1,272
    Thanked 1,117 Times in 881 Posts
    Dev build 014 for Quad Plus tested for the "huffman error" bug. I can't provoke the runaway log error, despite switching DVB-S and DVB-T channels and starting recordings etc. while the OpenTVZapper is running. Problem seems fixed on the development/test image. Should be good for Release. Thanks @LraiZer and @abu baniaz!
    GB Quad Plus, Mut@nt HD51, AX HD61, 80cm dish and Supreme Dark motor. Sony STR-DN 1060, Sony UHP-H1 Bluray, Odroid N2+ (CoreElec), Monitor Audio Bronze 5.1 speakers

  18. The Following User Says Thank You to Joe_90 For This Useful Post:

    abu baniaz (22-03-23)

  19. #58

    Title
    Forum Supporter
    Donated Member
    Join Date
    Oct 2022
    Location
    Berkshire England. 51.4°N, 0.9°W
    Posts
    79
    Thanks
    107
    Thanked 24 Times in 17 Posts
    I just built myself a 6.3.004.015 developer image for my Zgemma H7S and I too am unable to provoke it into showing blank EPG entries by doing things like channel zapping while OpenTV EPG download is occurring.

    This is most excellent news.

    Thank you @LraiZer.
    Zgemma H7S, Fixed 28.2°E dish, Freeview (Hannington). ABM Providers: [Sky UK; Thames Valley SD Custom; HD swap], [Freeview (UK); Berks and North Hants]

  20. The Following 2 Users Say Thank You to BrianG61UK For This Useful Post:

    abu baniaz (22-03-23),Joe_90 (21-03-23)

Page 4 of 4 FirstFirst ... 234

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
This website uses cookies
We use cookies to store session information to facilitate remembering your login information, to allow you to save website preferences, to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners.