Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
4116b2b1
Commit
4116b2b1
authored
Aug 10, 2017
by
Davinder Singh
Committed by
Michael Niedermayer
Aug 11, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/mjpegenc: cosmetic changes
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
1939b903
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
mjpegenc.c
libavcodec/mjpegenc.c
+3
-5
No files found.
libavcodec/mjpegenc.c
View file @
4116b2b1
...
...
@@ -39,7 +39,6 @@
#include "mjpeg.h"
#include "mjpegenc.h"
static
int
alloc_huffman
(
MpegEncContext
*
s
)
{
MJpegContext
*
m
=
s
->
mjpeg_ctx
;
...
...
@@ -351,7 +350,6 @@ void ff_mjpeg_encode_mb(MpegEncContext *s, int16_t block[12][64])
#define V_MAX 2
static
int
amv_encode_picture
(
AVCodecContext
*
avctx
,
AVPacket
*
pkt
,
const
AVFrame
*
pic_arg
,
int
*
got_packet
)
{
MpegEncContext
*
s
=
avctx
->
priv_data
;
AVFrame
*
pic
;
...
...
@@ -405,7 +403,6 @@ FF_MPV_COMMON_OPTS
};
#if CONFIG_MJPEG_ENCODER
static
const
AVClass
mjpeg_class
=
{
.
class_name
=
"mjpeg encoder"
,
.
item_name
=
av_default_item_name
,
...
...
@@ -423,12 +420,13 @@ AVCodec ff_mjpeg_encoder = {
.
encode2
=
ff_mpv_encode_picture
,
.
close
=
ff_mpv_encode_end
,
.
capabilities
=
AV_CODEC_CAP_SLICE_THREADS
|
AV_CODEC_CAP_FRAME_THREADS
|
AV_CODEC_CAP_INTRA_ONLY
,
.
pix_fmts
=
(
const
enum
AVPixelFormat
[]){
.
pix_fmts
=
(
const
enum
AVPixelFormat
[])
{
AV_PIX_FMT_YUVJ420P
,
AV_PIX_FMT_YUVJ422P
,
AV_PIX_FMT_YUVJ444P
,
AV_PIX_FMT_NONE
},
.
priv_class
=
&
mjpeg_class
,
};
#endif
#if CONFIG_AMV_ENCODER
static
const
AVClass
amv_class
=
{
.
class_name
=
"amv encoder"
,
...
...
@@ -446,7 +444,7 @@ AVCodec ff_amv_encoder = {
.
init
=
ff_mpv_encode_init
,
.
encode2
=
amv_encode_picture
,
.
close
=
ff_mpv_encode_end
,
.
pix_fmts
=
(
const
enum
AVPixelFormat
[]){
.
pix_fmts
=
(
const
enum
AVPixelFormat
[])
{
AV_PIX_FMT_YUVJ420P
,
AV_PIX_FMT_NONE
},
.
priv_class
=
&
amv_class
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment