ffmpeg add-on: fix typo.
This commit is contained in:
@@ -152,7 +152,7 @@ pixfmt_to_string(int pixFormat)
|
|||||||
{
|
{
|
||||||
const char* name = av_get_pix_fmt_name((enum PixelFormat)pixFormat);
|
const char* name = av_get_pix_fmt_name((enum PixelFormat)pixFormat);
|
||||||
if (name == NULL)
|
if (name == NULL)
|
||||||
return "(unknownn)";
|
return "(unknown)";
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -167,7 +167,7 @@ pixfmt_to_colorspace(int pixFormat)
|
|||||||
// Supposed to fall through.
|
// Supposed to fall through.
|
||||||
case PIX_FMT_NONE:
|
case PIX_FMT_NONE:
|
||||||
return B_NO_COLOR_SPACE;
|
return B_NO_COLOR_SPACE;
|
||||||
|
|
||||||
// NOTE: See pixfmt_to_colorspace() for what these are.
|
// NOTE: See pixfmt_to_colorspace() for what these are.
|
||||||
case PIX_FMT_YUV420P:
|
case PIX_FMT_YUV420P:
|
||||||
return B_YUV420;
|
return B_YUV420;
|
||||||
|
|||||||
Reference in New Issue
Block a user