Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
external
libvpx
Commits
834f2fbc
Commit
834f2fbc
authored
11 years ago
by
Dmitry Kovalev
Browse files
Options
Download
Patches
Plain Diff
Adapting decode_with_drops example to use new file reading API.
Change-Id: Idd1acfcf8bb16a2ddb9c6c1c841a7741e90589d9
parent
c3821361
v1.14.0-linphone
1.4.X
feature/update_to_v1.9.0-linphone
feature/uwp_nuget
frame_parallel
highbitdepth
indianrunnerduck
javanwhistlingduck
khakicampbell
linphone
linphone-android
linphone-old
longtailedduck
m49-2623
m52-2743
m54-2840
m56-2924
m66-3359
m68-3440
mandarinduck
nextgen
nextgenv2
playground
sandbox/Jingning/experimental
sandbox/Jingning/transcode
sandbox/Jingning/vpx
sandbox/aconverse@google.com/ansbench
sandbox/hkuang/frame_parallel
sandbox/hkuang@google.com/decode
sandbox/jimbankoski@google.com/proposed-aom
sandbox/jingning@google.com/decoder_test_suite
sandbox/jingning@google.com/experimental
sandbox/jzern@google.com/test
sandbox/wangch@google.com/vp9
sandbox/yaowu@google.com/mergeaom
v1.12.0-linphone
v1.6.1_linphone
v1.7.0-linphone
v1.9.0-linphone
v1.9.0
v1.9.0-rc1
v1.8.2
v1.8.1
v1.8.0
v1.7.0
v1.6.1
v1.6.0
v1.5.0
v1.4.0
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
examples.mk
+2
-0
examples.mk
examples/decode_with_drops.c
+81
-104
examples/decode_with_drops.c
with
83 additions
and
104 deletions
examples.mk
+
2
−
0
View file @
834f2fbc
...
...
@@ -99,6 +99,8 @@ force_keyframe.GUID = 3C67CADF-029F-4C86-81F5-D6D4F51177F0
force_keyframe.DESCRIPTION
=
Force generation of keyframes
ifeq
($(CONFIG_DECODERS),yes)
GEN_EXAMPLES-$(CONFIG_VP8_ENCODER)
+=
decode_with_drops.c
decode_with_drops.SRCS
+=
ivfdec.h ivfdec.c
decode_with_drops.SRCS
+=
tools_common.h tools_common.c
endif
decode_with_drops.GUID
=
CE5C53C4-8DDA-438A-86ED-0DDD3CDB8D26
decode_with_drops.DESCRIPTION
=
Drops frames
while
decoding
...
...
This diff is collapsed.
Click to expand it.
examples/decode_with_drops.c
+
81
−
104
View file @
834f2fbc
...
...
@@ -52,126 +52,103 @@
// The example decides whether to drop the frame based on the current
// frame number, immediately before decoding the frame.
#include
<stdarg.h>
#include
<stdio.h>
#include
<stdlib.h>
#include
<string.h>
#include
"./ivfdec.h"
#define VPX_CODEC_DISABLE_COMPAT 1
#include
"./vpx_config.h"
#include
"vpx/vp8dx.h"
#include
"vpx/vpx_decoder.h"
#define interface (vpx_codec_vp8_dx())
#include
"./tools_common.h"
#include
"./vpx_config.h"
#define IVF_FILE_HDR_SZ (32)
#define IVF_FRAME_HDR_SZ (12)
static
const
char
*
exec_name
;
static
unsigned
int
mem_get_le32
(
const
unsigned
char
*
mem
)
{
return
(
mem
[
3
]
<<
24
)
|
(
mem
[
2
]
<<
16
)
|
(
mem
[
1
]
<<
8
)
|
(
mem
[
0
]);
void
usage_exit
()
{
fprintf
(
stderr
,
"Usage: %s <infile> <outfile> <N-M|N/M>
\n
"
,
exec_name
);
exit
(
EXIT_FAILURE
);
}
static
void
die
(
const
char
*
fmt
,
...)
{
va_list
ap
;
int
main
(
int
argc
,
char
**
argv
)
{
FILE
*
infile
,
*
outfile
;
vpx_codec_ctx_t
codec
;
vpx_codec_iface_t
*
iface
;
int
flags
=
0
,
frame_cnt
=
0
;
vpx_video_t
*
video
;
int
n
,
m
,
is_range
;
char
*
nptr
;
exec_name
=
argv
[
0
];
va_start
(
ap
,
fmt
);
vprintf
(
fmt
,
ap
);
if
(
fmt
[
strlen
(
fmt
)
-
1
]
!=
'\n'
)
printf
(
"
\n
"
);
exit
(
EXIT_FAILURE
);
}
if
(
argc
!=
4
)
die
(
"Invalid number of arguments"
);
static
void
die_codec
(
vpx_codec_ctx_t
*
ctx
,
const
char
*
s
)
{
const
char
*
detail
=
vpx_codec_error_detail
(
ctx
);
if
(
!
(
infile
=
fopen
(
argv
[
1
],
"rb"
)))
die
(
"Failed to open %s for reading"
,
argv
[
1
]
);
printf
(
"%s: %s
\n
"
,
s
,
vpx_codec_error
(
ctx
));
if
(
detail
)
printf
(
" %s
\n
"
,
detail
);
exit
(
EXIT_FAILURE
);
}
if
(
!
(
outfile
=
fopen
(
argv
[
2
],
"wb"
)))
die
(
"Failed to open %s for writing"
,
argv
[
2
]);
n
=
strtol
(
argv
[
3
],
&
nptr
,
0
);
m
=
strtol
(
nptr
+
1
,
NULL
,
0
);
is_range
=
(
*
nptr
==
'-'
);
if
(
!
n
||
!
m
||
(
*
nptr
!=
'-'
&&
*
nptr
!=
'/'
))
die
(
"Couldn't parse pattern %s
\n
"
,
argv
[
3
]);
int
main
(
int
argc
,
char
**
argv
)
{
FILE
*
infile
,
*
outfile
;
vpx_codec_ctx_t
codec
;
int
flags
=
0
,
frame_cnt
=
0
;
unsigned
char
file_hdr
[
IVF_FILE_HDR_SZ
];
unsigned
char
frame_hdr
[
IVF_FRAME_HDR_SZ
];
unsigned
char
frame
[
256
*
1024
];
vpx_codec_err_t
res
;
int
n
,
m
,
is_range
;
(
void
)
res
;
/* Open files */
if
(
argc
!=
4
)
die
(
"Usage: %s <infile> <outfile> <N-M|N/M>
\n
"
,
argv
[
0
]);
{
char
*
nptr
;
n
=
strtol
(
argv
[
3
],
&
nptr
,
0
);
m
=
strtol
(
nptr
+
1
,
NULL
,
0
);
is_range
=
*
nptr
==
'-'
;
if
(
!
n
||
!
m
||
(
*
nptr
!=
'-'
&&
*
nptr
!=
'/'
))
die
(
"Couldn't parse pattern %s
\n
"
,
argv
[
3
]);
}
if
(
!
(
infile
=
fopen
(
argv
[
1
],
"rb"
)))
die
(
"Failed to open %s for reading"
,
argv
[
1
]);
if
(
!
(
outfile
=
fopen
(
argv
[
2
],
"wb"
)))
die
(
"Failed to open %s for writing"
,
argv
[
2
]);
/* Read file header */
if
(
!
(
fread
(
file_hdr
,
1
,
IVF_FILE_HDR_SZ
,
infile
)
==
IVF_FILE_HDR_SZ
&&
file_hdr
[
0
]
==
'D'
&&
file_hdr
[
1
]
==
'K'
&&
file_hdr
[
2
]
==
'I'
&&
file_hdr
[
3
]
==
'F'
))
die
(
"%s is not an IVF file."
,
argv
[
1
]);
printf
(
"Using %s
\n
"
,
vpx_codec_iface_name
(
interface
));
/* Initialize codec */
if
(
vpx_codec_dec_init
(
&
codec
,
interface
,
NULL
,
flags
))
die_codec
(
&
codec
,
"Failed to initialize decoder"
);
/* Read each frame */
while
(
fread
(
frame_hdr
,
1
,
IVF_FRAME_HDR_SZ
,
infile
)
==
IVF_FRAME_HDR_SZ
)
{
int
frame_sz
=
mem_get_le32
(
frame_hdr
);
vpx_codec_iter_t
iter
=
NULL
;
vpx_image_t
*
img
;
frame_cnt
++
;
if
(
frame_sz
>
sizeof
(
frame
))
die
(
"Frame %d data too big for example code buffer"
,
frame_sz
);
if
(
fread
(
frame
,
1
,
frame_sz
,
infile
)
!=
frame_sz
)
die
(
"Frame %d failed to read complete frame"
,
frame_cnt
);
if
((
is_range
&&
frame_cnt
>=
n
&&
frame_cnt
<=
m
)
||
(
!
is_range
&&
m
-
(
frame_cnt
-
1
)
%
m
<=
n
))
{
putc
(
'X'
,
stdout
);
continue
;
}
putc
(
'.'
,
stdout
);
fflush
(
stdout
);
/* Decode the frame */
if
(
vpx_codec_decode
(
&
codec
,
frame
,
frame_sz
,
NULL
,
0
))
die_codec
(
&
codec
,
"Failed to decode frame"
);
/* Write decoded data to disk */
while
((
img
=
vpx_codec_get_frame
(
&
codec
,
&
iter
)))
{
unsigned
int
plane
,
y
;
for
(
plane
=
0
;
plane
<
3
;
plane
++
)
{
unsigned
char
*
buf
=
img
->
planes
[
plane
];
for
(
y
=
0
;
y
<
(
plane
?
(
img
->
d_h
+
1
)
>>
1
:
img
->
d_h
);
y
++
)
{
(
void
)
fwrite
(
buf
,
1
,
(
plane
?
(
img
->
d_w
+
1
)
>>
1
:
img
->
d_w
),
outfile
);
buf
+=
img
->
stride
[
plane
];
}
}
}
video
=
vpx_video_open_file
(
infile
);
if
(
!
video
)
die
(
"%s is not a supported input file."
,
argv
[
1
]);
iface
=
get_codec_interface
(
vpx_video_get_fourcc
(
video
));
if
(
!
iface
)
die
(
"Unknown FOURCC code."
);
printf
(
"Using %s
\n
"
,
vpx_codec_iface_name
(
iface
));
if
(
vpx_codec_dec_init
(
&
codec
,
iface
,
NULL
,
flags
))
die_codec
(
&
codec
,
"Failed to initialize decoder"
);
while
(
vpx_video_read_frame
(
video
))
{
vpx_codec_iter_t
iter
=
NULL
;
vpx_image_t
*
img
=
NULL
;
size_t
frame_size
=
0
;
int
skip
;
const
unsigned
char
*
frame
=
vpx_video_get_frame
(
video
,
&
frame_size
);
if
(
vpx_codec_decode
(
&
codec
,
frame
,
frame_size
,
NULL
,
0
))
die_codec
(
&
codec
,
"Failed to decode frame"
);
++
frame_cnt
;
skip
=
(
is_range
&&
frame_cnt
>=
n
&&
frame_cnt
<=
m
)
||
(
!
is_range
&&
m
-
(
frame_cnt
-
1
)
%
m
<=
n
);
if
(
!
skip
)
{
putc
(
'.'
,
stdout
);
while
((
img
=
vpx_codec_get_frame
(
&
codec
,
&
iter
))
!=
NULL
)
vpx_img_write
(
img
,
outfile
);
}
else
{
putc
(
'X'
,
stdout
);
}
printf
(
"Processed %d frames.
\n
"
,
frame_cnt
);
if
(
vpx_codec_destroy
(
&
codec
))
die_codec
(
&
codec
,
"Failed to destroy codec"
);
fclose
(
outfile
);
fclose
(
infile
);
return
EXIT_SUCCESS
;
fflush
(
stdout
);
}
printf
(
"Processed %d frames.
\n
"
,
frame_cnt
);
if
(
vpx_codec_destroy
(
&
codec
))
die_codec
(
&
codec
,
"Failed to destroy codec"
);
printf
(
"Play: ffplay -f rawvideo -pix_fmt yuv420p -s %dx%d %s
\n
"
,
vpx_video_get_width
(
video
),
vpx_video_get_height
(
video
),
argv
[
2
]);
vpx_video_close
(
video
);
fclose
(
outfile
);
fclose
(
infile
);
return
EXIT_SUCCESS
;
}
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
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
Menu
Explore
Projects
Groups
Topics
Snippets