Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
3fc08304
Commit
3fc08304
authored
Oct 19, 2011
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpeg12: move closed_gop from MpegEncContext to Mpeg1Context
It's MPEG-1/2 specific.
parent
da22ba7d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
mpeg12.c
libavcodec/mpeg12.c
+4
-3
mpeg12.h
libavcodec/mpeg12.h
+1
-0
mpegvideo.c
libavcodec/mpegvideo.c
+0
-1
mpegvideo.h
libavcodec/mpegvideo.h
+0
-1
No files found.
libavcodec/mpeg12.c
View file @
3fc08304
...
...
@@ -2111,7 +2111,7 @@ static void mpeg_decode_gop(AVCodecContext *avctx,
time_code_seconds
=
get_bits
(
&
s
->
gb
,
6
);
time_code_pictures
=
get_bits
(
&
s
->
gb
,
6
);
s
->
closed_gop
=
get_bits1
(
&
s
->
gb
);
s
1
->
closed_gop
=
get_bits1
(
&
s
->
gb
);
/*broken_link indicate that after editing the
reference frames of the first B-Frames after GOP I-Frame
are missing (open gop)*/
...
...
@@ -2120,7 +2120,7 @@ static void mpeg_decode_gop(AVCodecContext *avctx,
if
(
s
->
avctx
->
debug
&
FF_DEBUG_PICT_INFO
)
av_log
(
s
->
avctx
,
AV_LOG_DEBUG
,
"GOP (%2d:%02d:%02d.[%02d]) closed_gop=%d broken_link=%d
\n
"
,
time_code_hours
,
time_code_minutes
,
time_code_seconds
,
time_code_pictures
,
s
->
closed_gop
,
broken_link
);
time_code_pictures
,
s
1
->
closed_gop
,
broken_link
);
}
/**
* Find the end of the current frame in the bitstream.
...
...
@@ -2383,7 +2383,7 @@ static int decode_chunks(AVCodecContext *avctx,
if
(
s2
->
last_picture_ptr
==
NULL
)
{
/* Skip B-frames if we do not have reference frames and gop is not closed */
if
(
s2
->
pict_type
==
AV_PICTURE_TYPE_B
)
{
if
(
!
s
2
->
closed_gop
)
if
(
!
s
->
closed_gop
)
break
;
}
}
...
...
@@ -2467,6 +2467,7 @@ static void flush(AVCodecContext *avctx)
Mpeg1Context
*
s
=
avctx
->
priv_data
;
s
->
sync
=
0
;
s
->
closed_gop
=
0
;
ff_mpeg_flush
(
avctx
);
}
...
...
libavcodec/mpeg12.h
View file @
3fc08304
...
...
@@ -42,6 +42,7 @@ typedef struct Mpeg1Context {
AVRational
frame_rate_ext
;
///< MPEG-2 specific framerate modificator
int
sync
;
///< Did we reach a sync point like a GOP/SEQ/KEYFrame?
int
full_pel
[
2
];
int
closed_gop
;
///< GOP is closed
}
Mpeg1Context
;
extern
uint8_t
ff_mpeg12_static_rl_table_store
[
2
][
2
][
2
*
MAX_RUN
+
MAX_LEVEL
+
3
];
...
...
libavcodec/mpegvideo.c
View file @
3fc08304
...
...
@@ -2404,7 +2404,6 @@ void ff_mpeg_flush(AVCodecContext *avctx){
s
->
current_picture_ptr
=
s
->
last_picture_ptr
=
s
->
next_picture_ptr
=
NULL
;
s
->
mb_x
=
s
->
mb_y
=
0
;
s
->
closed_gop
=
0
;
s
->
parse_context
.
state
=
-
1
;
s
->
parse_context
.
frame_start_found
=
0
;
...
...
libavcodec/mpegvideo.h
View file @
3fc08304
...
...
@@ -329,7 +329,6 @@ typedef struct MpegEncContext {
int
*
lambda_table
;
int
adaptive_quant
;
///< use adaptive quantization
int
dquant
;
///< qscale difference to prev qscale
int
closed_gop
;
///< MPEG1/2 GOP is closed
int
pict_type
;
///< AV_PICTURE_TYPE_I, AV_PICTURE_TYPE_P, AV_PICTURE_TYPE_B, ...
int
last_pict_type
;
//FIXME removes
int
last_non_b_pict_type
;
///< used for mpeg4 gmc b-frames & ratecontrol
...
...
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