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
9875fd24
Commit
9875fd24
authored
Apr 07, 2020
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec.h: split AVPacket API into its own header
parent
f1e3e9e2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
720 additions
and
688 deletions
+720
-688
APIchanges
doc/APIchanges
+3
-0
Makefile
libavcodec/Makefile
+1
-0
avcodec.h
libavcodec/avcodec.h
+1
-687
avpacket.c
libavcodec/avpacket.c
+2
-1
packet.h
libavcodec/packet.h
+713
-0
No files found.
doc/APIchanges
View file @
9875fd24
...
...
@@ -15,6 +15,9 @@ libavutil: 2017-10-21
API changes, most recent first:
2020-xx-xx - xxxxxxxxxx - lavc 58.78.100 - avcodec.h packet.h
Move AVPacket-related public API to new header packet.h.
2020-03-29 - xxxxxxxxxx - lavf 58.42.100 - avformat.h
av_read_frame() now guarantees to handle uninitialized input packets
and to return refcounted packets on success.
...
...
libavcodec/Makefile
View file @
9875fd24
...
...
@@ -12,6 +12,7 @@ HEADERS = ac3_parser.h \
dxva2.h
\
jni.h
\
mediacodec.h
\
packet.h
\
qsv.h
\
vaapi.h
\
vdpau.h
\
...
...
libavcodec/avcodec.h
View file @
9875fd24
This diff is collapsed.
Click to expand it.
libavcodec/avpacket.c
View file @
9875fd24
...
...
@@ -26,9 +26,10 @@
#include "libavutil/internal.h"
#include "libavutil/mathematics.h"
#include "libavutil/mem.h"
#include "avcodec.h"
#include "bytestream.h"
#include "internal.h"
#include "packet.h"
void
av_init_packet
(
AVPacket
*
pkt
)
{
...
...
libavcodec/packet.h
0 → 100644
View file @
9875fd24
This diff is collapsed.
Click to expand it.
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