Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
d4d2e9fe
Commit
d4d2e9fe
authored
Oct 22, 2017
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat: Drop deprecated feof() AVIO fuction
Deprecated in 08/2014.
parent
88e2e31d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
19 deletions
+0
-19
avio.h
libavformat/avio.h
+0
-7
aviobuf.c
libavformat/aviobuf.c
+0
-7
libavformat.v
libavformat/libavformat.v
+0
-2
version.h
libavformat/version.h
+0
-3
No files found.
libavformat/avio.h
View file @
d4d2e9fe
...
...
@@ -569,13 +569,6 @@ int64_t avio_size(AVIOContext *s);
* @return non zero if and only if end of file
*/
int
avio_feof
(
AVIOContext
*
s
);
#if FF_API_URL_FEOF
/**
* @deprecated use avio_feof()
*/
attribute_deprecated
int
url_feof
(
AVIOContext
*
s
);
#endif
/** @warning Writes up to 4 KiB per call */
int
avio_printf
(
AVIOContext
*
s
,
const
char
*
fmt
,
...)
av_printf_format
(
2
,
3
);
...
...
libavformat/aviobuf.c
View file @
d4d2e9fe
...
...
@@ -364,13 +364,6 @@ int avio_feof(AVIOContext *s)
return
s
->
eof_reached
;
}
#if FF_API_URL_FEOF
int
url_feof
(
AVIOContext
*
s
)
{
return
avio_feof
(
s
);
}
#endif
void
avio_wl32
(
AVIOContext
*
s
,
unsigned
int
val
)
{
avio_w8
(
s
,
(
uint8_t
)
val
);
...
...
libavformat/libavformat.v
View file @
d4d2e9fe
...
...
@@ -12,8 +12,6 @@ LIBAVFORMAT_MAJOR {
ffurl_close
;
ffurl_open
;
ffurl_write
;
#
those
are
deprecated
,
remove
on
next
bump
url_feof
;
local:
*;
};
libavformat/version.h
View file @
d4d2e9fe
...
...
@@ -55,9 +55,6 @@
* at once through the bump. This improves the git bisect-ability of the change.
*
*/
#ifndef FF_API_URL_FEOF
#define FF_API_URL_FEOF (LIBAVFORMAT_VERSION_MAJOR < 58)
#endif
#ifndef FF_API_LAVF_FMT_RAWPICTURE
#define FF_API_LAVF_FMT_RAWPICTURE (LIBAVFORMAT_VERSION_MAJOR < 58)
#endif
...
...
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