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
Add 16cif video frame size abbreviation. i.e. -s alias for 1408x1152.
Originally committed as revision 18301 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Gwenole Beauchesne
16 years ago
parent
828775e160
commit
41913a35b0
2 changed files
with
3 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-0
doc/ffmpeg-doc.texi
+1
-0
libavcodec/utils.c
+ 2
- 0
doc/ffmpeg-doc.texi
View File
@@ -360,6 +360,8 @@ The following abbreviations are recognized:
352x288
352x288
@item 4cif
@item 4cif
704x576
704x576
@item 16cif
1408x1152
@item qqvga
@item qqvga
160x120
160x120
@item qvga
@item qvga
+ 1
- 0
libavcodec/utils.c
View File
@@ -1009,6 +1009,7 @@ static const VideoFrameSizeAbbr video_frame_size_abbrs[] = {
{ "qcif", 176, 144 },
{ "qcif", 176, 144 },
{ "cif", 352, 288 },
{ "cif", 352, 288 },
{ "4cif", 704, 576 },
{ "4cif", 704, 576 },
{ "16cif", 1408,1152 },
{ "qqvga", 160, 120 },
{ "qqvga", 160, 120 },
{ "qvga", 320, 240 },
{ "qvga", 320, 240 },
{ "vga", 640, 480 },
{ "vga", 640, 480 },
Write
Preview
Loading…
Cancel
Save