Skip to content

Commit

Permalink
Merge pull request erikkaashoek#117 from fancybits/fix-csv-load-cc
Browse files Browse the repository at this point in the history
Fix loading CC data from CSV
  • Loading branch information
erikkaashoek authored Mar 3, 2020
2 parents 7328848 + 50cc88a commit c8f8881
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion comskip.c
Original file line number Diff line number Diff line change
Expand Up @@ -14319,7 +14319,7 @@ void ProcessCSV(FILE *in_file)
cont = fread(ccData,ccDataLen,1, dump_data_file);
if (!cont)
break;
framenum = ccDataFrame-2;
framenum = ccDataFrame;
#ifdef PROCESS_CC
if (processCC) ProcessCCData();
if (output_srt || output_smi) process_block(ccData, (int)ccDataLen);
Expand Down

0 comments on commit c8f8881

Please sign in to comment.