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
cfa3c265
Commit
cfa3c265
authored
8 years ago
by
Matthieu Bouron
Browse files
Options
Downloads
Patches
Plain Diff
lavc/mediacodecdec: rename dequeued_buffer_nb to output_buffer_count
parent
a458ed65
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libavcodec/mediacodecdec.c
+3
-3
3 additions, 3 deletions
libavcodec/mediacodecdec.c
libavcodec/mediacodecdec.h
+1
-1
1 addition, 1 deletion
libavcodec/mediacodecdec.h
with
4 additions
and
4 deletions
libavcodec/mediacodecdec.c
+
3
−
3
View file @
cfa3c265
...
@@ -437,7 +437,7 @@ static int mediacodec_dec_flush_codec(AVCodecContext *avctx, MediaCodecDecContex
...
@@ -437,7 +437,7 @@ static int mediacodec_dec_flush_codec(AVCodecContext *avctx, MediaCodecDecContex
FFAMediaCodec
*
codec
=
s
->
codec
;
FFAMediaCodec
*
codec
=
s
->
codec
;
int
status
;
int
status
;
s
->
dequeued
_buffer_
nb
=
0
;
s
->
output
_buffer_
count
=
0
;
s
->
draining
=
0
;
s
->
draining
=
0
;
s
->
flushing
=
0
;
s
->
flushing
=
0
;
...
@@ -630,7 +630,7 @@ int ff_mediacodec_dec_decode(AVCodecContext *avctx, MediaCodecDecContext *s,
...
@@ -630,7 +630,7 @@ int ff_mediacodec_dec_decode(AVCodecContext *avctx, MediaCodecDecContext *s,
/* If the codec is flushing or need to be flushed, block for a fair
/* If the codec is flushing or need to be flushed, block for a fair
* amount of time to ensure we got a frame */
* amount of time to ensure we got a frame */
output_dequeue_timeout_us
=
OUTPUT_DEQUEUE_BLOCK_TIMEOUT_US
;
output_dequeue_timeout_us
=
OUTPUT_DEQUEUE_BLOCK_TIMEOUT_US
;
}
else
if
(
s
->
dequeued
_buffer_
nb
==
0
)
{
}
else
if
(
s
->
output
_buffer_
count
==
0
)
{
/* If the codec hasn't produced any frames, do not block so we
/* If the codec hasn't produced any frames, do not block so we
* can push data to it as fast as possible, and get the first
* can push data to it as fast as possible, and get the first
* frame */
* frame */
...
@@ -670,7 +670,7 @@ int ff_mediacodec_dec_decode(AVCodecContext *avctx, MediaCodecDecContext *s,
...
@@ -670,7 +670,7 @@ int ff_mediacodec_dec_decode(AVCodecContext *avctx, MediaCodecDecContext *s,
}
}
*
got_frame
=
1
;
*
got_frame
=
1
;
s
->
dequeued
_buffer_
nb
++
;
s
->
output
_buffer_
count
++
;
}
else
{
}
else
{
status
=
ff_AMediaCodec_releaseOutputBuffer
(
codec
,
index
,
0
);
status
=
ff_AMediaCodec_releaseOutputBuffer
(
codec
,
index
,
0
);
if
(
status
<
0
)
{
if
(
status
<
0
)
{
...
...
This diff is collapsed.
Click to expand it.
libavcodec/mediacodecdec.h
+
1
−
1
View file @
cfa3c265
...
@@ -59,7 +59,7 @@ typedef struct MediaCodecDecContext {
...
@@ -59,7 +59,7 @@ typedef struct MediaCodecDecContext {
int
crop_left
;
int
crop_left
;
int
crop_right
;
int
crop_right
;
uint64_t
dequeued
_buffer_
nb
;
uint64_t
output
_buffer_
count
;
}
MediaCodecDecContext
;
}
MediaCodecDecContext
;
...
...
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