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
24a83bd1
Commit
24a83bd1
authored
Feb 14, 2011
by
Anssi Hannula
Committed by
Mans Rullgard
Feb 14, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf: add AV_DISPOSITION_CLEAN_EFFECTS flag
Signed-off-by:
Mans Rullgard
<
mans@mansr.com
>
parent
70c275f8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
1 deletion
+4
-1
avformat.h
libavformat/avformat.h
+1
-0
utils.c
libavformat/utils.c
+2
-0
version.h
libavformat/version.h
+1
-1
No files found.
libavformat/avformat.h
View file @
24a83bd1
...
...
@@ -474,6 +474,7 @@ typedef struct AVIndexEntry {
#define AV_DISPOSITION_FORCED 0x0040
#define AV_DISPOSITION_HEARING_IMPAIRED 0x0080
/**< stream for hearing impaired audiences */
#define AV_DISPOSITION_VISUAL_IMPAIRED 0x0100
/**< stream for visual impaired audiences */
#define AV_DISPOSITION_CLEAN_EFFECTS 0x0200
/**< stream without voice */
/**
* Stream structure.
...
...
libavformat/utils.c
View file @
24a83bd1
...
...
@@ -3255,6 +3255,8 @@ static void dump_stream_format(AVFormatContext *ic, int i, int index, int is_out
av_log
(
NULL
,
AV_LOG_INFO
,
" (hearing impaired)"
);
if
(
st
->
disposition
&
AV_DISPOSITION_VISUAL_IMPAIRED
)
av_log
(
NULL
,
AV_LOG_INFO
,
" (visual impaired)"
);
if
(
st
->
disposition
&
AV_DISPOSITION_CLEAN_EFFECTS
)
av_log
(
NULL
,
AV_LOG_INFO
,
" (clean effects)"
);
av_log
(
NULL
,
AV_LOG_INFO
,
"
\n
"
);
dump_metadata
(
NULL
,
st
->
metadata
,
" "
);
}
...
...
libavformat/version.h
View file @
24a83bd1
...
...
@@ -24,7 +24,7 @@
#include "libavutil/avutil.h"
#define LIBAVFORMAT_VERSION_MAJOR 52
#define LIBAVFORMAT_VERSION_MINOR
99
#define LIBAVFORMAT_VERSION_MINOR
100
#define LIBAVFORMAT_VERSION_MICRO 1
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
...
...
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