Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LDAS_Tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IGWN Computing and Software
ldastools
LDAS_Tools
Merge requests
!195
Resolve "Unknown compression mode: 10(0xa) error reading frames with framecpp 3.0.2"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Unknown compression mode: 10(0xa) error reading frames with framecpp 3.0.2"
ed-maros/LDAS_Tools:190-v8-v9-compression-type-conversion
into
master
Overview
0
Commits
4
Pipelines
0
Changes
3
Merged
Ed Maros
requested to merge
ed-maros/LDAS_Tools:190-v8-v9-compression-type-conversion
into
master
1 year ago
Overview
0
Commits
4
Pipelines
0
Changes
3
Expand
Description
API Changes and Justification
Backwards Compatible Changes
This change does not modify any class/function/struct/type definitions in a public C header file or any Python class/function definitions
This change adds new classes/functions/structs/types to a public C header file or Python module
Backwards Incompatible Changes
This change modifies an existing class/function/struct/type definition in a public C header file or Python module
This change removes an existing class/function/struct/type from a public C header file or Python module
Review Status
Closes
#190 (closed)
0
0
Merge request reports
Viewing commit
396041b1
Prev
Next
Show latest version
3 files
+
3
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
396041b1
Corrected signed cmoparissons
· 396041b1
Ed Maros
authored
1 year ago
framecpp/src/Version9/impl/FrTOCEventClassicIO.hh
+
1
−
1
Options
@@ -178,7 +178,7 @@ namespace FrameCPP
Stream
>>
nTotalEvent
;
if
(
nTotalEvent
!=
nevent_sum
)
if
(
nTotalEvent
!=
nTotalEvent_type
(
nevent_sum
)
)
{
throw
std
::
runtime_error
(
"nTotalEvent is not the sumation of nEvent"
);
Loading