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
15ec0450
Commit
15ec0450
authored
Feb 11, 2013
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc: allow decoders to override frame parameters.
parent
3b199d29
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
7 deletions
+14
-7
utils.c
libavcodec/utils.c
+14
-7
No files found.
libavcodec/utils.c
View file @
15ec0450
...
...
@@ -552,18 +552,25 @@ int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
switch
(
avctx
->
codec_type
)
{
case
AVMEDIA_TYPE_VIDEO
:
frame
->
width
=
avctx
->
width
;
frame
->
height
=
avctx
->
height
;
frame
->
format
=
avctx
->
pix_fmt
;
frame
->
sample_aspect_ratio
=
avctx
->
sample_aspect_ratio
;
if
(
!
frame
->
width
)
frame
->
width
=
avctx
->
width
;
if
(
!
frame
->
height
)
frame
->
height
=
avctx
->
height
;
if
(
frame
->
format
<
0
)
frame
->
format
=
avctx
->
pix_fmt
;
if
(
!
frame
->
sample_aspect_ratio
.
num
)
frame
->
sample_aspect_ratio
=
avctx
->
sample_aspect_ratio
;
if
((
ret
=
av_image_check_size
(
avctx
->
width
,
avctx
->
height
,
0
,
avctx
))
<
0
)
return
ret
;
break
;
case
AVMEDIA_TYPE_AUDIO
:
frame
->
sample_rate
=
avctx
->
sample_rate
;
frame
->
format
=
avctx
->
sample_fmt
;
frame
->
channel_layout
=
avctx
->
channel_layout
;
if
(
!
frame
->
sample_rate
)
frame
->
sample_rate
=
avctx
->
sample_rate
;
if
(
frame
->
format
<
0
)
frame
->
format
=
avctx
->
sample_fmt
;
if
(
!
frame
->
channel_layout
)
frame
->
channel_layout
=
avctx
->
channel_layout
;
break
;
default:
return
AVERROR
(
EINVAL
);
}
...
...
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