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
7a5eb40e
Commit
7a5eb40e
authored
Dec 03, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
audeo_get_buffer: fix pkt_pos
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
acf22ec6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
utils.c
libavcodec/utils.c
+8
-2
No files found.
libavcodec/utils.c
View file @
7a5eb40e
...
@@ -349,8 +349,14 @@ static int audio_get_buffer(AVCodecContext *avctx, AVFrame *frame)
...
@@ -349,8 +349,14 @@ static int audio_get_buffer(AVCodecContext *avctx, AVFrame *frame)
frame
->
linesize
[
0
]
=
buf
->
linesize
[
0
];
frame
->
linesize
[
0
]
=
buf
->
linesize
[
0
];
memcpy
(
frame
->
data
,
buf
->
data
,
sizeof
(
frame
->
data
));
memcpy
(
frame
->
data
,
buf
->
data
,
sizeof
(
frame
->
data
));
if
(
avctx
->
pkt
)
frame
->
pkt_pts
=
avctx
->
pkt
->
pts
;
if
(
avctx
->
pkt
)
{
else
frame
->
pkt_pts
=
AV_NOPTS_VALUE
;
frame
->
pkt_pts
=
avctx
->
pkt
->
pts
;
frame
->
pkt_pos
=
avctx
->
pkt
->
pos
;
}
else
{
frame
->
pkt_pts
=
AV_NOPTS_VALUE
;
frame
->
pkt_pos
=
-
1
;
}
frame
->
reordered_opaque
=
avctx
->
reordered_opaque
;
frame
->
reordered_opaque
=
avctx
->
reordered_opaque
;
if
(
avctx
->
debug
&
FF_DEBUG_BUFFERS
)
if
(
avctx
->
debug
&
FF_DEBUG_BUFFERS
)
...
...
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