mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-22 06:50:12 +01:00
replace remaining PIX_FMT_* flags with AV_PIX_FMT_FLAG_*
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -568,7 +568,7 @@ void avpriv_color_frame(AVFrame *frame, const int c[4])
|
||||
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(frame->format);
|
||||
int p, y, x;
|
||||
|
||||
av_assert0(desc->flags & PIX_FMT_PLANAR);
|
||||
av_assert0(desc->flags & AV_PIX_FMT_FLAG_PLANAR);
|
||||
|
||||
for (p = 0; p<desc->nb_components; p++) {
|
||||
uint8_t *dst = frame->data[p];
|
||||
|
||||
Reference in New Issue
Block a user