]> granicus.if.org Git - libvpx/commitdiff
Clean up TODOs for vpx_img_* functions.
authorJerome Jiang <jianj@google.com>
Fri, 25 Jan 2019 22:04:33 +0000 (14:04 -0800)
committerJerome Jiang <jianj@google.com>
Tue, 29 Jan 2019 20:27:40 +0000 (12:27 -0800)
They should stay in tools_common.{c,h}

Change-Id: I34bd05e8b000ce780bb1f77abcb8cbfd1e83158f

tools_common.c
tools_common.h

index 6f14c2556173271a9908ef5c86ad6038b29f23d5..b1c35e815b0cbdffd8073b936580c8be6bddb14b 100644 (file)
@@ -200,8 +200,6 @@ const VpxInterface *get_vpx_decoder_by_fourcc(uint32_t fourcc) {
 
 #endif  // CONFIG_DECODERS
 
-// TODO(dkovalev): move this function to vpx_image.{c, h}, so it will be part
-// of vpx_image_t support
 int vpx_img_plane_width(const vpx_image_t *img, int plane) {
   if (plane > 0 && img->x_chroma_shift > 0)
     return (img->d_w + 1) >> img->x_chroma_shift;
index 313acd2cfb71073d6f91b75e21a865a16fde9937..bb169351b14a4fa37cee38bcbf1c4709ba4ef654 100644 (file)
@@ -145,8 +145,6 @@ const VpxInterface *get_vpx_decoder_by_index(int i);
 const VpxInterface *get_vpx_decoder_by_name(const char *name);
 const VpxInterface *get_vpx_decoder_by_fourcc(uint32_t fourcc);
 
-// TODO(dkovalev): move this function to vpx_image.{c, h}, so it will be part
-// of vpx_image_t support
 int vpx_img_plane_width(const vpx_image_t *img, int plane);
 int vpx_img_plane_height(const vpx_image_t *img, int plane);
 void vpx_img_write(const vpx_image_t *img, FILE *file);