diff options
author | ThomasVolkert <thomas@homer-conferencing.com> | 2014-08-23 21:25:39 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-24 03:53:30 +0200 |
commit | 50a4d5cfc6749932347ee38c25b5040aea4b13a0 (patch) | |
tree | 756eeced890ba58c8c5a84532ea40aa2f033b488 /libavcodec | |
parent | ab1e4312887d8e560d027803871b55b883910714 (diff) | |
download | ffmpeg-50a4d5cfc6749932347ee38c25b5040aea4b13a0.tar.gz |
Add support for H.261 RTP payload format (RFC 4587)
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/mpegvideo_enc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c index f5427df0c9..f0ae8c3dcb 100644 --- a/libavcodec/mpegvideo_enc.c +++ b/libavcodec/mpegvideo_enc.c @@ -2800,6 +2800,9 @@ static int encode_thread(AVCodecContext *c, void *arg){ if(s->start_mb_y == mb_y && mb_y > 0 && mb_x==0) is_gob_start=1; switch(s->codec_id){ + case AV_CODEC_ID_H261: + is_gob_start=0;//FIXME + break; case AV_CODEC_ID_H263: case AV_CODEC_ID_H263P: if(!s->h263_slice_structured) |