mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
Merge remote-tracking branch 'qatar/master'
* qatar/master: cmdutils: update copyright year to 2013 h264: check SPS entries directly to detect pixel format changes forgotten changelogs for 9_beta2 Conflicts: Changelog cmdutils.c libavcodec/h264.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
1894302a44
@ -54,6 +54,7 @@ version <next>:
|
|||||||
- Sony Wave64 muxer
|
- Sony Wave64 muxer
|
||||||
- adobe and limelight publisher authentication in RTMP
|
- adobe and limelight publisher authentication in RTMP
|
||||||
- data: URI scheme
|
- data: URI scheme
|
||||||
|
- support building on the Plan 9 operating system
|
||||||
|
|
||||||
|
|
||||||
version 1.0:
|
version 1.0:
|
||||||
@ -164,6 +165,7 @@ version 0.11:
|
|||||||
- vorbis parser
|
- vorbis parser
|
||||||
- png parser
|
- png parser
|
||||||
- audio mix filter
|
- audio mix filter
|
||||||
|
- ffv1: support (draft) version 1.3
|
||||||
|
|
||||||
|
|
||||||
version 0.10:
|
version 0.10:
|
||||||
|
@ -2788,7 +2788,6 @@ static int decode_slice_header(H264Context *h, H264Context *h0)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (s->context_initialized &&
|
if (s->context_initialized &&
|
||||||
(
|
(
|
||||||
needs_reinit ||
|
needs_reinit ||
|
||||||
@ -2822,6 +2821,7 @@ static int decode_slice_header(H264Context *h, H264Context *h0)
|
|||||||
"Cannot (re-)initialize context during parallel decoding.\n");
|
"Cannot (re-)initialize context during parallel decoding.\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((ret = get_pixel_format(h)) < 0)
|
if ((ret = get_pixel_format(h)) < 0)
|
||||||
return ret;
|
return ret;
|
||||||
s->avctx->pix_fmt = ret;
|
s->avctx->pix_fmt = ret;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user