Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
a4baf96a
Commit
a4baf96a
authored
Jun 21, 2013
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avprobe: rename the prettyprint structures
parent
cd7b6dee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
avprobe.c
avprobe.c
+10
-10
No files found.
avprobe.c
View file @
a4baf96a
...
@@ -82,17 +82,17 @@ static void exit_program(void)
...
@@ -82,17 +82,17 @@ static void exit_program(void)
typedef
enum
{
typedef
enum
{
ARRAY
,
ARRAY
,
OBJECT
OBJECT
}
Pr
obe
ElementType
;
}
Pr
int
ElementType
;
typedef
struct
{
typedef
struct
{
const
char
*
name
;
const
char
*
name
;
Pr
obe
ElementType
type
;
Pr
int
ElementType
type
;
int64_t
index
;
int64_t
index
;
int64_t
nb_elems
;
int64_t
nb_elems
;
}
Pr
obe
Element
;
}
Pr
int
Element
;
typedef
struct
{
typedef
struct
{
Pr
obe
Element
*
prefix
;
Pr
int
Element
*
prefix
;
int
level
;
int
level
;
void
(
*
print_header
)(
void
);
void
(
*
print_header
)(
void
);
void
(
*
print_footer
)(
void
);
void
(
*
print_footer
)(
void
);
...
@@ -104,10 +104,10 @@ typedef struct {
...
@@ -104,10 +104,10 @@ typedef struct {
void
(
*
print_integer
)
(
const
char
*
key
,
int64_t
value
);
void
(
*
print_integer
)
(
const
char
*
key
,
int64_t
value
);
void
(
*
print_string
)
(
const
char
*
key
,
const
char
*
value
);
void
(
*
print_string
)
(
const
char
*
key
,
const
char
*
value
);
}
Outpu
tContext
;
}
Prin
tContext
;
static
AVIOContext
*
probe_out
=
NULL
;
static
AVIOContext
*
probe_out
=
NULL
;
static
Outpu
tContext
octx
;
static
Prin
tContext
octx
;
#define AVP_INDENT() avio_printf(probe_out, "%*c", octx.level * 2, ' ')
#define AVP_INDENT() avio_printf(probe_out, "%*c", octx.level * 2, ' ')
/*
/*
...
@@ -166,7 +166,7 @@ static void ini_print_array_header(const char *name)
...
@@ -166,7 +166,7 @@ static void ini_print_array_header(const char *name)
static
void
ini_print_object_header
(
const
char
*
name
)
static
void
ini_print_object_header
(
const
char
*
name
)
{
{
int
i
;
int
i
;
Pr
obe
Element
*
el
=
octx
.
prefix
+
octx
.
level
-
1
;
Pr
int
Element
*
el
=
octx
.
prefix
+
octx
.
level
-
1
;
if
(
el
->
nb_elems
)
if
(
el
->
nb_elems
)
avio_printf
(
probe_out
,
"
\n
"
);
avio_printf
(
probe_out
,
"
\n
"
);
...
@@ -362,7 +362,7 @@ static void probe_group_enter(const char *name, int type)
...
@@ -362,7 +362,7 @@ static void probe_group_enter(const char *name, int type)
int64_t
count
=
-
1
;
int64_t
count
=
-
1
;
octx
.
prefix
=
octx
.
prefix
=
av_realloc
(
octx
.
prefix
,
sizeof
(
Pr
obe
Element
)
*
(
octx
.
level
+
1
));
av_realloc
(
octx
.
prefix
,
sizeof
(
Pr
int
Element
)
*
(
octx
.
level
+
1
));
if
(
!
octx
.
prefix
||
!
name
)
{
if
(
!
octx
.
prefix
||
!
name
)
{
fprintf
(
stderr
,
"Out of memory
\n
"
);
fprintf
(
stderr
,
"Out of memory
\n
"
);
...
@@ -370,13 +370,13 @@ static void probe_group_enter(const char *name, int type)
...
@@ -370,13 +370,13 @@ static void probe_group_enter(const char *name, int type)
}
}
if
(
octx
.
level
)
{
if
(
octx
.
level
)
{
Pr
obe
Element
*
parent
=
octx
.
prefix
+
octx
.
level
-
1
;
Pr
int
Element
*
parent
=
octx
.
prefix
+
octx
.
level
-
1
;
if
(
parent
->
type
==
ARRAY
)
if
(
parent
->
type
==
ARRAY
)
count
=
parent
->
nb_elems
;
count
=
parent
->
nb_elems
;
parent
->
nb_elems
++
;
parent
->
nb_elems
++
;
}
}
octx
.
prefix
[
octx
.
level
++
]
=
(
Pr
obe
Element
){
name
,
type
,
count
,
0
};
octx
.
prefix
[
octx
.
level
++
]
=
(
Pr
int
Element
){
name
,
type
,
count
,
0
};
}
}
static
void
probe_group_leave
(
void
)
static
void
probe_group_leave
(
void
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment