diff options
author | James Almer <jamrial@gmail.com> | 2017-10-28 23:47:22 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-10-29 00:09:52 -0300 |
commit | ca2b7794234cccd6c4ae548c4bd2eac5c53b80f2 (patch) | |
tree | 36569ce7e11047c0a504c0eeaf25e76aa9e23c9b /libavformat/tests | |
parent | 8b43039fe19cacb8e7e0950ae50851cb91fa34e4 (diff) | |
download | ffmpeg-streaming-ca2b7794234cccd6c4ae548c4bd2eac5c53b80f2.zip ffmpeg-streaming-ca2b7794234cccd6c4ae548c4bd2eac5c53b80f2.tar.gz |
avformat: remove use of deprecated AVFMT_FLAG_KEEP_SIDE_DATA flag
It has no effect whatsoever since the major bump.
Replace the flag's documentation to reflect this as well.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/tests')
-rw-r--r-- | libavformat/tests/seek.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/tests/seek.c b/libavformat/tests/seek.c index 5cf3a12..7ed56ba 100644 --- a/libavformat/tests/seek.c +++ b/libavformat/tests/seek.c @@ -67,8 +67,6 @@ int main(int argc, char **argv) int frame_count = 1; int duration = 4; - ic->flags |= AVFMT_FLAG_KEEP_SIDE_DATA; - for(i=2; i<argc; i+=2){ if (!strcmp(argv[i], "-seekforw")){ seekfirst = atoi(argv[i+1]); |