Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GstLAL
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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
spiir-group
GstLAL
Commits
15082b10
Commit
15082b10
authored
12 years ago
by
Kipp Cannon
Browse files
Options
Downloads
Patches
Plain Diff
framecpp_igwdparse: fix warnings about int conversions
parent
7073d727
Branches
gstlal-ugly-0.3.x
Tags
gstlal-ugly-0.3.1-v2
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
gstlal-ugly/gst/framecpp/framecpp_igwdparse.cc
+2
-2
2 additions, 2 deletions
gstlal-ugly/gst/framecpp/framecpp_igwdparse.cc
gstlal-ugly/gst/framecpp/framecpp_igwdparse.h
+4
-4
4 additions, 4 deletions
gstlal-ugly/gst/framecpp/framecpp_igwdparse.h
with
6 additions
and
6 deletions
gstlal-ugly/gst/framecpp/framecpp_igwdparse.cc
+
2
−
2
View file @
15082b10
...
...
@@ -171,7 +171,7 @@ static void parse_table_6(GSTFrameCPPIGWDParse *element, const guint8 *data, gui
}
static
void
parse_table_7
(
GSTFrameCPPIGWDParse
*
element
,
const
guint8
*
data
,
guint
64
length
,
guint16
*
eof_klass
,
guint16
*
frameh_klass
)
static
void
parse_table_7
(
GSTFrameCPPIGWDParse
*
element
,
const
guint8
*
data
,
guint
length
,
guint16
*
eof_klass
,
guint16
*
frameh_klass
)
{
GstByteReader
reader
=
GST_BYTE_READER_INIT
(
data
+
element
->
sizeof_table_6
,
length
-
element
->
sizeof_table_6
);
const
gchar
*
name
=
fr_get_string
(
element
,
&
reader
);
...
...
@@ -186,7 +186,7 @@ static void parse_table_7(GSTFrameCPPIGWDParse *element, const guint8 *data, gui
}
static
void
parse_table_9
(
GSTFrameCPPIGWDParse
*
element
,
const
guint8
*
data
,
guint
64
length
,
GstClockTime
*
start
,
GstClockTime
*
stop
)
static
void
parse_table_9
(
GSTFrameCPPIGWDParse
*
element
,
const
guint8
*
data
,
guint
length
,
GstClockTime
*
start
,
GstClockTime
*
stop
)
{
GstByteReader
reader
=
GST_BYTE_READER_INIT
(
data
+
element
->
sizeof_table_6
,
length
-
element
->
sizeof_table_6
);
const
gchar
*
name
=
fr_get_string
(
element
,
&
reader
);
...
...
This diff is collapsed.
Click to expand it.
gstlal-ugly/gst/framecpp/framecpp_igwdparse.h
+
4
−
4
View file @
15082b10
...
...
@@ -56,10 +56,10 @@ typedef struct {
GstBaseParse
element
;
gint
endianness
;
gint
sizeof_int_2
;
gint
sizeof_int_4
;
gint
sizeof_int_8
;
gint
sizeof_table_6
;
g
u
int
sizeof_int_2
;
g
u
int
sizeof_int_4
;
g
u
int
sizeof_int_8
;
g
u
int
sizeof_table_6
;
guint16
frameh_klass
;
guint16
eof_klass
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment