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
a83a03af
Commit
a83a03af
authored
Dec 11, 2017
by
Kieran Kunhya
Committed by
Your Name
Dec 11, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libavcodec: Move ff_print_debug_info2 to mpegutils.c
parent
bad51e92
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
4 deletions
+8
-4
mpegutils.c
libavcodec/mpegutils.c
+0
-0
mpegutils.h
libavcodec/mpegutils.h
+8
-0
mpegvideo.c
libavcodec/mpegvideo.c
+0
-0
mpegvideo.h
libavcodec/mpegvideo.h
+0
-4
No files found.
libavcodec/mpegutils.c
View file @
a83a03af
This diff is collapsed.
Click to expand it.
libavcodec/mpegutils.h
View file @
a83a03af
...
@@ -137,4 +137,12 @@ void ff_draw_horiz_band(AVCodecContext *avctx, AVFrame *cur, AVFrame *last,
...
@@ -137,4 +137,12 @@ void ff_draw_horiz_band(AVCodecContext *avctx, AVFrame *cur, AVFrame *last,
int
y
,
int
h
,
int
picture_structure
,
int
first_field
,
int
y
,
int
h
,
int
picture_structure
,
int
first_field
,
int
low_delay
);
int
low_delay
);
/**
* Print debugging info for the given picture.
*/
void
ff_print_debug_info2
(
AVCodecContext
*
avctx
,
AVFrame
*
pict
,
uint8_t
*
mbskip_table
,
uint32_t
*
mbtype_table
,
int8_t
*
qscale_table
,
int16_t
(
*
motion_val
[
2
])[
2
],
int
*
low_delay
,
int
mb_width
,
int
mb_height
,
int
mb_stride
,
int
quarter_sample
);
#endif
/* AVCODEC_MPEGUTILS_H */
#endif
/* AVCODEC_MPEGUTILS_H */
libavcodec/mpegvideo.c
View file @
a83a03af
This diff is collapsed.
Click to expand it.
libavcodec/mpegvideo.h
View file @
a83a03af
...
@@ -696,10 +696,6 @@ void ff_mpeg_draw_horiz_band(MpegEncContext *s, int y, int h);
...
@@ -696,10 +696,6 @@ void ff_mpeg_draw_horiz_band(MpegEncContext *s, int y, int h);
void
ff_mpeg_flush
(
AVCodecContext
*
avctx
);
void
ff_mpeg_flush
(
AVCodecContext
*
avctx
);
void
ff_print_debug_info
(
MpegEncContext
*
s
,
Picture
*
p
,
AVFrame
*
pict
);
void
ff_print_debug_info
(
MpegEncContext
*
s
,
Picture
*
p
,
AVFrame
*
pict
);
void
ff_print_debug_info2
(
AVCodecContext
*
avctx
,
AVFrame
*
pict
,
uint8_t
*
mbskip_table
,
uint32_t
*
mbtype_table
,
int8_t
*
qscale_table
,
int16_t
(
*
motion_val
[
2
])[
2
],
int
*
low_delay
,
int
mb_width
,
int
mb_height
,
int
mb_stride
,
int
quarter_sample
);
int
ff_mpv_export_qp_table
(
MpegEncContext
*
s
,
AVFrame
*
f
,
Picture
*
p
,
int
qp_type
);
int
ff_mpv_export_qp_table
(
MpegEncContext
*
s
,
AVFrame
*
f
,
Picture
*
p
,
int
qp_type
);
...
...
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