ccextractor icon indicating copy to clipboard operation
ccextractor copied to clipboard

[FIX] Unexpected behavior of get_write_interval

Open IshanGrover2004 opened this issue 1 month ago • 2 comments

In raising this pull request, I confirm the following (please check boxes):

  • [x] I have read and understood the contributors guide.
  • [x] I have checked that another pull request for this purpose does not exist.
  • [x] I have considered, and confirmed that this submission will be valuable to others.
  • [x] I accept that this submission may not be used, and the pull request closed at the will of the maintainer.
  • [x] I give this submission freely, and claim no ownership to its content.
  • [x] I have mentioned this change in the changelog.

My familiarity with the project is as follows (check one):

  • [ ] I have never used CCExtractor.
  • [ ] I have used CCExtractor just a couple of times.
  • [ ] I absolutely love CCExtractor, but have not contributed previously.
  • [x] I am an active contributor to CCExtractor.

Closes #1606

Issue addresed

This pull request addresses issue #1606 where the get_write_interval function incorrectly returns (0,209) for a packet does not contain captions, implying that caption packets are available from index 0 to 209 which needs to be corrected.

Correction Made

The correction ensures that the correct interval (0,0) is returned, indicating that there are no captions available to write.

Implementation Details

By initialising last variable which stores last caption available by 0

IshanGrover2004 avatar May 11 '24 18:05 IshanGrover2004