Olivier Maignial
c29d81e736
avformat/rtpdec_mpeg4: Fix integer parameters size check in SDP fmtp line
...
=== PROBLEM ===
I was trying to record h264 + aac streams from an RTSP server to mp4 file. using this command line:
ffmpeg -v verbose -y -i "rtsp://<ip>/my_resources" -codec copy -bsf:a aac_adtstoasc test.mp4
FFmpeg then fail to record audio and output this logs:
[rtsp @ 0xcda1f0] The profile-level-id field size is invalid (40)
[rtsp @ 0xcda1f0] Error parsing AU headers
...
[rtsp @ 0xcda1f0] Could not find codec parameters for stream 1 (Audio: aac, 48000 Hz, 1 channels): unspecified sample format
In SDP provided by my RTSP server I had this fmtp line:
a=fmtp:98 streamType=5; profile-level-id=40; mode=AAC-hbr; config=1188; sizeLength=13; indexLength=3; indexDeltaLength=3;
In FFmpeg code, I found a check introduced by commit 24130234cd9dd733116d17b724ea4c8e12ce097a. It disallows values greater than 32 for fmtp line parameters.
RFC-4566 (SDP: Session Description Protocol) do not give any limit of size on interger parameters given in an fmtp line.
However, In RFC-6416 (RTP Payload Format for MPEG-4 Audio/Visual Streams) give examples of "profile-level-id" values for AAC, up to 55.
=== FIX ===
As each parameter may have its own min and max values
I propose to introduce a range for each parameter.
For this patch I used RFC-3640 and ISO/IEC 14496-1 as reference for validity ranges.
This patch fix my problem and I now can record my RTSP AAC stream to mp4.
It has passed the full fate tests suite sucessfully.
Signed-off-by: Olivier Maignial <olivier.maignial@smile.fr>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2019-08-10 00:01:02 +02:00
..
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-07-20 21:47:55 -03:00
2019-04-24 17:05:02 +02:00
2019-07-17 23:18:50 +02:00
2019-07-17 23:18:50 +02:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-06-21 22:02:14 +10:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-04-19 13:22:54 -03:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-01-30 23:15:28 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-02-04 21:43:30 +01:00
2019-03-21 11:42:17 +01:00
2019-08-03 12:33:14 -03:00
2019-08-03 12:33:14 -03:00
2019-05-20 11:58:12 -07:00
2019-05-20 11:58:12 -07:00
2019-07-13 14:07:59 -03:00
2019-05-10 10:57:54 +02:00
2018-12-22 18:48:16 +01:00
2019-07-21 10:05:40 +08:00
2019-05-04 12:03:24 +05:30
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-05-25 00:21:26 +05:30
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-07-10 17:26:33 +08:00
2019-08-03 12:33:15 -03:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-07-17 23:18:50 +02:00
2019-03-21 11:42:17 +01:00
2019-07-03 10:35:16 +08:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-20 18:38:48 +01:00
2019-04-11 21:18:51 +02:00
2019-03-21 11:42:17 +01:00
2019-07-17 23:18:50 +02:00
2018-12-18 19:45:59 +01:00
2019-03-21 11:42:17 +01:00
2019-04-06 15:54:38 +02:00
2019-06-25 10:45:47 +08:00
2019-03-20 19:04:49 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-02-17 10:29:42 +01:00
2019-07-17 23:18:50 +02:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-05-29 10:57:18 +02:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-04-03 10:17:22 +08:00
2019-03-21 11:42:17 +01:00
2019-03-20 18:38:48 +01:00
2019-05-20 11:58:12 -07:00
2019-03-21 11:42:17 +01:00
2019-08-08 17:53:32 +08:00
2019-07-29 19:48:06 +08:00
2019-06-14 10:53:23 +08:00
2019-06-14 10:53:23 +08:00
2019-01-23 23:17:03 +01:00
2019-03-21 11:42:17 +01:00
2019-07-11 09:35:31 +08:00
2019-03-31 23:23:52 +02:00
2019-06-21 18:28:00 +02:00
2019-06-13 23:12:51 +02:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-07-19 01:23:23 +02:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-05-30 19:27:05 +02:00
2019-06-25 13:30:09 +02:00
2019-01-22 10:59:10 -09:00
2019-03-21 11:42:17 +01:00
2019-07-21 10:05:40 +08:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-07-11 16:53:09 +02:00
2019-02-08 12:00:59 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-06-21 18:28:00 +02:00
2019-03-21 11:42:17 +01:00
2019-03-27 14:54:05 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-02-20 15:50:06 -03:00
2019-03-21 11:42:17 +01:00
2019-07-17 23:18:50 +02:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-06-21 22:02:14 +10:00
2019-07-18 22:26:00 +02:00
2019-05-08 13:02:30 -03:00
2019-03-21 11:42:17 +01:00
2019-04-27 12:57:18 +02:00
2019-03-21 11:42:17 +01:00
2019-07-17 23:18:50 +02:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-07-22 22:38:09 +05:30
2019-07-12 20:26:38 +02:00
2019-03-21 11:42:17 +01:00
2019-05-27 19:01:38 +02:00
2019-03-21 11:42:17 +01:00
2019-07-31 20:35:07 +02:00
2019-03-21 11:42:17 +01:00
2019-04-22 21:25:55 +05:30
2019-07-12 20:32:22 +02:00
2019-03-01 22:30:13 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-07-20 15:41:28 +05:30
2019-03-21 11:42:17 +01:00
2019-05-20 11:58:12 -07:00
2019-04-28 21:55:28 +02:00
2019-07-22 13:17:42 -07:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-06-10 21:35:20 +02:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2018-12-18 19:45:59 +01:00
2019-06-25 14:09:40 -03:00
2019-04-22 23:24:42 +08:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-07-17 23:18:50 +02:00
2019-07-17 23:18:50 +02:00
2019-08-05 17:54:24 +02:00
2019-03-21 11:42:17 +01:00
2019-07-11 16:53:09 +02:00
2019-04-07 21:09:56 +02:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-07-10 12:54:57 +02:00
2019-03-21 11:42:17 +01:00
2019-03-20 18:38:48 +01:00
2019-03-20 18:52:38 +01:00
2019-08-10 00:01:02 +02:00
2019-08-06 10:37:41 +02:00
2019-03-13 12:54:30 +01:00
2019-03-20 18:38:48 +01:00
2019-03-20 18:38:48 +01:00
2019-01-16 00:09:21 +01:00
2019-05-02 13:02:58 -03:00
2019-05-02 13:02:58 -03:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-07-17 23:18:50 +02:00
2019-06-14 21:36:39 +02:00
2019-06-27 20:20:16 +02:00
2019-03-20 17:19:14 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-06-20 18:03:30 +05:30
2019-03-21 11:42:17 +01:00
2019-07-17 23:18:50 +02:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-20 18:38:48 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-20 17:36:29 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-07-01 12:12:04 +02:00
2019-04-27 12:49:56 +02:00
2019-04-27 12:49:56 +02:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-01-24 13:08:27 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-07-17 23:18:50 +02:00
2019-03-21 11:42:17 +01:00
2019-01-30 19:32:34 +01:00
2019-03-21 11:42:17 +01:00
2019-06-21 18:28:00 +02:00
2019-06-14 21:19:41 +03:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-07-19 21:42:38 +02:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-04-19 14:06:29 +02:00
2019-03-21 11:42:17 +01:00
2019-07-21 18:36:31 +02:00
2019-08-05 17:54:24 +02:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2018-12-18 19:45:59 +01:00
2018-12-18 19:45:59 +01:00
2019-06-14 21:36:39 +02:00
2019-03-21 11:42:17 +01:00
2019-06-29 19:22:19 +02:00
2019-07-26 11:57:06 +01:00
2019-03-21 11:42:17 +01:00
2019-07-12 14:59:58 +02:00
2019-02-17 10:29:42 +01:00
2019-06-14 13:18:32 +08:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-07-17 23:18:50 +02:00
2019-06-14 21:36:39 +02:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-07-14 22:17:43 +02:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00
2019-03-21 11:42:17 +01:00