Lines Matching refs:mux
351 *mux; in ReadSingleWEBPImage() local
359 mux=WebPMuxCreate(&content,0); in ReadSingleWEBPImage()
361 WebPMuxGetFeatures(mux,&webp_flags); in ReadSingleWEBPImage()
364 WebPMuxGetChunk(mux,"ICCP",&chunk); in ReadSingleWEBPImage()
374 WebPMuxGetChunk(mux,"EXIF",&chunk); in ReadSingleWEBPImage()
384 WebPMuxGetChunk(mux,"XMP",&chunk); in ReadSingleWEBPImage()
392 WebPMuxDelete(mux); in ReadSingleWEBPImage()
433 *mux; in ReadAnimatedWEBPImage() local
441 mux=WebPMuxCreate(&data,0); in ReadAnimatedWEBPImage()
442 status=WebPMuxGetAnimationParams(mux,¶ms); in ReadAnimatedWEBPImage()
445 WebPMuxDelete(mux); in ReadAnimatedWEBPImage()
991 *mux; in WriteWEBPImageProfile() local
1009 mux=WebPMuxCreate(webp_data, 1); in WriteWEBPImageProfile()
1012 if (mux == NULL) in WriteWEBPImageProfile()
1021 mux_error=WebPMuxGetAnimationParams(mux, &new_params); in WriteWEBPImageProfile()
1032 mux_error=WebPMuxSetAnimationParams(mux, &new_params); in WriteWEBPImageProfile()
1039 mux_error=WebPMuxSetChunk(mux,"ICCP",&chunk,0); in WriteWEBPImageProfile()
1053 mux_error=WebPMuxSetChunk(mux,"EXIF",&chunk,0); in WriteWEBPImageProfile()
1059 mux_error=WebPMuxSetChunk(mux,"XMP",&chunk,0); in WriteWEBPImageProfile()
1062 mux_error=WebPMuxAssemble(mux,webp_data); in WriteWEBPImageProfile()
1063 WebPMuxDelete(mux); in WriteWEBPImageProfile()