]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/wnv1.c
alac: cosmetics: general pretty-printing and comment clean up
[ffmpeg] / libavcodec / wnv1.c
index f6e4694df20af6f6a32c64e6213d9aa258af2d73..b57c215e8ec860f321c504695375f49e52f29470 100644 (file)
@@ -64,7 +64,7 @@ static int decode_frame(AVCodecContext *avctx,
     const uint8_t *buf = avpkt->data;
     int buf_size = avpkt->size;
     WNV1Context * const l = avctx->priv_data;
-    AVFrame * const p= (AVFrame*)&l->pic;
+    AVFrame * const p = &l->pic;
     unsigned char *Y,*U,*V;
     int i, j;
     int prev_y = 0, prev_u = 0, prev_v = 0;
@@ -165,5 +165,5 @@ AVCodec ff_wnv1_decoder = {
     .close          = decode_end,
     .decode         = decode_frame,
     .capabilities   = CODEC_CAP_DR1,
-    .long_name = NULL_IF_CONFIG_SMALL("Winnov WNV1"),
+    .long_name      = NULL_IF_CONFIG_SMALL("Winnov WNV1"),
 };