projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
515e8ae
)
avfilter/vf_telecine: Avoid using non public AV_PIX_FMT_NB
author
Michael Niedermayer
<michaelni@gmx.at>
Tue, 27 May 2014 15:43:03 +0000
(17:43 +0200)
committer
Michael Niedermayer
<michaelni@gmx.at>
Tue, 27 May 2014 15:45:36 +0000
(17:45 +0200)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavfilter/vf_telecine.c
patch
|
blob
|
history
diff --git
a/libavfilter/vf_telecine.c
b/libavfilter/vf_telecine.c
index
811ae27
..
aea63ab
100644
(file)
--- a/
libavfilter/vf_telecine.c
+++ b/
libavfilter/vf_telecine.c
@@
-101,7
+101,7
@@
static int query_formats(AVFilterContext *ctx)
AVFilterFormats *pix_fmts = NULL;
int fmt;
- for (fmt = 0;
fmt < AV_PIX_FMT_NB
; fmt++) {
+ for (fmt = 0;
av_pix_fmt_desc_get(fmt)
; fmt++) {
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(fmt);
if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL ||
desc->flags & AV_PIX_FMT_FLAG_PAL ||