This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
frmdec: use AV_PIX_FMT_xxx
tags/n1.2
Peter Ross
12 years ago
parent
2516023695
commit
f2dc158b0a
1 changed files
with
5 additions
and
5 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-5
libavformat/frmdec.c
+ 5
- 5
libavformat/frmdec.c
View File
@@ -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 {
Write
Preview
Loading…
Cancel
Save