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
Use av_pix_fmt_descriptors information in avcodec_pix_fmt_string().
Originally committed as revision 25688 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Stefano Sabatini
14 years ago
parent
f35a41ff5d
commit
a5f27f6db8
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/imgconvert.c
+ 1
- 1
libavcodec/imgconvert.c
View File
@@ -446,7 +446,7 @@ void avcodec_pix_fmt_string (char *buf, int buf_size, enum PixelFormat pix_fmt)
"%-11s %5d %9d",
av_pix_fmt_descriptors[pix_fmt].name,
info.nb_channels,
info.depth
av_get_bits_per_pixel(&av_pix_fmt_descriptors[pix_fmt])
);
}
}
Write
Preview
Loading…
Cancel
Save