mirror of
https://github.com/webmproject/libwebp.git
synced 2025-04-03 15:36:50 +02:00
examples/webpmux.c: fix a couple of typos
in the code and help output; the man page is already correct Change-Id: Id07d32cde24447cf61e1a2b3d55ab4a33549adde
This commit is contained in:
parent
66b3ce239e
commit
a30f219016
@ -467,7 +467,7 @@ SET_OPTIONS:
|
|||||||
|
|
||||||
DURATION_OPTIONS:
|
DURATION_OPTIONS:
|
||||||
Set duration of selected frames:
|
Set duration of selected frames:
|
||||||
duration set duration for each frames
|
duration set duration for all frames
|
||||||
duration,frame set duration of a particular frame
|
duration,frame set duration of a particular frame
|
||||||
duration,start,end set duration of frames in the
|
duration,start,end set duration of frames in the
|
||||||
interval [start,end])
|
interval [start,end])
|
||||||
@ -484,7 +484,7 @@ STRIP_OPTIONS:
|
|||||||
|
|
||||||
FRAME_OPTIONS(i):
|
FRAME_OPTIONS(i):
|
||||||
Create animation:
|
Create animation:
|
||||||
file_i +di+[xi+yi[+mi[bi]]]
|
file_i +di[+xi+yi[+mi[bi]]]
|
||||||
where: 'file_i' is the i'th animation frame (WebP format),
|
where: 'file_i' is the i'th animation frame (WebP format),
|
||||||
'di' is the pause duration before next frame,
|
'di' is the pause duration before next frame,
|
||||||
'xi','yi' specify the image offset for this frame,
|
'xi','yi' specify the image offset for this frame,
|
||||||
|
@ -329,7 +329,7 @@ static void PrintHelp(void) {
|
|||||||
printf("\n");
|
printf("\n");
|
||||||
printf("DURATION_OPTIONS:\n");
|
printf("DURATION_OPTIONS:\n");
|
||||||
printf(" Set duration of selected frames:\n");
|
printf(" Set duration of selected frames:\n");
|
||||||
printf(" duration set duration for each frames\n");
|
printf(" duration set duration for all frames\n");
|
||||||
printf(" duration,frame set duration of a particular frame\n");
|
printf(" duration,frame set duration of a particular frame\n");
|
||||||
printf(" duration,start,end set duration of frames in the\n");
|
printf(" duration,start,end set duration of frames in the\n");
|
||||||
printf(" interval [start,end])\n");
|
printf(" interval [start,end])\n");
|
||||||
@ -348,7 +348,7 @@ static void PrintHelp(void) {
|
|||||||
printf("\n");
|
printf("\n");
|
||||||
printf("FRAME_OPTIONS(i):\n");
|
printf("FRAME_OPTIONS(i):\n");
|
||||||
printf(" Create animation:\n");
|
printf(" Create animation:\n");
|
||||||
printf(" file_i +di+[xi+yi[+mi[bi]]]\n");
|
printf(" file_i +di[+xi+yi[+mi[bi]]]\n");
|
||||||
printf(" where: 'file_i' is the i'th animation frame (WebP format),\n");
|
printf(" where: 'file_i' is the i'th animation frame (WebP format),\n");
|
||||||
printf(" 'di' is the pause duration before next frame,\n");
|
printf(" 'di' is the pause duration before next frame,\n");
|
||||||
printf(" 'xi','yi' specify the image offset for this frame,\n");
|
printf(" 'xi','yi' specify the image offset for this frame,\n");
|
||||||
@ -460,7 +460,8 @@ static WebPMux* DuplicateMuxHeader(const WebPMux* const mux) {
|
|||||||
if (err == WEBP_MUX_OK && metadata.size > 0) {
|
if (err == WEBP_MUX_OK && metadata.size > 0) {
|
||||||
err = WebPMuxSetChunk(new_mux, kFourccList[i], &metadata, 1);
|
err = WebPMuxSetChunk(new_mux, kFourccList[i], &metadata, 1);
|
||||||
if (err != WEBP_MUX_OK) {
|
if (err != WEBP_MUX_OK) {
|
||||||
ERROR_GOTO1("Error transferring metadata in DuplicateMux().", End);
|
ERROR_GOTO1("Error transferring metadata in DuplicateMuxHeader().",
|
||||||
|
End);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user