Commit f2dc158b authored by Peter Ross's avatar Peter Ross

frmdec: use AV_PIX_FMT_xxx

parent 25160236
......@@ -29,11 +29,11 @@
#include "riff.h"
static const AVCodecTag frm_pix_fmt_tags[] = {
{ PIX_FMT_RGB555, 1 },
{ PIX_FMT_BGR32, 2 },
{ PIX_FMT_RGB24, 3 },
{ PIX_FMT_BGR0, 4 },
{ PIX_FMT_BGR0, 5 },
{ AV_PIX_FMT_RGB555, 1 },
{ AV_PIX_FMT_BGR32, 2 },
{ AV_PIX_FMT_RGB24, 3 },
{ AV_PIX_FMT_BGR0, 4 },
{ AV_PIX_FMT_BGR0, 5 },
};
typedef struct {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment