On 26/07/14 18:53, John Stebbins wrote:
> ---
> libavformat/movenc.c | 9 ++++-----
> 1 file changed, 4 insertions(+), 5 deletions(-)
>
> diff --git a/libavformat/movenc.c b/libavformat/movenc.c
> index 4ef63f0..b5431cf 100644
> --- a/libavformat/movenc.c
> +++ b/libavformat/movenc.c
> @@ -2092,13 +2092,12 @@ static int mov_write_udta_tag(AVIOContext *pb,
> MOVMuxContext *mov,
> AVFormatContext *s)
> {
> AVIOContext *pb_buf;
> - int i, ret, size;
> + int ret, size;
> uint8_t *buf;
>
> - for (i = 0; i < s->nb_streams; i++)
> - if (s->flags & AVFMT_FLAG_BITEXACT) {
> - return 0;
> - }
> + if (s->flags & AVFMT_FLAG_BITEXACT) {
> + return 0;
> + }
>
> ret = avio_open_dyn_buf(&pb_buf);
> if (ret < 0)
>
Ok for me.
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel