Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
libremedia
Tethys
FFmpeg
Commits
578b911b
Commit
578b911b
authored
9 years ago
by
Aman Gupta
Committed by
Clément Bœsch
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Revert "lavc/ccaption_dec: implement "erase non displayed memory""
This reverts commit
26abdd61
.
parent
23a50c8a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavcodec/ccaption_dec.c
+7
-8
7 additions, 8 deletions
libavcodec/ccaption_dec.c
with
7 additions
and
8 deletions
libavcodec/ccaption_dec.c
+
7
−
8
View file @
578b911b
...
...
@@ -361,9 +361,12 @@ static void handle_pac(CCaptionSubContext *ctx, uint8_t hi, uint8_t lo)
}
}
static
void
handle_erase
(
CCaptionSubContext
*
ctx
,
int64_t
pts
,
int
n_screen
)
/**
* @param pts it is required to set end time
*/
static
void
handle_edm
(
CCaptionSubContext
*
ctx
,
int64_t
pts
)
{
struct
Screen
*
screen
=
ctx
->
screen
+
n
_screen
;
struct
Screen
*
screen
=
ctx
->
screen
+
ctx
->
active
_screen
;
reap_screen
(
ctx
,
pts
);
screen
->
row_used
=
0
;
...
...
@@ -371,7 +374,7 @@ static void handle_erase(CCaptionSubContext *ctx, int64_t pts, int n_screen)
static
void
handle_eoc
(
CCaptionSubContext
*
ctx
,
int64_t
pts
)
{
handle_e
rase
(
ctx
,
pts
,
ctx
->
active_screen
);
handle_e
dm
(
ctx
,
pts
);
ctx
->
active_screen
=
!
ctx
->
active_screen
;
ctx
->
cursor_column
=
0
;
}
...
...
@@ -452,7 +455,7 @@ static void process_cc608(CCaptionSubContext *ctx, int64_t pts, uint8_t hi, uint
break
;
case
0x2c
:
/* erase display memory */
handle_e
rase
(
ctx
,
pts
,
ctx
->
active_screen
);
handle_e
dm
(
ctx
,
pts
);
break
;
case
0x2d
:
/* carriage return */
...
...
@@ -461,10 +464,6 @@ static void process_cc608(CCaptionSubContext *ctx, int64_t pts, uint8_t hi, uint
roll_up
(
ctx
);
ctx
->
cursor_column
=
0
;
break
;
case
0x2e
:
/* erase non displayed memory */
handle_erase
(
ctx
,
pts
,
!
ctx
->
active_screen
);
break
;
case
0x2f
:
/* end of caption */
ff_dlog
(
ctx
,
"handle_eoc
\n
"
);
...
...
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