This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Replace remaining obsolete PIX_FMT names with AV_PIX_FMT equivalents
tags/n2.1
Diego Biurrun
12 years ago
parent
1f57d60129
commit
78b4bfdb84
3 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/escape130.c
+1
-1
libavcodec/g2meet.c
+1
-1
libavutil/pixdesc.c
+ 1
- 1
libavcodec/escape130.c
View File
@@ -115,7 +115,7 @@ const uint8_t chroma_vals[] = {
static av_cold int escape130_decode_init(AVCodecContext *avctx)
{
Escape130Context *s = avctx->priv_data;
avctx->pix_fmt = PIX_FMT_YUV420P;
avctx->pix_fmt =
AV_
PIX_FMT_YUV420P;
if ((avctx->width & 1) || (avctx->height & 1)) {
av_log(avctx, AV_LOG_ERROR,
+ 1
- 1
libavcodec/g2meet.c
View File
@@ -835,7 +835,7 @@ static av_cold int g2m_decode_init(AVCodecContext *avctx)
return AVERROR(ENOMEM);
}
avctx->pix_fmt
= PIX_FMT_RGB24;
avctx->pix_fmt =
AV_
PIX_FMT_RGB24;
return 0;
}
+ 1
- 1
libavutil/pixdesc.c
View File
@@ -231,7 +231,7 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[AV_PIX_FMT_NB] = {
.comp = {
{ 0, 0, 1, 0, 7 }, /* Y */
},
.flags = PIX_FMT_PSEUDOPAL,
.flags =
AV_
PIX_FMT
_FLAG
_PSEUDOPAL,
},
[AV_PIX_FMT_MONOWHITE] = {
.name = "monow",
Write
Preview
Loading…
Cancel
Save