]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/dxa.c
aac: Mention abbreviation as well in long_name
[ffmpeg] / libavcodec / dxa.c
index d196f4948633b0afe71aa5b199d2fa6974eb00de..2684179981a753a9af353a0f38ed2c30b41af22e 100644 (file)
@@ -36,7 +36,6 @@
  * Decoder context
  */
 typedef struct DxaDecContext {
-    AVCodecContext *avctx;
     AVFrame pic, prev;
 
     int dsize;
@@ -292,7 +291,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
 {
     DxaDecContext * const c = avctx->priv_data;
 
-    c->avctx = avctx;
     avctx->pix_fmt = PIX_FMT_PAL8;
 
     c->dsize = avctx->width * avctx->height * 2;
@@ -326,5 +324,5 @@ AVCodec ff_dxa_decoder = {
     .close          = decode_end,
     .decode         = decode_frame,
     .capabilities   = CODEC_CAP_DR1,
-    .long_name = NULL_IF_CONFIG_SMALL("Feeble Files/ScummVM DXA"),
+    .long_name      = NULL_IF_CONFIG_SMALL("Feeble Files/ScummVM DXA"),
 };